Lines Matching refs:xl
48 #define RTL_CIPHER_NTOHL64(c, xl, xr, n) \ argument
50 (xl) = (xr) = 0; \
58 case 4: (xl) = ((sal_uInt32)(*(--(c)))); \
59 case 3: (xl) |= ((sal_uInt32)(*(--(c)))) << 8L; \
60 case 2: (xl) |= ((sal_uInt32)(*(--(c)))) << 16L; \
61 case 1: (xl) |= ((sal_uInt32)(*(--(c)))) << 24L; \
65 #define RTL_CIPHER_HTONL64(xl, xr, c, n) \ argument
74 case 4: *(--(c)) = (sal_uInt8)(((xl) ) & 0xff); \
75 case 3: *(--(c)) = (sal_uInt8)(((xl) >> 8L) & 0xff); \
76 case 2: *(--(c)) = (sal_uInt8)(((xl) >> 16L) & 0xff); \
77 case 1: *(--(c)) = (sal_uInt8)(((xl) >> 24L) & 0xff); \
276 CipherKeyBF *key, sal_uInt32 *xl, sal_uInt32 *xr);
281 CipherKeyBF *key, sal_uInt32 *xl, sal_uInt32 *xr);
915 CipherKeyBF *key, sal_uInt32 *xl, sal_uInt32 *xr) in __rtl_cipherBF_encode() argument
920 XL = *xl; in __rtl_cipherBF_encode()
940 *xl = XL; in __rtl_cipherBF_encode()
950 CipherKeyBF *key, sal_uInt32 *xl, sal_uInt32 *xr) in __rtl_cipherBF_decode() argument
955 XL = *xl; in __rtl_cipherBF_decode()
975 *xl = XL; in __rtl_cipherBF_decode()