Searched refs:raw1 (Results 1 – 5 of 5) sorted by relevance
/external/qemu/ |
D | d3des.c | 102 static void cookey(register unsigned long *raw1) in cookey() argument 109 for( i = 0; i < 16; i++, raw1++ ) { in cookey() 110 raw0 = raw1++; in cookey() 113 *cook |= (*raw1 & 0x00fc0000L) >> 10; in cookey() 114 *cook++ |= (*raw1 & 0x00000fc0L) >> 6; in cookey() 117 *cook |= (*raw1 & 0x0003f000L) >> 4; in cookey() 118 *cook++ |= (*raw1 & 0x0000003fL); in cookey()
|
/external/wpa_supplicant/ |
D | des.c | 257 static void cookey(const u32 *raw1, u32 *keyout) in cookey() argument 265 for (i = 0; i < 16; i++, raw1++) { in cookey() 266 raw0 = raw1++; in cookey() 269 *cook |= (*raw1 & 0x00fc0000L) >> 10; in cookey() 270 *cook++ |= (*raw1 & 0x00000fc0L) >> 6; in cookey() 273 *cook |= (*raw1 & 0x0003f000L) >> 4; in cookey() 274 *cook++ |= (*raw1 & 0x0000003fL); in cookey()
|
/external/icu4c/test/intltest/ |
D | tzrulets.cpp | 807 int32_t raw1, raw2, dst1, dst2; in TestVTimeZoneRoundTrip() local 808 tz->getOffset(startTime, FALSE, raw1, dst1, status); in TestVTimeZoneRoundTrip() 813 if (raw1 + dst1 != raw2 + dst2) { in TestVTimeZoneRoundTrip() 890 int32_t raw1, raw2, dst1, dst2; in TestVTimeZoneRoundTripPartial() local 891 tz->getOffset(startTime, FALSE, raw1, dst1, status); in TestVTimeZoneRoundTripPartial() 896 if (raw1 + dst1 != raw2 + dst2) { in TestVTimeZoneRoundTripPartial() 975 int32_t raw1, dst1; in TestVTimeZoneSimpleWrite() local 977 vtz_new->getOffset(time, FALSE, raw1, dst1, status); in TestVTimeZoneSimpleWrite() 979 if (raw0 != raw1 || dst0 != dst1) { in TestVTimeZoneSimpleWrite() 1147 int32_t raw0, dst0, raw1, dst1; in TestGetSimpleRules() local [all …]
|
/external/icu4c/i18n/ |
D | basictz.cpp | 46 int32_t raw1, raw2, dst1, dst2; in hasEquivalentTransitions() local 47 getOffset(start, FALSE, raw1, dst1, status); in hasEquivalentTransitions() 56 if ((raw1 + dst1 != raw2 + dst2) in hasEquivalentTransitions() 62 if (raw1 != raw2 || dst1 != dst2) { in hasEquivalentTransitions()
|
/external/dropbear/libtomcrypt/src/ciphers/ |
D | des.c | 1303 static void cookey(const ulong32 *raw1, ulong32 *keyout); 1366 static void _cookey(const ulong32 *raw1, ulong32 *keyout) in _cookey() argument 1368 static void cookey(const ulong32 *raw1, ulong32 *keyout) in _cookey() 1377 for(i=0; i < 16; i++, raw1++) in _cookey() 1379 raw0 = raw1++; in _cookey() 1382 *cook |= (*raw1 & 0x00fc0000L) >> 10; in _cookey() 1383 *cook++ |= (*raw1 & 0x00000fc0L) >> 6; in _cookey() 1386 *cook |= (*raw1 & 0x0003f000L) >> 4; in _cookey() 1387 *cook++ |= (*raw1 & 0x0000003fL); in _cookey() 1394 static void cookey(const ulong32 *raw1, ulong32 *keyout) in cookey() argument [all …]
|