/external/qemu/ |
d3des.c | 102 static void cookey(register unsigned long *raw1) 109 for( i = 0; i < 16; i++, raw1++ ) { 110 raw0 = raw1++; 113 *cook |= (*raw1 & 0x00fc0000L) >> 10; 114 *cook++ |= (*raw1 & 0x00000fc0L) >> 6; 117 *cook |= (*raw1 & 0x0003f000L) >> 4; 118 *cook++ |= (*raw1 & 0x0000003fL);
|
/external/wpa_supplicant_8/src/crypto/ |
des-internal.c | 249 static void cookey(const u32 *raw1, u32 *keyout) 257 for (i = 0; i < 16; i++, raw1++) { 258 raw0 = raw1++; 261 *cook |= (*raw1 & 0x00fc0000L) >> 10; 262 *cook++ |= (*raw1 & 0x00000fc0L) >> 6; 265 *cook |= (*raw1 & 0x0003f000L) >> 4; 266 *cook++ |= (*raw1 & 0x0000003fL);
|
/external/chromium_org/third_party/icu/source/i18n/ |
basictz.cpp | 46 int32_t raw1, raw2, dst1, dst2; local 47 getOffset(start, FALSE, raw1, dst1, status); 56 if ((raw1 + dst1 != raw2 + dst2) 62 if (raw1 != raw2 || dst1 != dst2) {
|
/external/elfutils/src/ |
elfcmp.c | 420 char *raw1 = NULL; local 427 raw1 = elf_rawfile (elf1, &size1); 428 if (raw1 == NULL ) 485 if (unlikely (memcmp (raw1 + last, raw2 + last,
|
/external/icu4c/i18n/ |
basictz.cpp | 46 int32_t raw1, raw2, dst1, dst2; local 47 getOffset(start, FALSE, raw1, dst1, status); 56 if ((raw1 + dst1 != raw2 + dst2) 62 if (raw1 != raw2 || dst1 != dst2) {
|
tzgnames.cpp | 733 int32_t raw1, sav1; local 739 goldenZone->getOffset(date + raw + sav, TRUE, raw1, sav1, status); 742 if (raw != raw1 || sav != sav1) { [all...] |
/external/chromium_org/third_party/icu/source/test/intltest/ |
tzrulets.cpp | 827 int32_t raw1, raw2, dst1, dst2; local 828 tz->getOffset(startTime, FALSE, raw1, dst1, status); 833 if (raw1 + dst1 != raw2 + dst2) { 917 int32_t raw1, raw2, dst1, dst2; local 1010 int32_t raw1, dst1; local 1182 int32_t raw0, dst0, raw1, dst1; local 2535 int32_t raw1, raw2, dst1, dst2; local [all...] |
/external/icu4c/test/intltest/ |
tzrulets.cpp | 828 int32_t raw1, raw2, dst1, dst2; local 829 tz->getOffset(startTime, FALSE, raw1, dst1, status); 834 if (raw1 + dst1 != raw2 + dst2) { 918 int32_t raw1, raw2, dst1, dst2; local 1011 int32_t raw1, dst1; local 1183 int32_t raw0, dst0, raw1, dst1; local 2536 int32_t raw1, raw2, dst1, dst2; local [all...] |
/external/dropbear/libtomcrypt/src/ciphers/ |
des.c | [all...] |