Searched defs:lower_bound (Results 1 - 3 of 3) 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_x86.cc7412 int32_t lower_bound,
7423 if (lower_bound != 0) {
7425 __ cmpl(value_reg, Immediate(lower_bound));
7438 int32_t compare_to_value = lower_bound + index + 1;
7449 __ cmpl(value_reg, Immediate(lower_bound + index));
7460 int32_t lower_bound = switch_instr->GetStartValue(); local
7466 lower_bound,
7485 int32_t lower_bound = switch_instr->GetStartValue(); local
7493 lower_bound,
7505 if (lower_bound !
7411 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.cc6781 int32_t lower_bound = switch_instr->GetStartValue(); local
6798 if (lower_bound != 0) {
6800 __ cmpl(value_reg_in, Immediate(lower_bound));
6813 int32_t compare_to_value = lower_bound + index + 1;
6824 __ cmpl(value_reg_in, Immediate(static_cast<int32_t>(lower_bound + index)));
6837 if (lower_bound != 0) {
6838 __ leal(temp_reg, Address(value_reg_in, -lower_bound));

Completed in 47 milliseconds