HomeSort by relevance Sort by last modified time
    Searched refs:newInst (Results 1 - 9 of 9) sorted by null

  /external/mesa3d/src/gallium/auxiliary/draw/
draw_pipe_aapoint.c 173 struct tgsi_full_instruction newInst;
240 newInst = tgsi_default_full_instruction();
241 newInst.Instruction.Opcode = TGSI_OPCODE_MUL;
242 newInst.Instruction.NumDstRegs = 1;
243 newInst.Dst[0].Register.File = TGSI_FILE_TEMPORARY;
244 newInst.Dst[0].Register.Index = tmp0;
245 newInst.Dst[0].Register.WriteMask = TGSI_WRITEMASK_XY;
246 newInst.Instruction.NumSrcRegs = 2;
247 newInst.Src[0].Register.File = TGSI_FILE_INPUT;
248 newInst.Src[0].Register.Index = texInput
    [all...]
draw_pipe_pstipple.c 207 struct tgsi_full_instruction newInst;
291 newInst = tgsi_default_full_instruction();
292 newInst.Instruction.Opcode = TGSI_OPCODE_MUL;
293 newInst.Instruction.NumDstRegs = 1;
294 newInst.Dst[0].Register.File = TGSI_FILE_TEMPORARY;
295 newInst.Dst[0].Register.Index = pctx->texTemp;
296 newInst.Instruction.NumSrcRegs = 2;
297 newInst.Src[0].Register.File = TGSI_FILE_INPUT;
298 newInst.Src[0].Register.Index = wincoordInput;
299 newInst.Src[1].Register.File = TGSI_FILE_IMMEDIATE
    [all...]
draw_pipe_aaline.c 274 struct tgsi_full_instruction newInst;
277 newInst = tgsi_default_full_instruction();
278 newInst.Instruction.Opcode = TGSI_OPCODE_TEX;
279 newInst.Instruction.NumDstRegs = 1;
280 newInst.Dst[0].Register.File = TGSI_FILE_TEMPORARY;
281 newInst.Dst[0].Register.Index = aactx->texTemp;
282 newInst.Instruction.NumSrcRegs = 2;
283 newInst.Instruction.Texture = TRUE;
284 newInst.Texture.Texture = TGSI_TEXTURE_2D;
285 newInst.Src[0].Register.File = TGSI_FILE_INPUT
    [all...]
  /external/mesa3d/src/mesa/program/
programopt.c 51 struct prog_instruction *newInst;
74 newInst = _mesa_alloc_instructions(newLen);
75 if (!newInst) {
83 * newInst[0] = DP4 result.position.x, mvp.row[0], vertex.position;
84 * newInst[1] = DP4 result.position.y, mvp.row[1], vertex.position;
85 * newInst[2] = DP4 result.position.z, mvp.row[2], vertex.position;
86 * newInst[3] = DP4 result.position.w, mvp.row[3], vertex.position;
88 _mesa_init_instructions(newInst, 4);
90 newInst[i].Opcode = OPCODE_DP4;
91 newInst[i].DstReg.File = PROGRAM_OUTPUT
    [all...]
program.c 580 struct prog_instruction *newInst;
594 newInst = _mesa_alloc_instructions(newLen);
595 if (!newInst) {
600 _mesa_copy_instructions(newInst, prog->Instructions, start);
603 _mesa_init_instructions(newInst + start, count);
606 _mesa_copy_instructions(newInst + start + count,
614 prog->Instructions = newInst;
629 struct prog_instruction *newInst;
643 newInst = _mesa_alloc_instructions(newLen);
644 if (!newInst) {
    [all...]
prog_instruction.c 90 struct prog_instruction *newInst;
92 newInst = (struct prog_instruction *)
97 return newInst;
  /external/mesa3d/src/gallium/auxiliary/util/
u_pstipple.c 271 struct tgsi_full_instruction newInst;
357 newInst = tgsi_default_full_instruction();
358 newInst.Instruction.Opcode = TGSI_OPCODE_MUL;
359 newInst.Instruction.NumDstRegs = 1;
360 newInst.Dst[0].Register.File = TGSI_FILE_TEMPORARY;
361 newInst.Dst[0].Register.Index = pctx->texTemp;
362 newInst.Instruction.NumSrcRegs = 2;
363 newInst.Src[0].Register.File = TGSI_FILE_INPUT;
364 newInst.Src[0].Register.Index = wincoordInput;
365 newInst.Src[1].Register.File = TGSI_FILE_IMMEDIATE
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/map/
BluetoothMapService.java 644 BluetoothMapMasInstance newInst =
650 mMasInstances.append(masId, newInst);
651 mMasInstanceMap.put(account, newInst);
655 newInst.startRfcommSocketListener();
723 BluetoothMapMasInstance newInst =
729 mMasInstances.append(masId, newInst);
730 mMasInstanceMap.put(account, newInst);
    [all...]
  /external/mesa3d/src/mesa/main/
ffvertex_prog.c 589 struct prog_instruction *newInst;
594 newInst = _mesa_alloc_instructions(p->max_inst);
595 if (!newInst) {
600 _mesa_copy_instructions(newInst,
607 p->program->Base.Instructions = newInst;
    [all...]

Completed in 827 milliseconds