Home
last modified time | relevance | path

Searched refs:raw0 (Results 1 – 5 of 5) sorted by relevance

/external/libvncserver/common/
Dd3des.c112 register unsigned long *cook, *raw0; in cookey() local
118 raw0 = raw1++; in cookey()
119 *cook = (*raw0 & 0x00fc0000L) << 6; in cookey()
120 *cook |= (*raw0 & 0x00000fc0L) << 10; in cookey()
123 *cook = (*raw0 & 0x0003f000L) << 12; in cookey()
124 *cook |= (*raw0 & 0x0000003fL) << 16; in cookey()
/external/wpa_supplicant_8/src/crypto/
Ddes-internal.c252 const u32 *raw0; in cookey() local
258 raw0 = raw1++; in cookey()
259 *cook = (*raw0 & 0x00fc0000L) << 6; in cookey()
260 *cook |= (*raw0 & 0x00000fc0L) << 10; in cookey()
263 *cook = (*raw0 & 0x0003f000L) << 12; in cookey()
264 *cook |= (*raw0 & 0x0000003fL) << 16; in cookey()
/external/libvncserver/webclients/novnc/include/
Ddes.js138 raw0, raw1, rawi, KnLi;
172 raw0 = kn[rawi++];
174 keys[KnLi] = (raw0 & 0x00fc0000) << 6;
175 keys[KnLi] |= (raw0 & 0x00000fc0) << 10;
179 keys[KnLi] = (raw0 & 0x0003f000) << 12;
180 keys[KnLi] |= (raw0 & 0x0000003f) << 16;
/external/icu/icu4c/source/test/intltest/
Dtzrulets.cpp1010 int32_t raw0, dst0; in TestVTimeZoneSimpleWrite() local
1012 vtz_org->getOffset(time, FALSE, raw0, dst0, status); in TestVTimeZoneSimpleWrite()
1015 if (raw0 != raw1 || dst0 != dst1) { in TestVTimeZoneSimpleWrite()
1183 int32_t raw0, dst0, raw1, dst1; in TestGetSimpleRules() local
1184 tz->getOffset(testTimes[i], FALSE, raw0, dst0, status); in TestGetSimpleRules()
1192 if (raw0 != raw1 || dst0 != dst1) { in TestGetSimpleRules()
2335 int32_t raw, dst, raw0, dst0; in verifyTransitions() local
2353 icutz.getOffset(time - 1, FALSE, raw0, dst0, status); in verifyTransitions()
2359 if (raw == raw0 && dst == dst0) { in verifyTransitions()
2386 icutz.getOffset(time - 1, FALSE, raw0, dst0, status); in verifyTransitions()
[all …]
/external/clang/test/Analysis/
Dmisc-ps.m568 unsigned long *cook, *raw0;
573 raw0 = raw1++;
574 *cook = (*raw0 & 0x00fc0000L) << 6;
575 *cook |= (*raw0 & 0x00000fc0L) << 10;