Lines Matching defs:other
11 // and/or other materials provided with the distribution.
67 void CPUFeatures::Combine(const CPUFeatures& other) {
68 features_ |= other.features_;
75 void CPUFeatures::Remove(const CPUFeatures& other) {
76 features_ &= ~other.features_;
83 bool CPUFeatures::Has(const CPUFeatures& other) const {
84 return (features_ & other.features_) == other.features_;
132 const CPUFeaturesConstIterator& other) const {
134 return (cpu_features_ == other.cpu_features_) && (feature_ == other.feature_);