/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_6/wpa_supplicant/src/crypto/ |
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/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/wpa_supplicant_8/src/crypto/ |
D | des-internal.c | 255 static void cookey(const u32 *raw1, u32 *keyout) in cookey() argument 263 for (i = 0; i < 16; i++, raw1++) { in cookey() 264 raw0 = raw1++; in cookey() 267 *cook |= (*raw1 & 0x00fc0000L) >> 10; in cookey() 268 *cook++ |= (*raw1 & 0x00000fc0L) >> 6; in cookey() 271 *cook |= (*raw1 & 0x0003f000L) >> 4; in cookey() 272 *cook++ |= (*raw1 & 0x0000003fL); in cookey()
|
/external/icu4c/test/intltest/ |
D | tzrulets.cpp | 827 int32_t raw1, raw2, dst1, dst2; in TestVTimeZoneRoundTrip() local 828 tz->getOffset(startTime, FALSE, raw1, dst1, status); in TestVTimeZoneRoundTrip() 833 if (raw1 + dst1 != raw2 + dst2) { in TestVTimeZoneRoundTrip() 917 int32_t raw1, raw2, dst1, dst2; in TestVTimeZoneRoundTripPartial() local 918 tz->getOffset(startTime, FALSE, raw1, dst1, status); in TestVTimeZoneRoundTripPartial() 923 if (raw1 + dst1 != raw2 + dst2) { in TestVTimeZoneRoundTripPartial() 1010 int32_t raw1, dst1; in TestVTimeZoneSimpleWrite() local 1012 vtz_new->getOffset(time, FALSE, raw1, dst1, status); in TestVTimeZoneSimpleWrite() 1014 if (raw0 != raw1 || dst0 != dst1) { in TestVTimeZoneSimpleWrite() 1182 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 …]
|
/external/clang/test/Analysis/ |
D | misc-ps.m | 565 void pr4781(unsigned long *raw1) { 570 for( i = 0; i < 16; i++, raw1++ ) { 571 raw0 = raw1++;
|