Searched refs:other_as_x86 (Results 1 – 1 of 1) sorted by relevance
239 const X86InstructionSetFeatures* other_as_x86 = other->AsX86InstructionSetFeatures(); in Equals() local240 return (has_SSSE3_ == other_as_x86->has_SSSE3_) && in Equals()241 (has_SSE4_1_ == other_as_x86->has_SSE4_1_) && in Equals()242 (has_SSE4_2_ == other_as_x86->has_SSE4_2_) && in Equals()243 (has_AVX_ == other_as_x86->has_AVX_) && in Equals()244 (has_AVX2_ == other_as_x86->has_AVX2_) && in Equals()245 (has_POPCNT_ == other_as_x86->has_POPCNT_); in Equals()252 const X86InstructionSetFeatures* other_as_x86 = other->AsX86InstructionSetFeatures(); in HasAtLeast() local253 return (has_SSSE3_ || !other_as_x86->has_SSSE3_) && in HasAtLeast()254 (has_SSE4_1_ || !other_as_x86->has_SSE4_1_) && in HasAtLeast()[all …]