Home
last modified time | relevance | path

Searched refs:first_reg (Results 1 – 3 of 3) sorted by relevance

/third_party/boost/boost/move/algo/detail/
Dadaptive_sort_merge.hpp929 , RandIt first_reg in op_merge_blocks_with_irreg() argument
942 …size_type next_key_idx = find_next_block(key_first, key_comp, first_reg, l_block, min_check, max_c… in op_merge_blocks_with_irreg()
944 RandIt const last_reg = first_reg + l_block; in op_merge_blocks_with_irreg()
945 RandIt first_min = first_reg + next_key_idx*l_block; in op_merge_blocks_with_irreg()
948 BOOST_MOVE_ADAPTIVE_SORT_INVARIANT(boost::movelib::is_sorted(first_reg, last_reg, comp)); in op_merge_blocks_with_irreg()
950 BOOST_MOVE_ADAPTIVE_SORT_INVARIANT((!next_key_idx || !comp(*first_reg, *first_min ))); in op_merge_blocks_with_irreg()
953 …dest = next_key_idx ? op_partial_merge_and_swap(first_irr, last_irr, first_reg, last_reg, first_mi… in op_merge_blocks_with_irreg()
954 … : op_partial_merge (first_irr, last_irr, first_reg, last_reg, dest, comp, op, is_stable); in op_merge_blocks_with_irreg()
957 if(first_reg == dest){ in op_merge_blocks_with_irreg()
958 dest = next_key_idx ? ::boost::adl_move_swap_ranges(first_min, last_min, first_reg) in op_merge_blocks_with_irreg()
[all …]
/third_party/mesa3d/src/gallium/auxiliary/tgsi/
Dtgsi_dump.c555 boolean first_reg = TRUE; in iter_instruction() local
578 if (!first_reg) in iter_instruction()
585 first_reg = FALSE; in iter_instruction()
591 if (!first_reg) in iter_instruction()
616 first_reg = FALSE; in iter_instruction()
/third_party/mesa3d/src/amd/compiler/
Daco_register_allocation.cpp446 const auto& first_reg = reg_and_var.first; in print_regs() local
454 printf("= %c[%d", reg_char, first_reg.reg() - regs.lo()); in print_regs()
455 PhysReg last_reg = first_reg.advance(size_id.first - 1); in print_regs()
456 if (first_reg.reg() != last_reg.reg()) { in print_regs()
457 assert(first_reg.byte() == 0 && last_reg.byte() == 3); in print_regs()
461 if (first_reg.byte() != 0 || last_reg.byte() != 3) { in print_regs()
462 printf("[%d:%d]", first_reg.byte() * 8, (last_reg.byte() + 1) * 8); in print_regs()