Home
Sort by
last modified time
|
relevance
|
path
Repository(s)
applications
arkcompiler
base
build
commonlibrary
developtools
device
docs
domains
drivers
foundation
ide
interface
kernel
napi_generator
productdefine
test
third_party
vendor
select all
invert selection
clear
Full Search
Search through all text tokens(words,strings,identifiers,numbers) in index.
Definition
Only finds symbol definitions(where e.g a variable(function,...) is defined).
Symbol
Only finds symbol(e.g. methods classes,function,variables).
File Path
Path of the source file(use "/").If you want just exact path,enclose it in "".Source files end with: .jar/.bz2/.a/.h/.java...
History
History log comments.
Type
Any
Bzip(2)
C
Clojure
C#
C++
ELF
Erlang
Image file
Fortran
Golang
GZIP
Haskell
Jar
Java
Java class
JavaScript
Lisp
Lua
Pascal
Perl
PHP
Plain Text
PL/SQL
Python
Rust
Scala
Shell script
SQL
Tar
Tcl
Troff
UUEncoded
Visual Basic
XML
Zip
Type of analyzer used to filter file types include with selected(e.g. just C sources).
Help
Searched
refs:has_avx
(Results
1 - 14
of
14
) sorted by relevance
/third_party/rust/crates/aho-corasick/src/packed/teddy/
H
A
D
compile.rs
90
let
has_avx
= is_x86_feature_detected!("avx2");
in build_imp()
92
if !
has_avx
{
in build_imp()
101
} else if !has_ssse3 && !
has_avx
{
in build_imp()
104
has_avx
in build_imp()
/third_party/mesa3d/src/util/
H
A
D
u_cpu_detect.c
728
util_cpu_caps.
has_avx
= ((regs2[2] >> 28) & 1) && // AVX
in util_cpu_detect_once()
731
util_cpu_caps.has_f16c = ((regs2[2] >> 29) & 1) && util_cpu_caps.
has_avx
;
in util_cpu_detect_once()
732
util_cpu_caps.has_fma = ((regs2[2] >> 12) & 1) && util_cpu_caps.
has_avx
;
in util_cpu_detect_once()
745
if (util_cpu_caps.
has_avx
&& regs[0] >= 0x00000007) {
in util_cpu_detect_once()
784
util_cpu_caps.has_xop = util_cpu_caps.
has_avx
&&
in util_cpu_detect_once()
839
printf("util_cpu_caps.
has_avx
= %u\n", util_cpu_caps.
has_avx
);
in util_cpu_detect_once()
H
A
D
u_cpu_detect.h
104
unsigned
has_avx
:1;
member
/third_party/mesa3d/src/gallium/auxiliary/gallivm/
H
A
D
lp_bld_init.c
452
util_cpu_caps.
has_avx
= 0;
in lp_build_init()
459
if (util_get_cpu_caps()->has_avx2 || util_get_cpu_caps()->
has_avx
) {
in lp_build_init()
474
* "util_get_cpu_caps()->
has_avx
" predicate, and lack the
in lp_build_init()
480
util_get_cpu_caps()->
has_avx
= 0;
in lp_build_init()
H
A
D
lp_bld_arit.c
113
else if (type.length <= 4 || !util_get_cpu_caps()->
has_avx
) {
in lp_build_min_simple()
127
else if (type.length == 2 || !util_get_cpu_caps()->
has_avx
) {
in lp_build_min_simple()
267
else if (type.length <= 4 || !util_get_cpu_caps()->
has_avx
) {
in lp_build_max_simple()
281
else if (type.length == 2 || !util_get_cpu_caps()->
has_avx
) {
in lp_build_max_simple()
683
else if (util_get_cpu_caps()->
has_avx
&& bld->type.width == 32 &&
in lp_build_hadd_partial4()
1278
(util_get_cpu_caps()->
has_avx
&& type.width == 32 && type.length == 8)) &&
in lp_build_div()
1862
(util_get_cpu_caps()->
has_avx
&& type.width*type.length == 256) ||
in arch_rounding_available()
1927
assert(util_get_cpu_caps()->
has_avx
);
in lp_build_iround_nearest_sse2()
2362
(util_get_cpu_caps()->
has_avx
&& type.width == 32 && type.length == 8)) {
in lp_build_iround()
2648
(util_get_cpu_caps()->
has_avx
in lp_build_rcp()
[all...]
H
A
D
lp_bld_conv.c
514
util_get_cpu_caps()->
has_avx
)
in lp_build_conv_auto()
724
util_get_cpu_caps()->
has_avx
) {
in lp_build_conv()
H
A
D
lp_bld_misc.cpp
418
MAttrs.push_back(util_get_cpu_caps()->
has_avx
? "+avx" : "-avx");
in lp_build_create_jit_compiler_for_module()
H
A
D
lp_bld_logic.c
355
(util_get_cpu_caps()->
has_avx
&&
in lp_build_select()
H
A
D
lp_bld_pack.c
325
if (type.length == 2 && type.width == 128 && util_get_cpu_caps()->
has_avx
) {
in lp_build_interleave2()
/third_party/node/deps/v8/src/base/
H
A
D
cpu.h
96
bool
has_avx
() const { return has_avx_; }
in has_avx()
function in v8::base::final
H
A
D
cpu.cc
389
has_avx_ = features.x86.
has_avx
;
in StarboardDetectCPU()
/third_party/mesa3d/src/gallium/drivers/llvmpipe/
H
A
D
lp_bld_depth.c
452
else if (util_get_cpu_caps()->
has_avx
&& type.length == 8) {
in lp_build_occlusion_count()
/third_party/node/deps/v8/src/codegen/ia32/
H
A
D
assembler-ia32.cc
145
if (cpu.
has_avx
() && cpu.has_osxsave() && OSHasAVXSupport()) {
in ProbeImpl()
/third_party/node/deps/v8/src/codegen/x64/
H
A
D
assembler-x64.cc
99
if (cpu.
has_avx
() && cpu.has_osxsave() && OSHasAVXSupport()) {
in ProbeImpl()
Completed in 28 milliseconds