/external/llvm-project/lldb/test/API/commands/register/register/intel_xtended_registers/mpx_offset_intersection/ |
D | TestMPXOffsetIntersection.py | 40 has_avx = False 44 has_avx = True 47 if not (has_avx and has_mpx):
|
/external/virglrenderer/src/gallium/auxiliary/util/ |
D | u_cpu_detect.c | 369 util_cpu_caps.has_avx = ((regs2[2] >> 28) & 1) && // AVX in util_cpu_detect() 385 if (util_cpu_caps.has_avx && regs[0] >= 0x00000007) { in util_cpu_detect() 407 util_cpu_caps.has_xop = util_cpu_caps.has_avx && in util_cpu_detect() 445 debug_printf("util_cpu_caps.has_avx = %u\n", util_cpu_caps.has_avx); in util_cpu_detect()
|
D | u_cpu_detect.h | 66 unsigned has_avx:1; member
|
/external/libchrome/base/ |
D | cpu_unittest.cc | 65 if (cpu.has_avx()) { in TEST() 115 if (cpu.has_avx()) { in TEST()
|
D | cpu.h | 49 bool has_avx() const { return has_avx_; } in has_avx() function
|
D | cpu.cc | 232 if (has_avx()) return AVX; in GetIntelMicroArchitecture()
|
/external/mesa3d/src/util/ |
D | u_cpu_detect.c | 619 util_cpu_caps.has_avx = ((regs2[2] >> 28) & 1) && // AVX in util_cpu_detect_once() 622 util_cpu_caps.has_f16c = ((regs2[2] >> 29) & 1) && util_cpu_caps.has_avx; in util_cpu_detect_once() 623 util_cpu_caps.has_fma = ((regs2[2] >> 12) & 1) && util_cpu_caps.has_avx; in util_cpu_detect_once() 636 if (util_cpu_caps.has_avx && regs[0] >= 0x00000007) { in util_cpu_detect_once() 675 util_cpu_caps.has_xop = util_cpu_caps.has_avx && in util_cpu_detect_once() 722 debug_printf("util_cpu_caps.has_avx = %u\n", util_cpu_caps.has_avx); in util_cpu_detect_once()
|
D | u_cpu_detect.h | 77 unsigned has_avx:1; member
|
/external/libyuv/files/util/ |
D | cpuid.c | 82 int has_avx = TestCpuFlag(kCpuHasAVX); in main() local 98 printf("Has AVX %x\n", has_avx); in main()
|
/external/rust/crates/aho-corasick/src/packed/teddy/ |
D | compile.rs | 90 let has_avx = is_x86_feature_detected!("avx2"); in build_imp() localVariable 92 if !has_avx { in build_imp() 101 } else if !has_ssse3 && !has_avx { in build_imp() 104 has_avx in build_imp()
|
/external/libyuv/files/unit_test/ |
D | cpu_test.cc | 35 int has_avx = TestCpuFlag(kCpuHasAVX); in TEST_F() local 52 printf("Has AVX %d\n", has_avx); in TEST_F()
|
/external/tensorflow/tensorflow/core/platform/ |
D | port_test.cc | 184 const bool has_avx = TestCPUFeature(CPUFeature::AVX); in TEST() local 185 LOG(INFO) << "has_avx = " << has_avx; in TEST()
|
/external/llvm-project/lldb/test/API/commands/register/register/register_command/ |
D | TestRegisters.py | 401 has_avx = False 407 has_avx = True 416 if has_avx:
|
/external/mesa3d/src/gallium/auxiliary/gallivm/ |
D | lp_bld_init.c | 441 util_cpu_caps.has_avx = 0; in lp_build_init() 448 if (util_cpu_caps.has_avx2 || util_cpu_caps.has_avx) { in lp_build_init() 469 util_cpu_caps.has_avx = 0; in lp_build_init()
|
D | lp_bld_arit.c | 113 else if (type.length <= 4 || !util_cpu_caps.has_avx) { in lp_build_min_simple() 127 else if (type.length == 2 || !util_cpu_caps.has_avx) { in lp_build_min_simple() 283 else if (type.length <= 4 || !util_cpu_caps.has_avx) { in lp_build_max_simple() 297 else if (type.length == 2 || !util_cpu_caps.has_avx) { in lp_build_max_simple() 720 else if (util_cpu_caps.has_avx && bld->type.width == 32 && in lp_build_hadd_partial4() 1335 (util_cpu_caps.has_avx && type.width == 32 && type.length == 8)) && in lp_build_div() 1902 (util_cpu_caps.has_avx && type.width*type.length == 256) || in arch_rounding_available() 1964 assert(util_cpu_caps.has_avx); in lp_build_iround_nearest_sse2() 2382 (util_cpu_caps.has_avx && type.width == 32 && type.length == 8)) { in lp_build_iround() 2668 (util_cpu_caps.has_avx && type.width == 32 && type.length == 8))){ in lp_build_rcp() [all …]
|
D | lp_bld_misc.cpp | 415 MAttrs.push_back(util_cpu_caps.has_avx ? "+avx" : "-avx"); in lp_build_create_jit_compiler_for_module()
|
D | lp_bld_conv.c | 503 util_cpu_caps.has_avx) in lp_build_conv_auto() 713 util_cpu_caps.has_avx) { in lp_build_conv()
|
D | lp_bld_logic.c | 353 (util_cpu_caps.has_avx && in lp_build_select()
|
D | lp_bld_pack.c | 325 if (type.length == 2 && type.width == 128 && util_cpu_caps.has_avx) { in lp_build_interleave2()
|
/external/mesa3d/src/gallium/drivers/swr/ |
D | swr_loader.cpp | 126 if (util_cpu_caps.has_avx) { in swr_create_screen()
|
/external/cpu_features/ |
D | README.md | 81 instruction set (e.g., `g++ -mavx`) and sets `has_avx` accordingly. 89 static const bool has_avx = CPU_FEATURES_COMPILED_X86_AVX || features.avx; 91 // use has_avx.
|
/external/mesa3d/src/gallium/drivers/llvmpipe/ |
D | lp_bld_depth.c | 449 else if(util_cpu_caps.has_avx && type.length == 8) { in lp_build_occlusion_count()
|
/external/llvm-project/lldb/tools/debugserver/source/MacOSX/x86_64/ |
D | DNBArchImplX86_64.cpp | 70 bool LogAVXAndReturn(AVXPresence has_avx, int err, const char * os_ver) { in LogAVXAndReturn() argument 73 has_avx, err, os_ver); in LogAVXAndReturn() 74 return (has_avx == eAVXPresent); in LogAVXAndReturn()
|