OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:has_SSE4_1
(Results
1 - 3
of
3
) sorted by null
/art/runtime/arch/x86/
instruction_set_features_x86.cc
63
bool
has_SSE4_1
= FindVariantInArray(x86_variants_with_sse4_1,
88
return new X86_64InstructionSetFeatures(smp, has_SSSE3,
has_SSE4_1
, has_SSE4_2, has_AVX,
91
return new X86InstructionSetFeatures(smp, has_SSSE3,
has_SSE4_1
, has_SSE4_2, has_AVX,
100
bool
has_SSE4_1
= (bitmap & kSse4_1Bitfield) != 0;
107
return new X86_64InstructionSetFeatures(smp, has_SSSE3,
has_SSE4_1
, has_SSE4_2,
111
return new X86InstructionSetFeatures(smp, has_SSSE3,
has_SSE4_1
, has_SSE4_2,
127
const bool
has_SSE4_1
= false;
129
const bool
has_SSE4_1
= true;
160
return new X86_64InstructionSetFeatures(smp, has_SSSE3,
has_SSE4_1
, has_SSE4_2, has_AVX,
163
return new X86InstructionSetFeatures(smp, has_SSSE3,
has_SSE4_1
, has_SSE4_2, has_AVX
[
all
...]
instruction_set_features_x86.h
79
X86InstructionSetFeatures(bool smp, bool has_SSSE3, bool
has_SSE4_1
, bool has_SSE4_2,
85
has_SSE4_1_(
has_SSE4_1
),
/art/runtime/arch/x86_64/
instruction_set_features_x86_64.h
76
X86_64InstructionSetFeatures(bool smp, bool has_SSSE3, bool
has_SSE4_1
, bool has_SSE4_2,
79
: X86InstructionSetFeatures(smp, has_SSSE3,
has_SSE4_1
, has_SSE4_2, has_AVX,
Completed in 2146 milliseconds