Lines Matching refs:l2
35 # define c2ln(c,l1,l2,n) { \ argument
37 l1=l2=0; \
39 case 8: l2 =((DES_LONG)(*(--(c))))<<24L; \
41 case 7: l2|=((DES_LONG)(*(--(c))))<<16L; \
43 case 6: l2|=((DES_LONG)(*(--(c))))<< 8L; \
45 case 5: l2|=((DES_LONG)(*(--(c)))); \
63 # define l2cn(l1,l2,c,n) { \ argument
66 case 8: *(--(c))=(unsigned char)(((l2)>>24L)&0xff); \
68 case 7: *(--(c))=(unsigned char)(((l2)>>16L)&0xff); \
70 case 6: *(--(c))=(unsigned char)(((l2)>> 8L)&0xff); \
72 case 5: *(--(c))=(unsigned char)(((l2) )&0xff); \