Searched defs:abcd (Results 1 - 19 of 19) sorted by relevance

/external/libcups/cups/
H A Dmd5-private.h53 unsigned int abcd[4]; /* digest buffer */ member in struct:_cups_md5_state_s
/external/python/cpython2/Modules/
H A Dmd5.h69 md5_word_t abcd[4]; /* digest buffer */ member in struct:md5_state_s
/external/eigen/bench/
H A Dcheck_cache_queries.cpp10 int abcd[4]; \
11 abcd[0] = abcd[1] = abcd[2] = abcd[3] = 0;\
12 EIGEN_CPUID(abcd, CODE, 0); \
14 << (int*)(abcd[0]) << " " << (int*)(abcd[1]) << " " \
15 << (int*)(abcd[2]) << " " << (int*)(abcd[
28 int abcd[4]; local
[all...]
/external/skia/src/core/
H A DSkCpu.cpp18 static void cpuid (uint32_t abcd[4]) { __cpuid ((int*)abcd, 1); } argument
19 static void cpuid7(uint32_t abcd[4]) { __cpuidex((int*)abcd, 7, 0); } argument
27 static void cpuid (uint32_t abcd[4]) { __get_cpuid(1, abcd+0, abcd+1, abcd+2, abcd+3); } argument
28 static void cpuid7(uint32_t abcd[ argument
40 uint32_t abcd[4] = {0,0,0,0}; local
[all...]
/external/skqp/src/core/
H A DSkCpu.cpp18 static void cpuid (uint32_t abcd[4]) { __cpuid ((int*)abcd, 1); } argument
19 static void cpuid7(uint32_t abcd[4]) { __cpuidex((int*)abcd, 7, 0); } argument
27 static void cpuid (uint32_t abcd[4]) { __get_cpuid(1, abcd+0, abcd+1, abcd+2, abcd+3); } argument
28 static void cpuid7(uint32_t abcd[ argument
40 uint32_t abcd[4] = {0,0,0,0}; local
[all...]
/external/libvpx/libvpx/vpx_dsp/ppc/
H A Dvpx_convolve_vsx.c227 uint32x4_t abcd = (uint32x4_t)vec_mergeh(ab, cd); local
230 return (uint8x16_t)vec_mergeh(abcd, efgh);
/external/icu/icu4c/source/test/cintltst/
H A Dcustrtst.c494 abcd[] = { 0x61, 0x62, 0x63, 0x64, 0 }, local
646 if (u_strspn(testString, abcd) != u_strlen(testString)) {
/external/skia/src/opts/
H A DSkNx_neon.h47 float32x2x4_t abcd = {{ local
53 vst4_f32((float*) dst, abcd);
/external/skia/src/pathops/
H A DSkPathOpsCubic.cpp92 double abcd = SkDInterp(abc, bcd, t); local
97 dst[6] = abcd;
651 double abcd = SkDInterp(abc, bcd, t);
652 return abcd;
/external/skqp/src/pathops/
H A DSkPathOpsCubic.cpp92 double abcd = SkDInterp(abc, bcd, t); local
97 dst[6] = abcd;
651 double abcd = SkDInterp(abc, bcd, t);
652 return abcd;
/external/clang/test/Parser/
H A Dcxx-altivec.cpp192 __vector float abcd; member in class:VectorClassMultipleMembers
/external/eigen/Eigen/src/Core/util/
H A DMemory.h757 # define EIGEN_CPUID(abcd,func,id) \
758 __asm__ __volatile__ ("xchgl %%ebx, %k1;cpuid; xchgl %%ebx,%k1": "=a" (abcd[0]), "=&r" (abcd[1]), "=c" (abcd[2]), "=d" (abcd[3]) : "a" (func), "c" (id));
762 # define EIGEN_CPUID(abcd,func,id) \
763 __asm__ __volatile__ ("xchg{q}\t{%%}rbx, %q1; cpuid; xchg{q}\t{%%}rbx, %q1": "=a" (abcd[0]), "=&r" (abcd[1]), "=c" (abcd[2]), "=d" (abcd[
780 cpuid_is_vendor(int abcd[4], const int vendor[3]) argument
787 int abcd[4]; local
819 int abcd[4]; local
907 int abcd[4]; local
923 int abcd[4]; local
[all...]
/external/skia/src/gpu/ccpr/
H A DGrCCGeometry.cpp504 Sk2f abcd = lerp(abc, bcd, TT); local
505 (this->*AppendLeft)(p0, ab, abc, abcd, maxFutureSubdivisions);
506 (this->*AppendRight)(abcd, bcd, cd, p3, maxFutureSubdivisions);
/external/skqp/src/gpu/ccpr/
H A DGrCCGeometry.cpp504 Sk2f abcd = lerp(abc, bcd, TT); local
505 (this->*AppendLeft)(p0, ab, abc, abcd, maxFutureSubdivisions);
506 (this->*AppendRight)(abcd, bcd, cd, p3, maxFutureSubdivisions);
/external/valgrind/VEX/priv/
H A Dguest_s390_helpers.c459 UInt uvwxy = ((high_surrogate >> 6) & 0xf) + 1; // abcd + 1
516 UInt uvwxy = ((high_surrogate >> 6) & 0xf) + 1; // abcd + 1
558 UInt abcd = (uvwxy - 1) & 0xf; local
561 UInt high_surrogate = (0xd8 << 8) | (abcd << 6) | efghij;
612 UInt abcd = srcval >> 12; local
615 UInt byte1 = 0xe0 | abcd;
760 UInt abcd = byte1 & 0xf; local
765 retval = (abcd << 12) | (efghij << 6) | klmnop;
808 UInt abcd = (uvwxy - 1) & 0xf; local
809 UInt high_surrogate = (0xd8 << 8) | (abcd <<
[all...]
/external/tensorflow/tensorflow/core/grappler/costs/
H A Dvirtual_scheduler_test.cc171 auto abcd = ops::MatMul(s.WithOpName("abcd"), abc, d); local
172 auto abcde = ops::MatMul(s.WithOpName("abcde"), abcd, e);
184 dependency_["abcd"] = {"abc", "d"};
185 dependency_["abcde"] = {"abcd", "e"};
1607 auto op_names = {"ab", "abc", "abcd", "abcde"};
/external/webp/src/dsp/
H A Ddec_sse2.c942 const __m128i abcd = _mm_avg_epu8(XABCD, ABCD0); local
949 WebPUint32ToMem(dst + 0 * BPS, _mm_cvtsi128_si32( abcd ));
951 WebPUint32ToMem(dst + 2 * BPS, _mm_cvtsi128_si32(_mm_slli_si128(abcd, 1)));
H A Denc_sse2.c778 const __m128i abcd = _mm_avg_epu8(XABCD, ABCD0); local
785 WebPUint32ToMem(dst + 0 * BPS, _mm_cvtsi128_si32( abcd ));
787 WebPUint32ToMem(dst + 2 * BPS, _mm_cvtsi128_si32(_mm_slli_si128(abcd, 1)));
/external/dexmaker/lib/
H A Ddalvik-dx-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/dx/ com/android/dx/cf/ ...

Completed in 634 milliseconds