Searched refs:other_as_x86 (Results 1 – 1 of 1) sorted by relevance
245 const X86InstructionSetFeatures* other_as_x86 = other->AsX86InstructionSetFeatures(); in Equals() local246 return (has_SSSE3_ == other_as_x86->has_SSSE3_) && in Equals()247 (has_SSE4_1_ == other_as_x86->has_SSE4_1_) && in Equals()248 (has_SSE4_2_ == other_as_x86->has_SSE4_2_) && in Equals()249 (has_AVX_ == other_as_x86->has_AVX_) && in Equals()250 (has_AVX2_ == other_as_x86->has_AVX2_) && in Equals()251 (has_POPCNT_ == other_as_x86->has_POPCNT_); in Equals()258 const X86InstructionSetFeatures* other_as_x86 = other->AsX86InstructionSetFeatures(); in HasAtLeast() local259 return (has_SSSE3_ || !other_as_x86->has_SSSE3_) && in HasAtLeast()260 (has_SSE4_1_ || !other_as_x86->has_SSE4_1_) && in HasAtLeast()[all …]