Searched refs:other_value (Results 1 – 7 of 7) sorted by relevance
150 bool operator!=(ValueType other_value) const { return value != other_value; }151 bool operator!=(BaseType other_value) const {152 return static_cast<BaseType>(value) != other_value;155 bool operator==(ValueType other_value) const { return value == other_value; }156 bool operator==(BaseType other_value) const {157 return static_cast<BaseType>(value) == other_value;
58 unique_ptr<const uint64_t> other_value(provider_->var_seed()->GetValue( in TEST_F() local60 ASSERT_NE(nullptr, other_value.get()); in TEST_F()61 is_same_value = is_same_value && *other_value == *value; in TEST_F()
36 int other_value; member135 ASSERT_EQ(message.other_value, 43); in TEST_F()
1428 ValueBound other_value = ValueBound::AsValueBound(other_index); in AddComparesWithDeoptimization() local1429 if (array_length == other_array_length && base == other_value.GetInstruction()) { in AddComparesWithDeoptimization()1443 int32_t other_c = other_value.GetConstant(); in AddComparesWithDeoptimization()1545 ValueBound other_value = ValueBound::AsValueBound(other_index); in TransformLoopForDynamicBCE() local1546 int32_t other_c = other_value.GetConstant(); in TransformLoopForDynamicBCE()1547 if (array_length == other_array_length && base == other_value.GetInstruction()) { in TransformLoopForDynamicBCE()
2147 std::optional<Value> other_value = std::nullopt; in MaterializeLoopPhis() local2163 if (!other_value) { in MaterializeLoopPhis()2165 other_value = value; in MaterializeLoopPhis()2166 } else if (!other_value->IsInvalid()) { in MaterializeLoopPhis()2168 if (!value.Equals(*other_value)) { in MaterializeLoopPhis()2169 other_value = Value::Invalid(); in MaterializeLoopPhis()2176 DCHECK(other_value.has_value()); in MaterializeLoopPhis()2177 if (!other_value->IsInvalid()) { in MaterializeLoopPhis()2179 (other_value->IsDefault()) ? GetDefaultValue(type) : other_value->GetInstruction(); in MaterializeLoopPhis()
934 int64_t other_value = Int64FromConstant(other); in AllowInMinMax() local938 if (is_max ? (value >= other_value) : (value <= other_value)) { in AllowInMinMax()
546 void UpdateMaximumNumberOfOutVRegs(uint16_t other_value) { in UpdateMaximumNumberOfOutVRegs() argument547 maximum_number_of_out_vregs_ = std::max(maximum_number_of_out_vregs_, other_value); in UpdateMaximumNumberOfOutVRegs()