HomeSort by relevance Sort by last modified time
    Searched full:omod (Results 1 - 25 of 79) sorted by null

1 2 3 4

  /external/mesa3d/src/gallium/drivers/r300/compiler/tests/
radeon_compiler_optimize_tests.c 73 if (inst_list[0]->U.I.Omod != RC_OMOD_MUL_2 ||
74 inst_list[1]->U.I.Omod != RC_OMOD_MUL_2 ||
  /external/mesa3d/src/gallium/drivers/r300/compiler/
r300_fragprog_emit.c 284 if (inst->RGB.Omod) {
285 if (inst->RGB.Omod == RC_OMOD_DISABLE) {
289 (inst->RGB.Omod << R300_ALU_OUTC_MOD_SHIFT);
291 if (inst->Alpha.Omod) {
292 if (inst->Alpha.Omod == RC_OMOD_DISABLE) {
296 (inst->Alpha.Omod << R300_ALU_OUTC_MOD_SHIFT);
radeon_pair_translate.c 315 pair->RGB.Omod = inst->Omod;
318 pair->Alpha.Omod = inst->Omod;
radeon_program_pair.h 79 unsigned int Omod:3;
radeon_compiler.c 395 if (tmp->U.P.RGB.Omod != RC_OMOD_MUL_1 &&
396 tmp->U.P.RGB.Omod != RC_OMOD_DISABLE) {
399 if (tmp->U.P.Alpha.Omod != RC_OMOD_MUL_1 &&
400 tmp->U.P.Alpha.Omod != RC_OMOD_DISABLE) {
443 "~%4u OMOD Operations\n"
radeon_program_print.c 301 print_omod_op(f, inst->U.I.Omod);
402 print_omod_op(f, inst->RGB.Omod);
437 print_omod_op(f, inst->Alpha.Omod);
radeon_program.h 125 rc_omod_op Omod;
radeon_pair_schedule.c 662 rgb->Alpha.Omod = alpha->Alpha.Omod;
949 pair_inst->Alpha.Omod = pair_inst->RGB.Omod;
    [all...]
  /external/llvm/lib/Target/AMDGPU/
VIInstrFormats.td 123 bits<2> omod;
134 let Inst{60-59} = omod;
163 bits<2> omod;
174 let Inst{60-59} = omod;
AMDGPUISelDAGToDAG.cpp 136 SDValue &Clamp, SDValue &Omod) const;
138 SDValue &Clamp, SDValue &Omod) const;
141 SDValue &Omod) const;
144 SDValue &Omod) const;
632 // omod
    [all...]
R600InstrFormats.td 128 bits<2> omod;
135 let Word1{6-5} = omod;
190 let Inst{39-38} = omod;
198 let Inst{38-37} = omod;
SIInstrFormats.td 406 bits<2> omod;
417 let Inst{60-59} = omod;
446 bits<2> omod;
455 let Inst{60-59} = omod;
SIInstrInfo.td 547 def omod : NamedOperandU32<"OModSI", NamedMatchClass<"OModSI">>;
    [all...]
R600Instructions.td 51 def OMOD : InstFlag <"printOMOD">;
96 (ins WRITE:$write, OMOD:$omod, REL:$dst_rel, CLAMP:$clamp,
101 "$clamp $last $dst$write$dst_rel$omod, "
138 OMOD:$omod, REL:$dst_rel, CLAMP:$clamp,
144 "$clamp $last $update_exec_mask$update_pred$dst$write$dst_rel$omod, "
972 OMOD:$omod_X, REL:$dst_rel_X, CLAMP:$clamp_X,
978 OMOD:$omod_Y, REL:$dst_rel_Y, CLAMP:$clamp_Y,
984 OMOD:$omod_Z, REL:$dst_rel_Z, CLAMP:$clamp_Z
    [all...]
  /external/mesa3d/src/gallium/drivers/r600/
r700_asm.c 70 S_SQ_ALU_WORD1_OP2_OMOD(alu->omod) |
119 alu->omod = G_SQ_ALU_WORD1_OP2_OMOD(word1);
r600_asm.h 61 unsigned omod; member in struct:r600_bytecode_alu
eg_asm.c 286 S_SQ_ALU_WORD1_OP2_OMOD(alu->omod) |
  /external/mesa3d/src/gallium/drivers/r600/sb/
sb_bc_builder.cpp 428 .OMOD(bc.omod)
445 .OMOD(bc.omod)
459 .EXECUTE_MASK_OP(bc.omod)
474 .OMOD(bc.omod)
sb_expr.cpp 335 if (bc.omod)
336 v = v.f * omod_coeff[bc.omod - 1];
367 if (b0.clamp != b1.clamp || b0.omod != b1.omod)
395 if (!sd->bc.clamp && !sd->bc.omod && !sd->bc.src[0].abs &&
405 && n.bc.clamp == 0 && n.bc.omod == 0
485 !n->bc.src[1].abs && !n->bc.src[0].abs && !d0->bc.omod &&
486 !d0->bc.clamp && !n->bc.omod &&
522 !n->bc.src[0].abs && !n->bc.src[1].abs && !d1->bc.omod &&
523 !d1->bc.clamp && !n->bc.omod &
    [all...]
sb_bc_fmt_def.inc 269 BC_FIELD(ALU_WORD1_OP2, OMOD, OMOD, 7, 6)
284 BC_FIELD(ALU_WORD1_OP2, OMOD, OMOD, 6, 5)
299 BC_FIELD(ALU_WORD1_OP2_MOVA, OMOD, OMOD, 6, 5)
sb_dump.cpp 411 if (n->bc.omod) {
413 sblog << omod_str[n->bc.omod];
sb_peephole.cpp 219 if (d->bc.omod)
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/
opnames.go 88 OMOD: "MOD",
  /prebuilts/go/linux-x86/src/cmd/compile/internal/gc/
opnames.go 88 OMOD: "MOD",
  /external/mesa3d/docs/relnotes/
9.1.2.html 232 <li>r300g: Fix bug in OMOD optimization</li>

Completed in 689 milliseconds

1 2 3 4