| /xsrc/external/mit/xterm/dist/vttests/ |
| H A D | vt52chars.pl | 39 sub move($$) { subroutine 61 &move( $y, $x ); 67 &move( 0, 28 ); 100 &move( 19, 6 ); 102 &move( 23, 0 );
|
| H A D | decsed.pl | 43 sub move($$) { subroutine 147 &move( $parm_ycoord, $parm_xcoord ); 149 &move( $parm_ycoord, $parm_xcoord ); 152 &move( $parm_ycoord + 1, $parm_xcoord ); 155 &move( $parm_ycoord - 1, $parm_xcoord );
|
| H A D | xtra-scroll.pl | 116 sub move() { subroutine 133 &move; 184 &move; 219 &move; 287 &move; 340 &move; 479 &move; 483 &move; 487 &move; 491 &move; [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/lima/ir/pp/ |
| H A D | node_to_instr.c | 43 ppir_node *move = NULL; local in function:insert_to_load_tex 57 /* Create move node */ 58 move = ppir_node_create(block, ppir_op_mov, -1 , 0); 59 if (unlikely(!move)) 62 ppir_debug("insert_load_tex: create move %d for %d\n", 63 move->index, ldtex->index); 65 ppir_alu_node *alu = ppir_node_to_alu(move); 68 ppir_node_replace_all_succ(move, ldtex); 78 ppir_node_add_dep(move, ldtex); 79 list_addtail(&move 92 ppir_node *move = NULL; local in function:insert_to_each_succ_instr 284 ppir_node *move = ppir_node_create(block, ppir_op_mov, -1, 0); local in function:ppir_do_node_to_instr [all...] |
| H A D | lower.c | 37 ppir_node *move = NULL; local in function:ppir_lower_const 40 /* const (register) can only be used in alu node, create a move 46 if (!move) { 47 move = ppir_node_create(block, ppir_op_mov, -1, 0); 48 if (unlikely(!move)) 51 ppir_debug("lower const create move %d for %d\n", 52 move->index, node->index); 54 ppir_alu_node *alu = ppir_node_to_alu(move); 62 ppir_node_replace_pred(dep, move); 63 ppir_node_replace_child(succ, node, move); 354 ppir_node *move = ppir_node_create(block, ppir_op_mov, -1, 0); local in function:ppir_lower_select [all...] |
| /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/lima/ir/pp/ |
| H A D | node_to_instr.c | 149 ppir_node *move = ppir_node_insert_mov(node); local in function:ppir_do_one_node_to_instr 150 if (unlikely(!move)) 153 ppir_src *mov_src = ppir_node_get_src(move, 0); 157 ppir_debug("node_to_instr create move %d for load %d\n", 158 move->index, node->index); 160 if (!ppir_instr_insert_node(node->instr, move)) 169 ppir_node *move = ppir_node_insert_mov(node); local in function:ppir_do_one_node_to_instr 170 if (!create_new_instr(block, move)) 173 ppir_debug("node_to_instr create move %d for const %d\n", 174 move [all...] |
| H A D | lower.c | 60 /* Create a move for everyone else */ 64 ppir_node *move = ppir_node_insert_mov(node); local in function:ppir_lower_const 65 if (unlikely(!move)) 68 ppir_debug("lower const create move %d for %d\n", 69 move->index, node->index); 76 ppir_src *mov_src = ppir_node_get_src(move, 0); 132 ppir_node *move = ppir_node_insert_mov(node); local in function:ppir_lower_load 133 if (unlikely(!move)) 136 ppir_src *mov_src = ppir_node_get_src(move, 0); 180 /* Create move nod 181 ppir_node *move = ppir_node_insert_mov(node); local in function:ppir_lower_texture 235 ppir_node *move = ppir_node_create(block, ppir_op_mov, -1, 0); local in function:ppir_lower_select [all...] |
| H A D | node.c | 604 ppir_node *move = ppir_node_create(node->block, ppir_op_mov, -1, 0); local in function:ppir_node_insert_mov_local 605 if (unlikely(!move)) 609 ppir_alu_node *alu = ppir_node_to_alu(move); 617 ppir_node_replace_all_succ(move, node); 618 ppir_node_add_dep(move, node, ppir_dep_src); 619 list_addtail(&move->list, &node->list); 623 move->is_end = true; 626 return move; 631 ppir_node *move = ppir_node_insert_mov_local(old); local in function:ppir_node_insert_mov 643 ppir_node_target_assign(src, move); [all...] |
| /xsrc/external/mit/mesa-demos/dist/src/tests/ |
| H A D | clip.c | 125 move(float dx, float dy) function in typeref:typename:void 154 move(0, +1); 157 move(0, -1); 160 move(-1, 0); 163 move(1, 0);
|
| /xsrc/external/mit/MesaLib/dist/src/amd/compiler/ |
| H A D | aco_form_hard_clauses.cpp | 48 bld.insert(std::move(instrs[start])); 59 bld.insert(std::move(instrs[i])); 102 bld.insert(std::move(instr)); 106 current_instrs[num_instrs++] = std::move(instr); 111 block.instructions = std::move(new_instructions);
|
| H A D | aco_reduce_assign.cpp | 82 block.instructions.insert(it, std::move(end)); 109 it = block.instructions.insert(it, std::move(create)); 119 std::move(create)); 149 it = block.instructions.insert(it, std::move(create)); 156 std::move(create));
|
| H A D | aco_insert_exec_mask.cpp | 415 bld.insert(std::move(startpgm)); 461 ctx.info[idx].exec[i].first = bld.insert(std::move(phi)); 472 ctx.info[idx].exec.back().first = bld.insert(std::move(phi)); 483 Temp loop_active = bld.insert(std::move(phi)); 494 /* create a parallelcopy to move the active mask to exec */ 498 bld.insert(std::move(block->instructions[i])); 574 ctx.info[idx].exec.emplace_back(bld.insert(std::move(phi)), type); 579 /* create a parallelcopy to move the live mask to exec */ 582 bld.insert(std::move(block->instructions[i])); 603 /* move curren [all...] |
| H A D | aco_spill.cpp | 88 register_demand(std::move(register_demand_)), renames(program->blocks.size()), 792 instructions.emplace_back(std::move(reload)); 800 instructions.emplace_back(std::move(block->instructions[insert_idx])); 828 instructions.emplace_back(std::move(reload)); 839 ctx.register_demand[block_idx] = std::move(reg_demand); 845 block->instructions = std::move(instructions); 862 instructions.emplace_back(std::move(phi)); 920 pred.instructions.insert(it, std::move(spill)); 976 pred.instructions.insert(it, std::move(spill)); 1036 pred.instructions.insert(it, std::move(reloa [all...] |
| /xsrc/external/mit/glu/dist/src/libnurbs/internals/ |
| H A D | mesher.h | 73 inline void move( int, int );
|
| H A D | mesher.cc | 252 Mesher::move( int x, int y ) function in class:Mesher 374 move( 0, ilast-1 ); 375 move( 1, ilast ); 410 move( itop, ilast ); 449 move( 0, ilast-1 ); 450 move( 1, ilast ); 485 move( itop, ilast );
|
| /xsrc/external/mit/MesaLib/dist/src/compiler/nir/ |
| H A D | nir_opt_move.c | 30 * This pass can move various operations just before their first use inside the 93 move(nir_block *block, nir_move_options options) function in typeref:typename:bool 100 * simply move it here. This may break SSA if it's used earlier in 102 * earlier use and move it again, further up. It eventually ends up 117 * that we don't need to move them in order for them to be correct. 118 * We could move them to encourage comparisons that are used in a phi to 157 if (move(block, options))
|
| /xsrc/external/mit/MesaLib/dist/src/gallium/frontends/clover/llvm/codegen/ |
| H A D | bitcode.cpp | 89 ::llvm::handleAllErrors(std::move(err), [&](::llvm::ErrorInfoBase &eib) { 94 return std::unique_ptr< ::llvm::Module>(std::move(*mod));
|
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/lima/ir/gp/ |
| H A D | scheduler.c | 56 * schedule a move. 58 * scheduled and not ready to schedule, schedule a move immediately 247 * the ready list, but we only schedule a move node for partially 366 gpir_alu_node *move = gpir_node_create(node->block, gpir_op_mov); local in function:schedule_create_move_node 367 if (unlikely(!move)) 370 move->children[0] = node; 371 move->num_child = 1; 373 move->node.sched.instr = -1; 374 move->node.sched.pos = -1; 375 move 399 gpir_node *move = schedule_create_move_node(node); local in function:gpir_sched_node [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/state_trackers/clover/util/ |
| H A D | factor.hpp | 74 std::move(block), d + 1, 0); 98 std::move(block), d, i + 1);
|
| /xsrc/external/mit/MesaLib/dist/src/gallium/frontends/clover/util/ |
| H A D | factor.hpp | 74 std::move(block), d + 1, 0); 98 std::move(block), d, i + 1);
|
| /xsrc/external/mit/MesaLib/dist/src/tool/pps/ |
| H A D | pps_device.cc | 82 ret.emplace_back(std::move(drm_device.value())); 115 , name {std::move(other.name)}
|
| H A D | pps_config.cc | 149 auto driver = Driver::get_driver(std::move(device)); 157 if (auto driver = Driver::get_driver(std::move(device.value()))) { 197 if (auto driver = Driver::get_driver(std::move(device.value()))) { 211 if (auto driver = Driver::get_driver(std::move(device.value()))) {
|
| /xsrc/external/mit/MesaLib/dist/src/intel/ds/ |
| H A D | intel_pps_perf.cc | 65 , devinfo {std::move(o.devinfo)} 66 , query {std::move(o.query)}
|
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/state_trackers/clover/llvm/codegen/ |
| H A D | bitcode.cpp | 101 return std::unique_ptr< ::llvm::Module>(std::move(*mod));
|
| /xsrc/external/mit/MesaLib/dist/src/gtest/src/ |
| H A D | gtest-death-test.cc | 383 statement, std::move(matcher), file, line, test); 401 matcher_(std::move(matcher)), 653 : DeathTestImpl(a_statement, std::move(matcher)), 817 : DeathTestImpl(a_statement, std::move(matcher)), 1091 : DeathTestImpl(a_statement, std::move(matcher)), child_pid_(-1) {} 1113 : ForkingDeathTest(a_statement, std::move(matcher)) {} 1169 : ForkingDeathTest(a_statement, std::move(matcher)), 1496 *test = new WindowsDeathTest(statement, std::move(matcher), file, line); 1503 *test = new FuchsiaDeathTest(statement, std::move(matcher), file, line); 1509 *test = new ExecDeathTest(statement, std::move(matche [all...] |