Home
last modified time | relevance | path

Searched refs:inst2 (Results 1 – 15 of 15) sorted by relevance

/external/mesa3d/src/gallium/drivers/ilo/shader/
Dtoy_legalize.c113 struct toy_inst *inst2; in toy_compiler_lower_math() local
119 inst2 = tc_MOV(tc, dst, tsrc_from(tmp)); in toy_compiler_lower_math()
120 inst2->pred_ctrl = inst->pred_ctrl; in toy_compiler_lower_math()
227 struct toy_inst *inst2; in lower_opcode_mul() local
237 inst2 = tc_add2(tc, GEN6_OPCODE_MACH, tdst_type(tdst_null(), inst_type), in lower_opcode_mul()
239 inst2->acc_wr_ctrl = true; in lower_opcode_mul()
261 struct toy_inst *inst2; in lower_opcode_mac() local
263 inst2 = tc_MUL(tc, tmp, inst->src[0], inst->src[1]); in lower_opcode_mac()
264 lower_opcode_mul(tc, inst2); in lower_opcode_mac()
308 struct toy_inst *inst2; in patch_while_jip() local
[all …]
Dtoy_legalize_ra.c351 struct toy_inst *inst2; in linear_scan_init_live_intervals() local
359 LIST_FOR_EACH_ENTRY_FROM(inst2, tc->iter_next, in linear_scan_init_live_intervals()
361 if (inst2->marker) { in linear_scan_init_live_intervals()
367 if (inst2->opcode == GEN6_OPCODE_WHILE) { in linear_scan_init_live_intervals()
Dilo_shader_gs.c395 struct toy_inst *inst2; in gs_lower_opcode_emit_vue_static() local
405 inst2 = tc_OR(tc, tdst_offset(gcc->vars.urb_write_header, 0, 2), in gs_lower_opcode_emit_vue_static()
410 inst2->exec_size = GEN6_EXECSIZE_1; in gs_lower_opcode_emit_vue_static()
411 inst2->src[0] = tsrc_rect(inst2->src[0], TOY_RECT_010); in gs_lower_opcode_emit_vue_static()
412 inst2->src[1] = tsrc_rect(inst2->src[1], TOY_RECT_010); in gs_lower_opcode_emit_vue_static()
Dilo_shader_fs.c1057 struct toy_inst *inst2; in fs_prepare_tgsi_sampling() local
1062 inst2 = tc_MOV(tc, tmp, coords[i]); in fs_prepare_tgsi_sampling()
1063 inst2->saturate = true; in fs_prepare_tgsi_sampling()
/external/python/cpython2/Lib/distutils/tests/
Dtest_install_data.py26 inst2 = os.path.join(pkg_dir, 'inst2')
30 cmd.data_files = [one, (inst2, [two])]
31 self.assertEqual(cmd.get_inputs(), [one, (inst2, [two])])
40 self.assertTrue(os.path.exists(os.path.join(inst2, rtwo)))
52 self.assertTrue(os.path.exists(os.path.join(inst2, rtwo)))
62 cmd.data_files = [one, (inst2, [two]),
70 self.assertTrue(os.path.exists(os.path.join(inst2, rtwo)))
/external/mesa3d/src/gallium/drivers/r300/compiler/
Dr500_fragprog_emit.c309 code->inst[ip].inst2 |= R500_ALPHA_SRCP_OP_1_MINUS_2A0; in emit_paired()
312 code->inst[ip].inst2 |= R500_ALPHA_SRCP_OP_A1_MINUS_A0; in emit_paired()
315 code->inst[ip].inst2 |= R500_ALPHA_SRCP_OP_A1_PLUS_A0; in emit_paired()
318 code->inst[ip].inst2 |= R500_ALPHA_SRCP_OP_1_MINUS_A0; in emit_paired()
332 code->inst[ip].inst2 |= R500_ALPHA_ADDR0(use_source(code, inst->Alpha.Src[0])); in emit_paired()
333 code->inst[ip].inst2 |= R500_ALPHA_ADDR1(use_source(code, inst->Alpha.Src[1])); in emit_paired()
334 code->inst[ip].inst2 |= R500_ALPHA_ADDR2(use_source(code, inst->Alpha.Src[2])); in emit_paired()
419 code->inst[ip].inst2 = R500_TEX_SRC_ADDR(inst->SrcReg[0].Index) in emit_tex()
474 s->Code->inst[newip].inst2 = R500_FC_OP_LOOP in emit_flowcontrol()
485 s->Code->inst[newip].inst2 = R500_FC_OP_BREAKLOOP in emit_flowcontrol()
[all …]
Dr500_fragprog.c408 fprintf(stderr,"\t2:ALPHA_ADDR 0x%08x:", code->inst[n].inst2); in r500FragmentProgramDump()
409 inst = code->inst[n].inst2; in r500FragmentProgramDump()
442 fprintf(stderr, "\t2:FC_INST 0x%08x:", code->inst[n].inst2); in r500FragmentProgramDump()
443 inst = code->inst[n].inst2; in r500FragmentProgramDump()
513 if(code->inst[n].inst2 & R500_FC_IGNORE_UNCOVERED){ in r500FragmentProgramDump()
526 inst = code->inst[n].inst2; in r500FragmentProgramDump()
Dradeon_code.h228 uint32_t inst2; member
/external/mesa3d/src/mesa/program/
Dprog_optimize.c502 struct prog_instruction *inst2 = prog->arb.Instructions + j; in _mesa_remove_extra_move_use() local
505 if (_mesa_is_flow_control_opcode(inst2->Opcode)) in _mesa_remove_extra_move_use()
509 for (arg = 0; arg < _mesa_num_inst_src_regs(inst2->Opcode); arg++) { in _mesa_remove_extra_move_use()
512 if (inst2->SrcReg[arg].File != mov->DstReg.File || in _mesa_remove_extra_move_use()
513 inst2->SrcReg[arg].Index != mov->DstReg.Index || in _mesa_remove_extra_move_use()
514 inst2->SrcReg[arg].RelAddr) in _mesa_remove_extra_move_use()
516 read_mask = get_src_arg_mask(inst2, arg, NO_MASK); in _mesa_remove_extra_move_use()
521 if (is_swizzle_regular(inst2->SrcReg[arg].Swizzle) && in _mesa_remove_extra_move_use()
525 GET_SWZ(inst2->SrcReg[arg].Swizzle, comp); in _mesa_remove_extra_move_use()
527 inst2->SrcReg[arg].Swizzle &= ~(7 << (3 * comp)); in _mesa_remove_extra_move_use()
[all …]
/external/llvm/test/ExecutionEngine/RuntimeDyld/X86/
DMachO_i386_DynNoPIC_relocations.s21 # rtdyld-check: decode_operand(inst2, 0) = bling$stub - next_pc(inst2)
22 inst2: label
/external/e2fsprogs/misc/
Dfsck.c556 struct fsck_instance *inst, *inst2, *prev; in wait_one() local
630 for (inst2 = instance_list; inst2; inst2 = inst2->next) { in wait_one()
631 if (inst2->flags & FLAG_DONE) in wait_one()
633 if (strcmp(inst2->type, "ext2") && in wait_one()
634 strcmp(inst2->type, "ext3") && in wait_one()
635 strcmp(inst2->type, "ext4") && in wait_one()
636 strcmp(inst2->type, "ext4dev")) in wait_one()
643 if (inst2->start_time < time(0)+2) { in wait_one()
646 kill(inst2->pid, SIGUSR1); in wait_one()
650 kill(inst2->pid, SIGUSR1); in wait_one()
[all …]
/external/mesa3d/src/gallium/drivers/i915/
Di915_fpc_translate.c471 struct i915_full_instruction inst2; in emit_simple_arith_swap2() local
476 inst2 = *inst; in emit_simple_arith_swap2()
477 inst2.Src[0] = inst->Src[1]; in emit_simple_arith_swap2()
478 inst2.Src[1] = inst->Src[0]; in emit_simple_arith_swap2()
480 emit_simple_arith(p, &inst2, opcode, numArgs, fs); in emit_simple_arith_swap2()
/external/mesa3d/src/mesa/state_tracker/
Dst_glsl_to_tgsi.cpp5075 glsl_to_tgsi_instruction *inst2; in merge_two_dsts() local
5084 inst2 = (glsl_to_tgsi_instruction *) inst->next; in merge_two_dsts()
5087 if (inst->src[0].file == inst2->src[0].file && in merge_two_dsts()
5088 inst->src[0].index == inst2->src[0].index && in merge_two_dsts()
5089 inst->src[0].type == inst2->src[0].type && in merge_two_dsts()
5090 inst->src[0].swizzle == inst2->src[0].swizzle) in merge_two_dsts()
5092 inst2 = (glsl_to_tgsi_instruction *) inst2->next; in merge_two_dsts()
5093 } while (inst2); in merge_two_dsts()
5095 if (!inst2) in merge_two_dsts()
5100 inst->dst[0] = inst2->dst[0]; in merge_two_dsts()
[all …]
/external/pcre/dist2/src/sljit/
DsljitNativeTILEGX_64.c630 struct jit_instr inst2 = inst_buf[2]; in update_buffer() local
666 inst_buf[2] = inst2; in update_buffer()
684 inst_buf[0] = inst2; in update_buffer()
704 inst_buf[2] = inst2; in update_buffer()
722 inst_buf[1] = inst2; in update_buffer()
/external/mesa3d/src/gallium/drivers/r300/
Dr300_fs.c277 OUT_CB(code->inst[i].inst2); in r300_emit_fs_code_to_buffer()