Searched refs:raw1 (Results 1 - 6 of 6) sorted by relevance

/external/qemu/
H A Dd3des.c102 static void cookey(register unsigned long *raw1) argument
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/
H A Ddes.c257 static void cookey(const u32 *raw1, u32 *keyout) argument
265 for (i = 0; i < 16; i++, raw1++) {
266 raw0 = raw1++;
269 *cook |= (*raw1 & 0x00fc0000L) >> 10;
270 *cook++ |= (*raw1 & 0x00000fc0L) >> 6;
273 *cook |= (*raw1 & 0x0003f000L) >> 4;
274 *cook++ |= (*raw1 & 0x0000003fL);
/external/wpa_supplicant_6/wpa_supplicant/src/crypto/
H A Ddes.c257 static void cookey(const u32 *raw1, u32 *keyout) argument
265 for (i = 0; i < 16; i++, raw1++) {
266 raw0 = raw1++;
269 *cook |= (*raw1 & 0x00fc0000L) >> 10;
270 *cook++ |= (*raw1 & 0x00000fc0L) >> 6;
273 *cook |= (*raw1 & 0x0003f000L) >> 4;
274 *cook++ |= (*raw1 & 0x0000003fL);
/external/icu4c/i18n/
H A Dbasictz.cpp46 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/icu4c/test/intltest/
H A Dtzrulets.cpp817 int32_t raw1, raw2, dst1, dst2; local
818 tz->getOffset(startTime, FALSE, raw1, dst1, status);
823 if (raw1 + dst1 != raw2 + dst2) {
906 int32_t raw1, raw2, dst1, dst2; local
907 tz->getOffset(startTime, FALSE, raw1, dst1, status);
912 if (raw1 + dst1 != raw2 + dst2) {
991 int32_t raw1, dst1; local
993 vtz_new->getOffset(time, FALSE, raw1, dst1, status);
995 if (raw0 != raw1 || dst0 != dst1) {
1163 int32_t raw0, dst0, raw1, dst local
[all...]
/external/dropbear/libtomcrypt/src/ciphers/
H A Ddes.c1303 static void cookey(const ulong32 *raw1, ulong32 *keyout);
1366 static void _cookey(const ulong32 *raw1, ulong32 *keyout) argument
1368 static void cookey(const ulong32 *raw1, ulong32 *keyout)
1377 for(i=0; i < 16; i++, raw1++)
1379 raw0 = raw1++;
1382 *cook |= (*raw1 & 0x00fc0000L) >> 10;
1383 *cook++ |= (*raw1 & 0x00000fc0L) >> 6;
1386 *cook |= (*raw1 & 0x0003f000L) >> 4;
1387 *cook++ |= (*raw1 & 0x0000003fL);
1394 static void cookey(const ulong32 *raw1, ulong3 argument
[all...]

Completed in 88 milliseconds