HomeSort by relevance Sort by last modified time
    Searched refs:targ (Results 26 - 50 of 142) sorted by null

12 3 4 5 6

  /external/mesa3d/src/gallium/drivers/nv50/codegen/
nv50_ir_target.cpp 136 void Target::destroy(Target *targ)
138 delete targ;
141 CodeEmitter::CodeEmitter(const Target *target) : targ(target)
436 nv50_ir::Target *targ = nv50_ir::Target::create(chipset);
437 targ->getBuiltinCode(code, size);
438 nv50_ir::Target::destroy(targ);
nv50_ir.cpp 952 FlowInstruction::FlowInstruction(Function *fn, operation op, void *targ)
956 target.fn = reinterpret_cast<Function *>(targ);
958 target.bb = reinterpret_cast<BasicBlock *>(targ);
966 terminator = targ ? 1 : 0;
1114 nv50_ir::Target *targ = nv50_ir::Target::create(info->target); local
1115 if (!targ)
1118 nv50_ir::Program *prog = new nv50_ir::Program(type, targ);
1143 targ->parseDriverInfo(info);
1179 nv50_ir::Target::destroy(targ);
nv50_ir.h 741 Target(TexTarget targ = TEX_TARGET_2D) : target(targ) { }
750 Target& operator=(TexTarget targ)
752 assert(targ < TEX_TARGET_COUNT);
756 inline bool operator==(TexTarget targ) const { return target == targ; }
782 inline void setTexture(Target targ, uint8_t r, uint8_t s)
786 tex.target = targ;
1023 Program(Type type, Target *targ);
nv50_ir_build_util.cpp 245 BuildUtil::mkTex(operation op, TexTarget targ, uint8_t tic, uint8_t tsc,
255 tex->setTexture(targ, tic, tsc);
307 BuildUtil::mkFlow(operation op, void *targ, CondCode cc, Value *pred)
309 FlowInstruction *insn = new_FlowInstruction(func, op, targ);
nv50_ir_target.h 87 const Target *targ; member in class:nv50_ir::CodeEmitter
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nvc0/
nvc0_state.c 875 struct nvc0_so_target *targ = MALLOC_STRUCT(nvc0_so_target); local
876 if (!targ)
879 targ->pq = pipe->create_query(pipe, NVC0_QUERY_TFB_BUFFER_OFFSET);
880 if (!targ->pq) {
881 FREE(targ);
884 targ->clean = TRUE;
886 targ->pipe.buffer_size = size;
887 targ->pipe.buffer_offset = offset;
888 targ->pipe.context = pipe;
889 targ->pipe.buffer = NULL
900 struct nvc0_so_target *targ = nvc0_so_target(ptarg); local
    [all...]
nvc0_push.c 345 struct nvc0_so_target *targ; local
346 targ = nvc0_so_target(info->count_from_stream_output);
347 pipe->get_query_result(pipe, targ->pq, TRUE, (void*)&vert_count);
348 vert_count /= targ->stride;
  /external/mesa3d/src/gallium/drivers/nvc0/
nvc0_state.c 875 struct nvc0_so_target *targ = MALLOC_STRUCT(nvc0_so_target); local
876 if (!targ)
879 targ->pq = pipe->create_query(pipe, NVC0_QUERY_TFB_BUFFER_OFFSET);
880 if (!targ->pq) {
881 FREE(targ);
884 targ->clean = TRUE;
886 targ->pipe.buffer_size = size;
887 targ->pipe.buffer_offset = offset;
888 targ->pipe.context = pipe;
889 targ->pipe.buffer = NULL
900 struct nvc0_so_target *targ = nvc0_so_target(ptarg); local
    [all...]
nvc0_push.c 345 struct nvc0_so_target *targ; local
346 targ = nvc0_so_target(info->count_from_stream_output);
347 pipe->get_query_result(pipe, targ->pq, TRUE, (void*)&vert_count);
348 vert_count /= targ->stride;
  /dalvik/vm/analysis/
DexVerify.cpp 612 u4 targ; local
673 for (targ = 1; targ < switchCount; targ++) {
674 s4 key = (s4) switchInsns[offsetToKeys + targ*2] |
675 (s4) (switchInsns[offsetToKeys + targ*2 +1] << 16);
687 for (targ = 0; targ < switchCount; targ++) {
688 offset = (s4) switchInsns[offsetToTargets + targ*2]
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/
nv50_shader_state.c 586 struct nv50_so_target *targ = nv50_so_target(nv50->so_target[i]); local
587 struct nv04_resource *buf = nv04_resource(targ->pipe.buffer);
591 if (n == 4 && !targ->clean)
592 nv84_query_fifo_wait(push, targ->pq);
594 PUSH_DATAh(push, buf->address + targ->pipe.buffer_offset);
595 PUSH_DATA (push, buf->address + targ->pipe.buffer_offset);
598 PUSH_DATA(push, targ->pipe.buffer_size);
601 if (!targ->clean) {
602 assert(targ->pq);
603 nv50_query_pushbuf_submit(push, targ->pq, 0x4)
    [all...]
nv50_query.c 370 struct nv50_so_target *targ = nv50_so_target(ptarg); local
379 nv50_query(targ->pq)->index = index;
380 nv50_query_end(pipe, targ->pq);
  /external/mesa3d/src/gallium/drivers/nv50/
nv50_shader_state.c 586 struct nv50_so_target *targ = nv50_so_target(nv50->so_target[i]); local
587 struct nv04_resource *buf = nv04_resource(targ->pipe.buffer);
591 if (n == 4 && !targ->clean)
592 nv84_query_fifo_wait(push, targ->pq);
594 PUSH_DATAh(push, buf->address + targ->pipe.buffer_offset);
595 PUSH_DATA (push, buf->address + targ->pipe.buffer_offset);
598 PUSH_DATA(push, targ->pipe.buffer_size);
601 if (!targ->clean) {
602 assert(targ->pq);
603 nv50_query_pushbuf_submit(push, targ->pq, 0x4)
    [all...]
nv50_query.c 370 struct nv50_so_target *targ = nv50_so_target(ptarg); local
379 nv50_query(targ->pq)->index = index;
380 nv50_query_end(pipe, targ->pq);
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/codegen/
nv50_ir.cpp 952 FlowInstruction::FlowInstruction(Function *fn, operation op, void *targ)
956 target.fn = reinterpret_cast<Function *>(targ);
958 target.bb = reinterpret_cast<BasicBlock *>(targ);
966 terminator = targ ? 1 : 0;
1114 nv50_ir::Target *targ = nv50_ir::Target::create(info->target); local
1115 if (!targ)
1118 nv50_ir::Program *prog = new nv50_ir::Program(type, targ);
1143 targ->parseDriverInfo(info);
1179 nv50_ir::Target::destroy(targ);
nv50_ir.h 741 Target(TexTarget targ = TEX_TARGET_2D) : target(targ) { }
750 Target& operator=(TexTarget targ)
752 assert(targ < TEX_TARGET_COUNT);
756 inline bool operator==(TexTarget targ) const { return target == targ; }
782 inline void setTexture(Target targ, uint8_t r, uint8_t s)
786 tex.target = targ;
1023 Program(Type type, Target *targ);
nv50_ir_build_util.cpp 245 BuildUtil::mkTex(operation op, TexTarget targ, uint8_t tic, uint8_t tsc,
255 tex->setTexture(targ, tic, tsc);
307 BuildUtil::mkFlow(operation op, void *targ, CondCode cc, Value *pred)
309 FlowInstruction *insn = new_FlowInstruction(func, op, targ);
nv50_ir_target.h 87 const Target *targ; member in class:nv50_ir::CodeEmitter
  /external/antlr/antlr-3.4/tool/src/main/antlr3/org/antlr/grammar/v3/
DefineGrammarItemsWalker.g 507 | ^( t=TOKEN_REF (targ=ARG_ACTION )? )
509 if ( $targ != null )
511 $targ.outerAltNum = this.outerAltNum;
512 trackInlineAction($targ);
ANTLRTreePrinter.g 437 (targ=ARG_ACTION {out("["+$targ.toString()+"]");} )?
  /external/qemu/
qemu-char.c 1221 int *targ = (int *)arg; local
1223 *targ = 0;
1225 *targ |= CHR_TIOCM_CTS;
1227 *targ |= CHR_TIOCM_CAR;
1229 *targ |= CHR_TIOCM_DSR;
1231 *targ |= CHR_TIOCM_RI;
1233 *targ |= CHR_TIOCM_DTR;
1235 *targ |= CHR_TIOCM_RTS;
1241 int targ = 0; local
1242 ioctl(s->fd_in, TIOCMGET, &targ);
    [all...]
  /dalvik/dx/src/com/android/dx/cf/code/
Ropper.java 823 int targ = one.getHandlerPc(); local
830 mergeAndWorkAsNecessary(targ, block.getLabel(),
834 Hex.u2(targ));
843 Type already = catchTypes[targ];
845 catchTypes[targ] = exceptionClass.getClassType();
847 catchTypes[targ] = Type.OBJECT;
852 * label getExceptionSetupLabel(targ).
854 newSucc.add(getExceptionSetupLabel(targ));
    [all...]
  /external/chromium_org/third_party/ply/
yacc.py 396 targ = symstack[-plen-1:]
397 targ[0] = sym
401 t1 = targ[1]
404 t1 = targ[-1]
415 pslice.slice = targ
449 targ = [ sym ]
456 pslice.slice = targ
685 targ = symstack[-plen-1:]
686 targ[0] = sym
690 t1 = targ[1
    [all...]
  /art/test/046-reflect/src/
Main.java 355 Target targ; local
361 targ = cons.newInstance(args);
362 targ.myMethod(17);
  /dalvik/tests/046-reflect/src/
Main.java 338 Target targ; local
344 targ = cons.newInstance(args);
345 targ.myMethod(17);

Completed in 1428 milliseconds

12 3 4 5 6