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

/art/libartbase/base/
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
135 auto lb = lower_bound(k);
/art/compiler/optimizing/
H A Dcode_generator_mips.cc9348 int32_t lower_bound,
9354 __ Addiu32(temp_reg, value_reg, -lower_bound);
9356 // Note: We don't check the case that index is positive while value < lower_bound, because in
9361 // Jump to successors[0] if value == lower_bound.
9385 int32_t lower_bound,
9398 __ Addiu32(TMP, value_reg, -lower_bound);
9421 int32_t lower_bound = switch_instr->GetStartValue(); local
9441 lower_bound,
9447 lower_bound,
9463 int32_t lower_bound local
9347 GenPackedSwitchWithCompares(Register value_reg, int32_t lower_bound, uint32_t num_entries, HBasicBlock* switch_block, HBasicBlock* default_block) argument
9383 GenTableBasedPackedSwitch(Register value_reg, Register constant_area, int32_t lower_bound, uint32_t num_entries, HBasicBlock* switch_block, HBasicBlock* default_block) argument
[all...]
H A Dcode_generator_x86.cc7404 int32_t lower_bound,
7415 if (lower_bound != 0) {
7417 __ cmpl(value_reg, Immediate(lower_bound));
7430 int32_t compare_to_value = lower_bound + index + 1;
7441 __ cmpl(value_reg, Immediate(lower_bound + index));
7452 int32_t lower_bound = switch_instr->GetStartValue(); local
7458 lower_bound,
7477 int32_t lower_bound = switch_instr->GetStartValue(); local
7485 lower_bound,
7497 if (lower_bound !
7403 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.cc6790 int32_t lower_bound = switch_instr->GetStartValue(); local
6807 if (lower_bound != 0) {
6809 __ cmpl(value_reg_in, Immediate(lower_bound));
6822 int32_t compare_to_value = lower_bound + index + 1;
6833 __ cmpl(value_reg_in, Immediate(static_cast<int32_t>(lower_bound + index)));
6846 if (lower_bound != 0) {
6847 __ leal(temp_reg, Address(value_reg_in, -lower_bound));

Completed in 147 milliseconds