Searched refs:upper (Results 1 – 6 of 6) sorted by relevance
/art/compiler/optimizing/ |
D | bounds_check_elimination.cc | 305 ValueRange(ArenaAllocator* allocator, ValueBound lower, ValueBound upper) in ValueRange() argument 306 : allocator_(allocator), lower_(lower), upper_(upper) {} in ValueRange() 358 ValueBound upper = upper_.Add(constant, &overflow, &underflow); in Add() local 364 return new (allocator_) ValueRange(allocator_, lower, upper); in Add() 440 int32_t upper = std::numeric_limits<int32_t>::max(); in Narrow() local 444 upper = upper_bound.GetConstant(); in Narrow() 447 upper = max_array_len + upper_bound.GetConstant(); in Narrow() 456 int32_t last_num_in_sequence = upper; in Narrow() 459 if (upper <= initial_constant) { in Narrow() 460 last_num_in_sequence = upper; in Narrow() [all …]
|
D | induction_var_range_test.cc | 72 void BuildLoop(int32_t lower, HInstruction* upper, int32_t stride) { in BuildLoop() argument 94 condition_ = new (&allocator_) HLessThan(phi, upper); // i < u in BuildLoop() 96 condition_ = new (&allocator_) HGreaterThan(phi, upper); // i > u in BuildLoop() 647 HInstruction* upper = nullptr; in TEST_F() local 660 increment_, condition_->InputAt(0), graph_, loop_preheader_, &lower, &upper); in TEST_F() 671 ASSERT_TRUE(upper != nullptr); in TEST_F() 672 ASSERT_TRUE(upper->IsAdd()); in TEST_F() 673 ASSERT_TRUE(upper->InputAt(0)->IsSub()); in TEST_F() 674 EXPECT_TRUE(upper->InputAt(0)->InputAt(0)->IsParameterValue()); in TEST_F() 675 ASSERT_TRUE(upper->InputAt(0)->InputAt(1)->IsIntConstant()); in TEST_F() [all …]
|
D | induction_var_range.h | 106 /*out*/ HInstruction** upper); 189 /*out*/ HInstruction** upper,
|
D | induction_var_range.cc | 206 /*out*/HInstruction** upper) { in GenerateRangeCode() argument 208 if (!GenerateCode(context, instruction, graph, block, lower, upper, nullptr, &b1, &b2)) { in GenerateRangeCode() 610 /*out*/HInstruction** upper, in GenerateCode() argument 653 GenerateCode(info, trip, graph, block, upper, in_body, /* is_min */ false); in GenerateCode()
|
/art/runtime/arch/arm/ |
D | quick_entrypoints_arm.S | 560 …lsr r3, r2, LOCK_WORD_READ_BARRIER_STATE_SHIFT @ if either of the upper two bits (28-29) are s…
|
/art/tools/ |
D | cpplint.py | 1165 return re.sub(r'[-./\s]', '_', file_path_from_root).upper() + '_'
|