Lines Matching refs:c

36 #define RTL_CIPHER_NTOHL(c, l) \  argument
37 ((l) = ((sal_uInt32)(*((c)++))) << 24L, \
38 (l) |= ((sal_uInt32)(*((c)++))) << 16L, \
39 (l) |= ((sal_uInt32)(*((c)++))) << 8L, \
40 (l) |= ((sal_uInt32)(*((c)++))))
42 #define RTL_CIPHER_HTONL(l, c) \ argument
43 (*((c)++) = (sal_uInt8)(((l) >> 24L) & 0xff), \
44 *((c)++) = (sal_uInt8)(((l) >> 16L) & 0xff), \
45 *((c)++) = (sal_uInt8)(((l) >> 8L) & 0xff), \
46 *((c)++) = (sal_uInt8)(((l) ) & 0xff))
48 #define RTL_CIPHER_NTOHL64(c, xl, xr, n) \ argument
51 (c) += (n); \
54 case 8: (xr) = ((sal_uInt32)(*(--(c)))); \
55 case 7: (xr) |= ((sal_uInt32)(*(--(c)))) << 8L; \
56 case 6: (xr) |= ((sal_uInt32)(*(--(c)))) << 16L; \
57 case 5: (xr) |= ((sal_uInt32)(*(--(c)))) << 24L; \
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
67 (c) += (n); \
70 case 8: *(--(c)) = (sal_uInt8)(((xr) ) & 0xff); \
71 case 7: *(--(c)) = (sal_uInt8)(((xr) >> 8L) & 0xff); \
72 case 6: *(--(c)) = (sal_uInt8)(((xr) >> 16L) & 0xff); \
73 case 5: *(--(c)) = (sal_uInt8)(((xr) >> 24L) & 0xff); \
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); \
901 sal_uInt8 c = iv[k]; in __rtl_cipherBF_updateCFB() local
903 *pBuffer = *pData ^ c; in __rtl_cipherBF_updateCFB()
904 c = 0; in __rtl_cipherBF_updateCFB()
986 sal_uInt16 a, b, c, d; in __rtl_cipherBF() local
991 c = (sal_uInt16)(x & 0x00ff); in __rtl_cipherBF()
999 y ^= key->m_S[2][c]; in __rtl_cipherBF()