Home
last modified time | relevance | path

Searched refs:other_value (Results 1 – 5 of 5) sorted by relevance

/art/runtime/base/
Dmessage_queue_test.cc42 int other_value; member
143 ASSERT_EQ(message.other_value, 43); in TEST_F()
/art/compiler/optimizing/
Dload_store_elimination.cc2120 std::optional<Value> other_value = std::nullopt; in MaterializeLoopPhis() local
2134 if (!other_value) { in MaterializeLoopPhis()
2136 other_value = value; in MaterializeLoopPhis()
2137 } else if (!other_value->IsInvalid()) { in MaterializeLoopPhis()
2139 if (!value.Equals(*other_value)) { in MaterializeLoopPhis()
2140 other_value = Value::Invalid(); in MaterializeLoopPhis()
2147 DCHECK(other_value.has_value()); in MaterializeLoopPhis()
2148 if (!other_value->IsInvalid()) { in MaterializeLoopPhis()
2150 (other_value->IsDefault()) ? GetDefaultValue(type) : other_value->GetInstruction(); in MaterializeLoopPhis()
Dbounds_check_elimination.cc1440 ValueBound other_value = ValueBound::AsValueBound(other_index); in AddComparesWithDeoptimization() local
1441 if (array_length == other_array_length && base == other_value.GetInstruction()) { in AddComparesWithDeoptimization()
1455 int32_t other_c = other_value.GetConstant(); in AddComparesWithDeoptimization()
1558 ValueBound other_value = ValueBound::AsValueBound(other_index); in TransformLoopForDynamicBCE() local
1559 int32_t other_c = other_value.GetConstant(); in TransformLoopForDynamicBCE()
1560 if (array_length == other_array_length && base == other_value.GetInstruction()) { in TransformLoopForDynamicBCE()
Dinstruction_simplifier.cc1065 int64_t other_value = Int64FromConstant(other); in AllowInMinMax() local
1069 if (is_max ? (value >= other_value) : (value <= other_value)) { in AllowInMinMax()
Dnodes.h560 void UpdateMaximumNumberOfOutVRegs(uint16_t other_value) { in UpdateMaximumNumberOfOutVRegs() argument
561 maximum_number_of_out_vregs_ = std::max(maximum_number_of_out_vregs_, other_value); in UpdateMaximumNumberOfOutVRegs()