Searched refs:newInst (Results 1 - 8 of 8) sorted by relevance

/xsrc/external/mit/MesaLib.old/dist/src/mesa/program/
H A Dprogramopt.c51 struct prog_instruction *newInst; local in function:insert_mvp_dp4_code
73 newInst = rzalloc_array(vprog, struct prog_instruction, newLen);
74 if (!newInst) {
82 * newInst[0] = DP4 result.position.x, mvp.row[0], vertex.position;
83 * newInst[1] = DP4 result.position.y, mvp.row[1], vertex.position;
84 * newInst[2] = DP4 result.position.z, mvp.row[2], vertex.position;
85 * newInst[3] = DP4 result.position.w, mvp.row[3], vertex.position;
87 _mesa_init_instructions(newInst, 4);
89 newInst[i].Opcode = OPCODE_DP4;
90 newInst[
118 struct prog_instruction *newInst; local in function:insert_mvp_mad_code
254 struct prog_instruction *newInst, *inst; local in function:_mesa_append_fog_code
[all...]
H A Dprogram.c363 struct prog_instruction *newInst; local in function:_mesa_insert_instructions
377 newInst = rzalloc_array(prog, struct prog_instruction, newLen);
378 if (!newInst) {
383 _mesa_copy_instructions(newInst, prog->arb.Instructions, start);
386 _mesa_init_instructions(newInst + start, count);
389 _mesa_copy_instructions(newInst + start + count,
397 prog->arb.Instructions = newInst;
413 struct prog_instruction *newInst; local in function:_mesa_delete_instructions
427 newInst = rzalloc_array(mem_ctx, struct prog_instruction, newLen);
428 if (!newInst) {
[all...]
/xsrc/external/mit/MesaLib/dist/src/mesa/program/
H A Dprogramopt.c51 struct prog_instruction *newInst; local in function:insert_mvp_dp4_code
73 newInst = rzalloc_array(vprog, struct prog_instruction, newLen);
74 if (!newInst) {
82 * newInst[0] = DP4 result.position.x, mvp.row[0], vertex.position;
83 * newInst[1] = DP4 result.position.y, mvp.row[1], vertex.position;
84 * newInst[2] = DP4 result.position.z, mvp.row[2], vertex.position;
85 * newInst[3] = DP4 result.position.w, mvp.row[3], vertex.position;
87 _mesa_init_instructions(newInst, 4);
89 newInst[i].Opcode = OPCODE_DP4;
90 newInst[
118 struct prog_instruction *newInst; local in function:insert_mvp_mad_code
254 struct prog_instruction *newInst, *inst; local in function:_mesa_append_fog_code
[all...]
H A Dprogram.c353 struct prog_instruction *newInst; local in function:_mesa_insert_instructions
367 newInst = rzalloc_array(prog, struct prog_instruction, newLen);
368 if (!newInst) {
373 _mesa_copy_instructions(newInst, prog->arb.Instructions, start);
376 _mesa_init_instructions(newInst + start, count);
379 _mesa_copy_instructions(newInst + start + count,
387 prog->arb.Instructions = newInst;
403 struct prog_instruction *newInst; local in function:_mesa_delete_instructions
417 newInst = rzalloc_array(mem_ctx, struct prog_instruction, newLen);
418 if (!newInst) {
[all...]
/xsrc/external/mit/MesaLib.old/dist/src/gallium/auxiliary/draw/
H A Ddraw_pipe_aapoint.c171 struct tgsi_full_instruction newInst; local in function:aa_transform_prolog
255 newInst = tgsi_default_full_instruction();
256 newInst.Instruction.Opcode = TGSI_OPCODE_RCP;
257 newInst.Instruction.NumDstRegs = 1;
258 newInst.Dst[0].Register.File = TGSI_FILE_TEMPORARY;
259 newInst.Dst[0].Register.Index = tmp0;
260 newInst.Dst[0].Register.WriteMask = TGSI_WRITEMASK_Z;
261 newInst.Instruction.NumSrcRegs = 1;
262 newInst.Src[0].Register.File = TGSI_FILE_TEMPORARY;
263 newInst
[all...]
/xsrc/external/mit/MesaLib/dist/src/gallium/auxiliary/draw/
H A Ddraw_pipe_aapoint.c173 struct tgsi_full_instruction newInst; local in function:aa_transform_prolog
257 newInst = tgsi_default_full_instruction();
258 newInst.Instruction.Opcode = TGSI_OPCODE_RCP;
259 newInst.Instruction.NumDstRegs = 1;
260 newInst.Dst[0].Register.File = TGSI_FILE_TEMPORARY;
261 newInst.Dst[0].Register.Index = tmp0;
262 newInst.Dst[0].Register.WriteMask = TGSI_WRITEMASK_Z;
263 newInst.Instruction.NumSrcRegs = 1;
264 newInst.Src[0].Register.File = TGSI_FILE_TEMPORARY;
265 newInst
[all...]
/xsrc/external/mit/MesaLib.old/dist/src/mesa/main/
H A Dffvertex_prog.c578 struct prog_instruction *newInst; local in function:emit_op3fn
583 newInst =
585 if (!newInst) {
590 _mesa_copy_instructions(newInst, p->program->arb.Instructions,
595 p->program->arb.Instructions = newInst;
/xsrc/external/mit/MesaLib/dist/src/mesa/main/
H A Dffvertex_prog.c575 struct prog_instruction *newInst; local in function:emit_op3fn
580 newInst =
582 if (!newInst) {
587 _mesa_copy_instructions(newInst, p->program->arb.Instructions,
592 p->program->arb.Instructions = newInst;

Completed in 10 milliseconds