HomeSort by relevance Sort by last modified time
    Searched refs:TestCpuFlag (Results 1 - 25 of 50) sorted by null

1 2

  /external/chromium_org/third_party/libyuv/util/
cpuid.c 21 int cpu_flags = TestCpuFlag(-1);
22 int has_arm = TestCpuFlag(kCpuHasARM);
23 int has_mips = TestCpuFlag(kCpuHasMIPS);
24 int has_x86 = TestCpuFlag(kCpuHasX86);
65 int has_neon = TestCpuFlag(kCpuHasNEON);
69 int has_mips_dsp = TestCpuFlag(kCpuHasMIPS_DSP);
70 int has_mips_dspr2 = TestCpuFlag(kCpuHasMIPS_DSPR2);
75 int has_sse2 = TestCpuFlag(kCpuHasSSE2);
76 int has_ssse3 = TestCpuFlag(kCpuHasSSSE3);
77 int has_sse41 = TestCpuFlag(kCpuHasSSE41)
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/media/base/
cpuid_unittest.cc 38 << cricket::CpuInfo::TestCpuFlag(cricket::CpuInfo::kCpuHasARM);
40 << cricket::CpuInfo::TestCpuFlag(cricket::CpuInfo::kCpuHasNEON);
42 << cricket::CpuInfo::TestCpuFlag(cricket::CpuInfo::kCpuHasX86);
44 << cricket::CpuInfo::TestCpuFlag(cricket::CpuInfo::kCpuHasSSE2);
46 << cricket::CpuInfo::TestCpuFlag(cricket::CpuInfo::kCpuHasSSSE3);
48 << cricket::CpuInfo::TestCpuFlag(cricket::CpuInfo::kCpuHasSSE41);
50 << cricket::CpuInfo::TestCpuFlag(cricket::CpuInfo::kCpuHasSSE42);
52 << cricket::CpuInfo::TestCpuFlag(cricket::CpuInfo::kCpuHasAVX);
53 bool has_arm = cricket::CpuInfo::TestCpuFlag(cricket::CpuInfo::kCpuHasARM);
54 bool has_x86 = cricket::CpuInfo::TestCpuFlag(cricket::CpuInfo::kCpuHasX86)
    [all...]
cpuid.cc 36 bool CpuInfo::TestCpuFlag(int flag) {
38 return libyuv::TestCpuFlag(flag) ? true : false;
cpuid.h 62 static bool TestCpuFlag(int flag);
  /external/chromium_org/third_party/libyuv/unit_test/
cpu_test.cc 22 int cpu_flags = TestCpuFlag(-1);
24 int has_arm = TestCpuFlag(kCpuHasARM);
26 int has_neon = TestCpuFlag(kCpuHasNEON);
28 int has_x86 = TestCpuFlag(kCpuHasX86);
30 int has_sse2 = TestCpuFlag(kCpuHasSSE2);
32 int has_ssse3 = TestCpuFlag(kCpuHasSSSE3);
34 int has_sse41 = TestCpuFlag(kCpuHasSSE41);
36 int has_sse42 = TestCpuFlag(kCpuHasSSE42);
38 int has_avx = TestCpuFlag(kCpuHasAVX);
40 int has_avx2 = TestCpuFlag(kCpuHasAVX2)
    [all...]
  /external/libyuv/files/unit_test/
cpu_test.cc 22 int cpu_flags = TestCpuFlag(~kCpuInitialized);
24 int has_arm = TestCpuFlag(kCpuHasARM);
26 int has_neon = TestCpuFlag(kCpuHasNEON);
28 int has_x86 = TestCpuFlag(kCpuHasX86);
30 int has_sse2 = TestCpuFlag(kCpuHasSSE2);
32 int has_ssse3 = TestCpuFlag(kCpuHasSSSE3);
34 int has_sse41 = TestCpuFlag(kCpuHasSSE41);
36 int has_sse42 = TestCpuFlag(kCpuHasSSE42);
38 int has_avx = TestCpuFlag(kCpuHasAVX);
40 int has_avx2 = TestCpuFlag(kCpuHasAVX2)
    [all...]
  /external/libvpx/libvpx/third_party/libyuv/include/libyuv/
cpu_id.h 32 static __inline int TestCpuFlag(int test_flag) {
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/third_party/libyuv/include/libyuv/
cpu_id.h 32 static __inline int TestCpuFlag(int test_flag) {
  /external/chromium_org/third_party/libvpx/source/libvpx/third_party/libyuv/source/
rotate_argb.cc 53 if (TestCpuFlag(kCpuHasSSE2) && IS_ALIGNED(height, 4) && // Width of dest.
58 if (TestCpuFlag(kCpuHasNEON) && IS_ALIGNED(height, 4) && // Width of dest.
106 if (TestCpuFlag(kCpuHasSSSE3) && IS_ALIGNED(width, 4) &&
113 if (TestCpuFlag(kCpuHasAVX2) && IS_ALIGNED(width, 8)) {
118 if (TestCpuFlag(kCpuHasNEON) && IS_ALIGNED(width, 4)) {
123 if (TestCpuFlag(kCpuHasNEON) && IS_ALIGNED(width * 4, 32)) {
128 if (TestCpuFlag(kCpuHasX86)) {
133 if (TestCpuFlag(kCpuHasSSE2) && IS_ALIGNED(width * 4, 32) &&
140 if (TestCpuFlag(kCpuHasERMS)) {
145 if (TestCpuFlag(kCpuHasMIPS))
    [all...]
convert_from_argb.cc 54 if (TestCpuFlag(kCpuHasSSSE3) && width >= 16) {
64 if (TestCpuFlag(kCpuHasNEON) && width >= 8) {
72 if (TestCpuFlag(kCpuHasSSSE3) && width >= 16) {
84 if (TestCpuFlag(kCpuHasNEON) && width >= 8) {
133 if (TestCpuFlag(kCpuHasSSSE3) && width >= 16) {
143 if (TestCpuFlag(kCpuHasNEON) && width >= 16) {
152 if (TestCpuFlag(kCpuHasSSSE3) && width >= 16) {
163 if (TestCpuFlag(kCpuHasNEON) && width >= 8) {
212 if (TestCpuFlag(kCpuHasSSSE3) && width >= 16) {
224 if (TestCpuFlag(kCpuHasAVX2) && width >= 32)
    [all...]
planar_functions.cc 45 if (TestCpuFlag(kCpuHasX86) && IS_ALIGNED(width, 4)) {
50 if (TestCpuFlag(kCpuHasSSE2) && IS_ALIGNED(width, 32) &&
57 if (TestCpuFlag(kCpuHasERMS)) {
62 if (TestCpuFlag(kCpuHasNEON) && IS_ALIGNED(width, 32)) {
67 if (TestCpuFlag(kCpuHasMIPS)) {
94 if (TestCpuFlag(kCpuHasX86) && IS_ALIGNED(width, 4)) {
99 if (TestCpuFlag(kCpuHasSSE2) && IS_ALIGNED(width, 32) &&
106 if (TestCpuFlag(kCpuHasERMS)) {
111 if (TestCpuFlag(kCpuHasNEON) && IS_ALIGNED(width, 32)) {
116 if (TestCpuFlag(kCpuHasMIPS))
    [all...]
scale_argb.cc 56 if (TestCpuFlag(kCpuHasSSE2) && IS_ALIGNED(dst_width, 4) &&
64 if (TestCpuFlag(kCpuHasNEON) && IS_ALIGNED(dst_width, 8) &&
101 if (TestCpuFlag(kCpuHasSSE2) && IS_ALIGNED(dst_width, 4) &&
107 if (TestCpuFlag(kCpuHasNEON) && IS_ALIGNED(dst_width, 8) &&
142 if (TestCpuFlag(kCpuHasSSE2) && IS_ALIGNED(dst_width, 4) &&
148 if (TestCpuFlag(kCpuHasNEON) && IS_ALIGNED(dst_width, 4) &&
193 if (TestCpuFlag(kCpuHasSSE2) && clip_src_width >= 16) {
204 if (TestCpuFlag(kCpuHasSSSE3) && clip_src_width >= 16) {
215 if (TestCpuFlag(kCpuHasAVX2) && clip_src_width >= 32) {
223 if (TestCpuFlag(kCpuHasNEON) && clip_src_width >= 16)
    [all...]
convert_argb.cc 82 if (TestCpuFlag(kCpuHasSSSE3) && width >= 8) {
92 if (TestCpuFlag(kCpuHasNEON) && width >= 8) {
144 if (TestCpuFlag(kCpuHasSSSE3) && width >= 8) {
155 if (TestCpuFlag(kCpuHasAVX2) && width >= 16) {
163 if (TestCpuFlag(kCpuHasNEON) && width >= 8) {
171 if (TestCpuFlag(kCpuHasMIPS_DSPR2) && IS_ALIGNED(width, 4) &&
224 if (TestCpuFlag(kCpuHasSSSE3) && width >= 8) {
234 if (TestCpuFlag(kCpuHasNEON) && width >= 8) {
279 if (TestCpuFlag(kCpuHasSSE2) && width >= 8 &&
287 if (TestCpuFlag(kCpuHasNEON) && width >= 8)
    [all...]
scale.cc 57 if (TestCpuFlag(kCpuHasNEON) && IS_ALIGNED(dst_width, 16)) {
61 if (TestCpuFlag(kCpuHasSSE2) && IS_ALIGNED(dst_width, 16)) {
74 if (TestCpuFlag(kCpuHasMIPS_DSPR2) && IS_ALIGNED(src_ptr, 4) &&
111 if (TestCpuFlag(kCpuHasNEON) && IS_ALIGNED(dst_width, 16)) {
116 if (TestCpuFlag(kCpuHasSSE2) && IS_ALIGNED(dst_width, 16)) {
130 if (TestCpuFlag(kCpuHasMIPS_DSPR2) && IS_ALIGNED(src_ptr, 4) &&
168 if (TestCpuFlag(kCpuHasNEON) && IS_ALIGNED(dst_width, 8)) {
172 if (TestCpuFlag(kCpuHasSSE2) &&
178 if (TestCpuFlag(kCpuHasMIPS_DSPR2) && IS_ALIGNED(row_stride, 4) &&
211 if (TestCpuFlag(kCpuHasNEON) && IS_ALIGNED(dst_width, 8))
    [all...]
convert.cc 192 if (TestCpuFlag(kCpuHasX86) && IS_ALIGNED(width, 4)) {
197 if (TestCpuFlag(kCpuHasSSE2) && IS_ALIGNED(width, 32) &&
205 if (TestCpuFlag(kCpuHasERMS)) {
210 if (TestCpuFlag(kCpuHasNEON) && IS_ALIGNED(width, 32)) {
215 if (TestCpuFlag(kCpuHasMIPS)) {
286 if (TestCpuFlag(kCpuHasSSE2) && halfwidth >= 16) {
299 if (TestCpuFlag(kCpuHasAVX2) && halfwidth >= 32) {
307 if (TestCpuFlag(kCpuHasNEON) && halfwidth >= 16) {
315 if (TestCpuFlag(kCpuHasMIPS_DSPR2) && halfwidth >= 16) {
428 if (TestCpuFlag(kCpuHasNEON) && IS_ALIGNED(width, 32))
    [all...]
  /external/chromium_org/third_party/libyuv/source/
rotate_argb.cc 53 if (TestCpuFlag(kCpuHasSSE2) && IS_ALIGNED(height, 4) && // Width of dest.
58 if (TestCpuFlag(kCpuHasNEON) && IS_ALIGNED(height, 4) && // Width of dest.
106 if (TestCpuFlag(kCpuHasSSSE3) && IS_ALIGNED(width, 4) &&
113 if (TestCpuFlag(kCpuHasAVX2) && IS_ALIGNED(width, 8)) {
118 if (TestCpuFlag(kCpuHasNEON) && IS_ALIGNED(width, 4)) {
123 if (TestCpuFlag(kCpuHasNEON) && IS_ALIGNED(width * 4, 32)) {
128 if (TestCpuFlag(kCpuHasX86)) {
133 if (TestCpuFlag(kCpuHasSSE2) && IS_ALIGNED(width * 4, 32) &&
140 if (TestCpuFlag(kCpuHasERMS)) {
145 if (TestCpuFlag(kCpuHasMIPS))
    [all...]
convert_from_argb.cc 54 if (TestCpuFlag(kCpuHasSSSE3) && width >= 16) {
65 if (TestCpuFlag(kCpuHasSSSE3) && width >= 16) {
77 if (TestCpuFlag(kCpuHasNEON) && width >= 8) {
128 if (TestCpuFlag(kCpuHasSSSE3) && width >= 16) {
140 if (TestCpuFlag(kCpuHasSSSE3) && width >= 16) {
151 if (TestCpuFlag(kCpuHasNEON) && width >= 8) {
206 if (TestCpuFlag(kCpuHasSSSE3) && width >= 16) {
218 if (TestCpuFlag(kCpuHasAVX2) && width >= 32) {
226 if (TestCpuFlag(kCpuHasNEON) && width >= 8) {
279 if (TestCpuFlag(kCpuHasSSSE3) && width >= 16)
    [all...]
planar_functions.cc 45 if (TestCpuFlag(kCpuHasX86) && IS_ALIGNED(width, 4)) {
50 if (TestCpuFlag(kCpuHasSSE2) && IS_ALIGNED(width, 32) &&
57 if (TestCpuFlag(kCpuHasERMS)) {
62 if (TestCpuFlag(kCpuHasNEON) && IS_ALIGNED(width, 32)) {
67 if (TestCpuFlag(kCpuHasMIPS)) {
94 if (TestCpuFlag(kCpuHasX86) && IS_ALIGNED(width, 4)) {
99 if (TestCpuFlag(kCpuHasSSE2) && IS_ALIGNED(width, 32) &&
106 if (TestCpuFlag(kCpuHasERMS)) {
111 if (TestCpuFlag(kCpuHasNEON) && IS_ALIGNED(width, 32)) {
116 if (TestCpuFlag(kCpuHasMIPS))
    [all...]
scale_argb.cc 56 if (TestCpuFlag(kCpuHasSSE2) && IS_ALIGNED(dst_width, 4) &&
64 if (TestCpuFlag(kCpuHasNEON) && IS_ALIGNED(dst_width, 8) &&
101 if (TestCpuFlag(kCpuHasSSE2) && IS_ALIGNED(dst_width, 4) &&
107 if (TestCpuFlag(kCpuHasNEON) && IS_ALIGNED(dst_width, 8) &&
142 if (TestCpuFlag(kCpuHasSSE2) && IS_ALIGNED(dst_width, 4) &&
148 if (TestCpuFlag(kCpuHasNEON) && IS_ALIGNED(dst_width, 4) &&
193 if (TestCpuFlag(kCpuHasSSE2) && clip_src_width >= 16) {
204 if (TestCpuFlag(kCpuHasSSSE3) && clip_src_width >= 16) {
215 if (TestCpuFlag(kCpuHasAVX2) && clip_src_width >= 32) {
223 if (TestCpuFlag(kCpuHasNEON) && clip_src_width >= 16)
    [all...]
convert_argb.cc 82 if (TestCpuFlag(kCpuHasSSSE3) && width >= 8) {
92 if (TestCpuFlag(kCpuHasNEON) && width >= 8) {
144 if (TestCpuFlag(kCpuHasSSSE3) && width >= 8) {
155 if (TestCpuFlag(kCpuHasAVX2) && width >= 16) {
163 if (TestCpuFlag(kCpuHasNEON) && width >= 8) {
171 if (TestCpuFlag(kCpuHasMIPS_DSPR2) && IS_ALIGNED(width, 4) &&
224 if (TestCpuFlag(kCpuHasSSSE3) && width >= 8) {
234 if (TestCpuFlag(kCpuHasNEON) && width >= 8) {
279 if (TestCpuFlag(kCpuHasSSE2) && width >= 8 &&
287 if (TestCpuFlag(kCpuHasNEON) && width >= 8)
    [all...]
scale.cc 57 if (TestCpuFlag(kCpuHasNEON) && IS_ALIGNED(dst_width, 16)) {
61 if (TestCpuFlag(kCpuHasSSE2) && IS_ALIGNED(dst_width, 16)) {
74 if (TestCpuFlag(kCpuHasMIPS_DSPR2) && IS_ALIGNED(src_ptr, 4) &&
111 if (TestCpuFlag(kCpuHasNEON) && IS_ALIGNED(dst_width, 16)) {
116 if (TestCpuFlag(kCpuHasSSE2) && IS_ALIGNED(dst_width, 16)) {
130 if (TestCpuFlag(kCpuHasMIPS_DSPR2) && IS_ALIGNED(src_ptr, 4) &&
168 if (TestCpuFlag(kCpuHasNEON) && IS_ALIGNED(dst_width, 8)) {
172 if (TestCpuFlag(kCpuHasSSE2) &&
178 if (TestCpuFlag(kCpuHasMIPS_DSPR2) && IS_ALIGNED(row_stride, 4) &&
211 if (TestCpuFlag(kCpuHasNEON) && IS_ALIGNED(dst_width, 8))
    [all...]
convert.cc 192 if (TestCpuFlag(kCpuHasX86) && IS_ALIGNED(width, 4)) {
197 if (TestCpuFlag(kCpuHasSSE2) && IS_ALIGNED(width, 32) &&
205 if (TestCpuFlag(kCpuHasERMS)) {
210 if (TestCpuFlag(kCpuHasNEON) && IS_ALIGNED(width, 32)) {
215 if (TestCpuFlag(kCpuHasMIPS)) {
286 if (TestCpuFlag(kCpuHasSSE2) && halfwidth >= 16) {
299 if (TestCpuFlag(kCpuHasAVX2) && halfwidth >= 32) {
307 if (TestCpuFlag(kCpuHasNEON) && halfwidth >= 16) {
315 if (TestCpuFlag(kCpuHasMIPS_DSPR2) && halfwidth >= 16) {
428 if (TestCpuFlag(kCpuHasNEON) && IS_ALIGNED(width, 32))
    [all...]
  /external/libyuv/files/source/
planar_functions.cc 33 if (TestCpuFlag(kCpuHasNEON) && IS_ALIGNED(width, 64)) {
38 if (TestCpuFlag(kCpuHasX86) && IS_ALIGNED(width, 4)) {
43 if (TestCpuFlag(kCpuHasSSE2) && IS_ALIGNED(width, 32) &&
84 if (TestCpuFlag(kCpuHasNEON) && IS_ALIGNED(width, 16)) {
89 if (TestCpuFlag(kCpuHasSSE2) && IS_ALIGNED(width, 16)) {
92 if (TestCpuFlag(kCpuHasSSSE3) &&
128 if (TestCpuFlag(kCpuHasSSE2)) {
145 if (TestCpuFlag(kCpuHasNEON)) {
190 if (TestCpuFlag(kCpuHasSSE2)) {
207 if (TestCpuFlag(kCpuHasNEON))
    [all...]
rotate_argb.cc 42 if (TestCpuFlag(kCpuHasSSE2) &&
85 if (TestCpuFlag(kCpuHasSSSE3) && IS_ALIGNED(width, 4) &&
93 if (TestCpuFlag(kCpuHasNEON) && IS_ALIGNED(width * 4, 64)) {
98 if (TestCpuFlag(kCpuHasX86)) {
103 if (TestCpuFlag(kCpuHasSSE2) && IS_ALIGNED(width * 4, 32) &&
  /external/libyuv/files/include/libyuv/
cpu_id.h 49 static __inline int TestCpuFlag(int test_flag) {

Completed in 868 milliseconds

1 2