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

1 2

  /external/chromium_org/third_party/mesa/src/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/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/chromium_org/third_party/mesa/src/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;
nvvertparse.c     [all...]
nvfragparse.c     [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;
nvvertparse.c     [all...]
nvfragparse.c     [all...]
  /external/chromium_org/third_party/mesa/src/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...]
  /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...]
  /external/llvm/lib/Transforms/Utils/
CloneFunction.cpp 49 Instruction *NewInst = II->clone();
51 NewInst->setName(II->getName()+NameSuffix);
52 NewBB->getInstList().push_back(NewInst);
53 VMap[II] = NewInst; // Add instruction map to value.
264 Instruction *NewInst = II->clone();
268 if (!isa<PHINode>(NewInst)) {
269 RemapInstruction(NewInst, VMap,
275 if (Value *V = SimplifyInstruction(NewInst, TD)) {
282 delete NewInst;
288 NewInst->setName(II->getName()+NameSuffix)
    [all...]
  /dalvik/vm/compiler/codegen/arm/
Assemble.cpp     [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineMulDivRem.cpp     [all...]
  /external/chromium_org/third_party/mesa/src/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...]
  /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...]
  /external/llvm/docs/
ProgrammersManual.rst     [all...]
  /external/llvm/lib/Transforms/Scalar/
LoopUnswitch.cpp 329 const SwitchInst *NewInst = cast_or_null<SwitchInst>(NewI);
330 assert(NewInst && "All instructions that are in SrcBB must be in VMap.");
332 NewLoopProps.UnswitchedVals[NewInst] = OldLoopProps.UnswitchedVals[OldInst];
    [all...]

Completed in 528 milliseconds

1 2