Searched refs:CpuFeature (Results 1 – 5 of 5) sorted by relevance
194 bool IsEnabled(CpuFeature f) { in IsEnabled()197 void EnableCpuFeature(CpuFeature f) { in EnableCpuFeature()343 CpuFeatureScope(AssemblerBase* assembler, CpuFeature f,351 CpuFeatureScope(AssemblerBase* assembler, CpuFeature f,382 static bool IsSupported(CpuFeature f) { in IsSupported()
132 CpuFeatureScope::CpuFeatureScope(AssemblerBase* assembler, CpuFeature f, in CpuFeatureScope()
794 enum CpuFeature { enum
362 explicit Features(CpuFeature f) : bits_(1u << f) {} in Features()363 Features(CpuFeature f1, CpuFeature f2) : bits_((1u << f1) | (1u << f2)) {} in Features()365 bool Contains(CpuFeature f) const { return (bits_ & (1u << f)); } in Contains()371 bool IsSupported(CpuFeature feature) const { in IsSupported()
108 (CpuFeatures::IsSupported(static_cast<CpuFeature>(check)))