Searched defs:has_SSE4_1 (Results 1 - 3 of 3) sorted by relevance

/art/runtime/arch/x86/
H A Dinstruction_set_features_x86.h75 X86InstructionSetFeatures(bool smp, bool has_SSSE3, bool has_SSE4_1, bool has_SSE4_2, argument
77 : InstructionSetFeatures(smp), has_SSSE3_(has_SSSE3), has_SSE4_1_(has_SSE4_1),
H A Dinstruction_set_features_x86.cc54 bool has_SSE4_1 = FindVariantInArray(x86_variants_with_sse4_1, local
70 return new X86_64InstructionSetFeatures(smp, has_SSSE3, has_SSE4_1, has_SSE4_2, has_AVX,
73 return new X86InstructionSetFeatures(smp, has_SSSE3, has_SSE4_1, has_SSE4_2, has_AVX,
82 bool has_SSE4_1 = (bitmap & kSse4_1Bitfield) != 0; local
87 return new X86_64InstructionSetFeatures(smp, has_SSSE3, has_SSE4_1, has_SSE4_2, has_AVX, has_AVX2);
89 return new X86InstructionSetFeatures(smp, has_SSSE3, has_SSE4_1, has_SSE4_2, has_AVX,
104 const bool has_SSE4_1 = false; local
106 const bool has_SSE4_1 = true; local
128 return new X86_64InstructionSetFeatures(smp, has_SSSE3, has_SSE4_1, has_SSE4_2, has_AVX, has_AVX2);
130 return new X86InstructionSetFeatures(smp, has_SSSE3, has_SSE4_1, has_SSE4_
140 bool has_SSE4_1 = false; local
258 bool has_SSE4_1 = has_SSE4_1_; local
[all...]
/art/runtime/arch/x86_64/
H A Dinstruction_set_features_x86_64.h76 X86_64InstructionSetFeatures(bool smp, bool has_SSSE3, bool has_SSE4_1, bool has_SSE4_2, argument
78 : X86InstructionSetFeatures(smp, has_SSSE3, has_SSE4_1, has_SSE4_2, has_AVX, has_AVX2) {

Completed in 173 milliseconds