Searched defs:lower_bound (Results 1 - 5 of 5) sorted by relevance

/art/runtime/
H A Dsafe_map.h78 iterator lower_bound(const K& k) { return map_.lower_bound(k); } function in class:art::SafeMap
79 const_iterator lower_bound(const K& k) const { return map_.lower_bound(k); } function in class:art::SafeMap
132 auto lb = lower_bound(k);
/art/compiler/optimizing/
H A Dcode_generator_mips64.cc4138 int32_t lower_bound = switch_instr->GetStartValue(); local
4146 if (IsInt<16>(-lower_bound)) {
4147 __ Addiu(temp_reg, value_reg, -lower_bound);
4149 __ LoadConst32(AT, -lower_bound);
4153 // Note: We don't check the case that index is positive while value < lower_bound, because in
4158 // Jump to successors[0] if value == lower_bound.
H A Dcode_generator_mips.cc5133 int32_t lower_bound = switch_instr->GetStartValue(); local
5141 __ Addiu32(temp_reg, value_reg, -lower_bound);
5143 // Note: We don't check the case that index is positive while value < lower_bound, because in
5148 // Jump to successors[0] if value == lower_bound.
H A Dcode_generator_x86.cc7013 int32_t lower_bound,
7024 if (lower_bound != 0) {
7026 __ cmpl(value_reg, Immediate(lower_bound));
7039 int32_t compare_to_value = lower_bound + index + 1;
7050 __ cmpl(value_reg, Immediate(lower_bound + index));
7061 int32_t lower_bound = switch_instr->GetStartValue(); local
7067 lower_bound,
7086 int32_t lower_bound = switch_instr->GetStartValue(); local
7094 lower_bound,
7106 if (lower_bound !
7012 GenPackedSwitchWithCompares(Register value_reg, int32_t lower_bound, uint32_t num_entries, HBasicBlock* switch_block, HBasicBlock* default_block) argument
[all...]
H A Dcode_generator_x86_64.cc6479 int32_t lower_bound = switch_instr->GetStartValue(); local
6496 if (lower_bound != 0) {
6498 __ cmpl(value_reg_in, Immediate(lower_bound));
6511 int32_t compare_to_value = lower_bound + index + 1;
6522 __ cmpl(value_reg_in, Immediate(static_cast<int32_t>(lower_bound + index)));
6535 if (lower_bound != 0) {
6536 __ leal(temp_reg, Address(value_reg_in, -lower_bound));

Completed in 465 milliseconds