Home
last modified time | relevance | path

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

/external/libaom/libaom/examples/
Dscalable_encoder.c126 aom_image_t raw0, raw1; in main() local
174 if (!aom_img_alloc(&raw0, AOM_IMG_FMT_I420, info.frame_width, in main()
224 while (aom_img_read(&raw0, infile0)) { in main()
248 encode_frame(&codec, &raw0, frame_count++, flags, outfile); in main()
282 aom_img_free(&raw0); in main()
/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/icu/icu4c/source/test/intltest/
Dtzrulets.cpp1011 int32_t raw0, dst0; in TestVTimeZoneSimpleWrite() local
1013 vtz_org->getOffset(time, FALSE, raw0, dst0, status); in TestVTimeZoneSimpleWrite()
1016 if (raw0 != raw1 || dst0 != dst1) { in TestVTimeZoneSimpleWrite()
1184 int32_t raw0, dst0, raw1, dst1; in TestGetSimpleRules() local
1185 tz->getOffset(testTimes[i], FALSE, raw0, dst0, status); in TestGetSimpleRules()
1193 if (raw0 != raw1 || dst0 != dst1) { in TestGetSimpleRules()
2336 int32_t raw, dst, raw0, dst0; in verifyTransitions() local
2354 icutz.getOffset(time - 1, FALSE, raw0, dst0, status); in verifyTransitions()
2360 if (raw == raw0 && dst == dst0) { in verifyTransitions()
2387 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;