OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:has_SSE4_2
(Results
1 - 3
of
3
) sorted by null
/art/runtime/arch/x86/
instruction_set_features_x86.cc
66
bool
has_SSE4_2
= FindVariantInArray(x86_variants_with_sse4_2,
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,
101
bool
has_SSE4_2
= (bitmap & kSse4_2Bitfield) != 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
,
133
const bool
has_SSE4_2
= false;
135
const bool
has_SSE4_2
= 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
,
86
has_SSE4_2_(
has_SSE4_2
),
/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 68 milliseconds