Searched refs:other_as_x86 (Results 1 – 1 of 1) sorted by relevance
297 const X86InstructionSetFeatures* other_as_x86 = other->AsX86InstructionSetFeatures(); in Equals() local298 return (has_SSSE3_ == other_as_x86->has_SSSE3_) && in Equals()299 (has_SSE4_1_ == other_as_x86->has_SSE4_1_) && in Equals()300 (has_SSE4_2_ == other_as_x86->has_SSE4_2_) && in Equals()301 (has_AVX_ == other_as_x86->has_AVX_) && in Equals()302 (has_AVX2_ == other_as_x86->has_AVX2_) && in Equals()303 (has_POPCNT_ == other_as_x86->has_POPCNT_); in Equals()310 const X86InstructionSetFeatures* other_as_x86 = other->AsX86InstructionSetFeatures(); in HasAtLeast() local311 return (has_SSSE3_ || !other_as_x86->has_SSSE3_) && in HasAtLeast()312 (has_SSE4_1_ || !other_as_x86->has_SSE4_1_) && in HasAtLeast()[all …]