HomeSort by relevance Sort by last modified time
    Searched full:has_avx (Results 1 - 25 of 34) sorted by null

1 2

  /external/chromium_org/base/
cpu.h 48 bool has_avx() const { return has_avx_; } function in class:base::CPU
50 // differ from the value of |has_avx()| because |has_avx()| also tests for
53 // to workaround a bug in NSS but |has_avx()| is what you want.
cpu.cc 278 if (has_avx()) return AVX;
  /external/chromium_org/third_party/libyuv/unit_test/
cpu_test.cc 38 int has_avx = TestCpuFlag(kCpuHasAVX); local
39 printf("Has AVX %x\n", has_avx);
  /external/chromium_org/third_party/libyuv/util/
cpuid.c 79 int has_avx = TestCpuFlag(kCpuHasAVX); local
87 printf("Has AVX %x\n", has_avx);
  /external/libyuv/files/unit_test/
cpu_test.cc 38 int has_avx = TestCpuFlag(kCpuHasAVX); local
39 printf("Has AVX %x\n", has_avx);
  /external/chromium_org/third_party/libvpx/source/libvpx/test/
test_libvpx.cc 50 if (!(simd_caps & HAS_AVX))
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_cpu_detect.h 64 unsigned has_avx:1; member in struct:util_cpu_caps
u_cpu_detect.c 281 util_cpu_caps.has_avx = (regs2[2] >> 28) & 1;
335 debug_printf("util_cpu_caps.has_avx = %u\n", util_cpu_caps.has_avx);
  /external/libvpx/libvpx/test/
test_libvpx.cc 50 if (!(simd_caps & HAS_AVX))
  /external/mesa3d/src/gallium/auxiliary/util/
u_cpu_detect.h 64 unsigned has_avx:1; member in struct:util_cpu_caps
u_cpu_detect.c 281 util_cpu_caps.has_avx = (regs2[2] >> 28) & 1;
335 debug_printf("util_cpu_caps.has_avx = %u\n", util_cpu_caps.has_avx);
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/test/
test_libvpx.cc 50 if (!(simd_caps & HAS_AVX))
  /external/chromium_org/extensions/browser/api/system_cpu/
cpu_info_provider.cc 64 if (cpu_.has_avx())
  /external/chromium_org/third_party/libvpx/source/libvpx/vpx_ports/
x86.h 113 #define HAS_AVX 0x40
159 if (reg_ecx & BIT(28)) flags |= HAS_AVX;
  /external/libvpx/libvpx/vpx_ports/
x86.h 113 #define HAS_AVX 0x40
159 if (reg_ecx & BIT(28)) flags |= HAS_AVX;
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vpx_ports/
x86.h 113 #define HAS_AVX 0x40
159 if (reg_ecx & BIT(28)) flags |= HAS_AVX;
  /external/lldb/test/functionalities/register/
TestRegisters.py 183 has_avx = False
187 has_avx = True
190 if has_avx:
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/gallivm/
lp_bld_misc.cpp 261 if (util_cpu_caps.has_avx) {
lp_bld_arit.c 94 else if (type.length <= 4 || !util_cpu_caps.has_avx) {
108 else if (type.length == 2 || !util_cpu_caps.has_avx) {
184 else if (type.length <= 4 || !util_cpu_caps.has_avx) {
198 else if (type.length == 2 || !util_cpu_caps.has_avx) {
515 else if (util_cpu_caps.has_avx && bld->type.width == 32 &&
867 (util_cpu_caps.has_avx && type.width == 32 && type.length == 8)) &&
    [all...]
lp_bld_init.c 438 util_cpu_caps.has_avx) {
lp_bld_logic.c 490 (util_cpu_caps.has_avx &&
  /external/mesa3d/src/gallium/auxiliary/gallivm/
lp_bld_misc.cpp 261 if (util_cpu_caps.has_avx) {
lp_bld_arit.c 94 else if (type.length <= 4 || !util_cpu_caps.has_avx) {
108 else if (type.length == 2 || !util_cpu_caps.has_avx) {
184 else if (type.length <= 4 || !util_cpu_caps.has_avx) {
198 else if (type.length == 2 || !util_cpu_caps.has_avx) {
515 else if (util_cpu_caps.has_avx && bld->type.width == 32 &&
867 (util_cpu_caps.has_avx && type.width == 32 && type.length == 8)) &&
    [all...]
lp_bld_init.c 438 util_cpu_caps.has_avx) {
  /external/chromium_org/net/socket/
nss_ssl_util.cc 174 if (cpu.has_aesni() && cpu.has_avx()) {

Completed in 1600 milliseconds

1 2