HomeSort by relevance Sort by last modified time
    Searched refs:emit (Results 1 - 25 of 1082) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/mesa3d/src/mesa/drivers/dri/nouveau/
nv20_driver.h 55 nv20_emit_framebuffer(struct gl_context *ctx, int emit);
58 nv20_emit_viewport(struct gl_context *ctx, int emit);
62 nv20_emit_point_mode(struct gl_context *ctx, int emit);
66 nv20_emit_logic_opcode(struct gl_context *ctx, int emit);
70 nv20_emit_tex_env(struct gl_context *ctx, int emit);
73 nv20_emit_frag(struct gl_context *ctx, int emit);
77 nv20_emit_tex_gen(struct gl_context *ctx, int emit);
80 nv20_emit_tex_mat(struct gl_context *ctx, int emit);
83 nv20_emit_tex_obj(struct gl_context *ctx, int emit);
86 nv20_emit_tex_shader(struct gl_context *ctx, int emit);
    [all...]
nv10_driver.h 61 nv10_emit_framebuffer(struct gl_context *ctx, int emit);
64 nv10_emit_render_mode(struct gl_context *ctx, int emit);
67 nv10_emit_scissor(struct gl_context *ctx, int emit);
70 nv10_emit_viewport(struct gl_context *ctx, int emit);
73 nv10_emit_zclear(struct gl_context *ctx, int emit);
77 nv10_emit_cull_face(struct gl_context *ctx, int emit);
80 nv10_emit_front_face(struct gl_context *ctx, int emit);
83 nv10_emit_line_mode(struct gl_context *ctx, int emit);
86 nv10_emit_line_stipple(struct gl_context *ctx, int emit);
89 nv10_emit_point_mode(struct gl_context *ctx, int emit);
    [all...]
nv04_driver.h 67 nv04_emit_framebuffer(struct gl_context *ctx, int emit);
70 nv04_emit_scissor(struct gl_context *ctx, int emit);
74 nv04_defer_control(struct gl_context *ctx, int emit);
77 nv04_emit_control(struct gl_context *ctx, int emit);
80 nv04_defer_blend(struct gl_context *ctx, int emit);
83 nv04_emit_blend(struct gl_context *ctx, int emit);
87 nv04_emit_tex_env(struct gl_context *ctx, int emit);
91 nv04_emit_tex_obj(struct gl_context *ctx, int emit);
  /external/mesa3d/src/gallium/drivers/svga/
svga_tgsi_decl_sm30.c 39 translate_vs_ps_semantic(struct svga_shader_emitter *emit,
67 *idx = svga_remap_generic_index(emit->key.generic_remap_table,
94 * Emit a PS input (or VS depth/fog output) register declaration.
96 * index = 3, we'll emit "dcl_texcoord3 v1".
99 emit_decl(struct svga_shader_emitter *emit,
120 return (emit_instruction(emit, opcode) &&
121 svga_shader_emit_dwords( emit, dcl.values, ARRAY_SIZE(dcl.values)));
126 * Emit declaration for PS front/back-face input register.
129 emit_vface_decl(struct svga_shader_emitter *emit)
131 if (!emit->emitted_vface)
    [all...]
svga_tgsi.c 55 svga_shader_expand(struct svga_shader_emitter *emit)
58 unsigned newsize = emit->size * 2;
60 if (emit->buf != err_buf)
61 new_buf = REALLOC(emit->buf, emit->size, newsize);
66 emit->ptr = err_buf;
67 emit->buf = err_buf;
68 emit->size = sizeof(err_buf);
72 emit->size = newsize;
73 emit->ptr = new_buf + (emit->ptr - emit->buf)
174 struct svga_shader_emitter emit; local
    [all...]
svga_tgsi_vgpu10.c 78 * generate extra code to emit clip distances.
226 emit_post_helpers(struct svga_shader_emitter_v10 *emit);
229 emit_vertex(struct svga_shader_emitter_v10 *emit,
235 expand(struct svga_shader_emitter_v10 *emit)
238 unsigned newsize = emit->size * 2;
240 if (emit->buf != err_buf)
241 new_buf = REALLOC(emit->buf, emit->size, newsize);
246 emit->ptr = err_buf;
247 emit->buf = err_buf
264 struct svga_shader_emitter_v10 *emit = CALLOC(1, sizeof(*emit)); local
6657 struct svga_shader_emitter_v10 *emit; local
    [all...]
svga_tgsi_insn.c 38 static boolean emit_vs_postamble( struct svga_shader_emitter *emit );
39 static boolean emit_ps_postamble( struct svga_shader_emitter *emit );
88 translate_dst_register( struct svga_shader_emitter *emit,
100 dest = emit->output_map[reg->Register.Index];
101 emit->num_output_writes++;
166 svga_arl_needs_adjustment( const struct svga_shader_emitter *emit )
170 for (i = 0; i < emit->num_arl_consts; ++i) {
171 if (emit->arl_consts[i].arl_num == emit->current_arl)
179 svga_arl_adjustment( const struct svga_shader_emitter *emit )
    [all...]
  /external/mesa3d/src/gallium/drivers/freedreno/a3xx/
fd3_emit.h 44 /* grouped together emit-state for prog/vertex/state emit: */
62 fd3_emit_get_vp(struct fd3_emit *emit)
64 if (!emit->vp) {
65 struct fd3_shader_stateobj *so = emit->prog->vp;
66 emit->vp = ir3_shader_variant(so->shader, emit->key, emit->debug);
68 return emit->vp;
72 fd3_emit_get_fp(struct fd3_emit *emit)
    [all...]
  /external/mesa3d/src/gallium/drivers/freedreno/a4xx/
fd4_emit.h 44 /* grouped together emit-state for prog/vertex/state emit: */
71 fd4_emit_get_vp(struct fd4_emit *emit)
73 if (!emit->vp) {
74 struct fd4_shader_stateobj *so = emit->prog->vp;
75 emit->vp = ir3_shader_variant(so->shader, emit->key, emit->debug);
77 return emit->vp;
81 fd4_emit_get_fp(struct fd4_emit *emit)
    [all...]
  /external/clang/test/CodeGen/
builtins-arm-msvc-compat-only.c 1 // RUN: %clang_cc1 -triple thumbv7-windows -fms-extensions -emit-llvm -o - %s \
3 // RUN: %clang_cc1 -triple armv7-eabi -emit-llvm %s -o /dev/null 2>&1 \
7 void emit() { function
  /hardware/intel/common/libmix/mix_vbp/viddec_fw/fw/parser/
viddec_emit.c 5 int32_t viddec_emit_flush_current_wkld(viddec_emitter *emit)
7 if(emit->cur.data != NULL)
9 emit->cur.data->num_items = emit->cur.num_items;
11 if(emit->next.data != NULL)
13 emit->next.data->num_items = emit->next.num_items;
15 emit->cur.num_items = emit->next.num_items;
16 emit->next.num_items = 0
    [all...]
  /external/python/cpython3/Parser/
asdl_c.py 87 self.emit("_Py_IDENTIFIER(%s);" % name, 0)
90 def emit(self, s, depth, reflow=True): member in class:EmitVisitor
123 self.emit(s, depth)
124 self.emit("", depth)
129 self.emit(s, depth)
130 self.emit("", depth)
135 self.emit(s, depth)
136 self.emit("", depth)
154 def emit(s, depth=depth): function in function:StructVisitor.sum_with_constructors
155 self.emit(s % sys._getframe(1).f_locals, depth
287 def emit(s, depth=0, reflow=True): function in function:FunctionVisitor.emit_function
321 def emit(s, depth=0, reflow=True): function in function:FunctionVisitor.emit_body_union
330 def emit(s, depth=0, reflow=True): function in function:FunctionVisitor.emit_body_struct
1165 def emit(s, d): function in function:ObjVisitor.visitField
    [all...]
  /external/python/cpython2/Parser/
asdl_c.py 89 def emit(self, s, depth, reflow=True): member in class:EmitVisitor
122 self.emit(s, depth)
123 self.emit("", depth)
128 self.emit(s, depth)
129 self.emit("", depth)
134 self.emit(s, depth)
135 self.emit("", depth)
153 def emit(s, depth=depth): function in function:StructVisitor.sum_with_constructors
154 self.emit(s % sys._getframe(1).f_locals, depth)
160 emit("enum _%(name)s_kind {" + ", ".join(enum) + "};"
282 def emit(s, depth=0, reflow=True): function in function:FunctionVisitor.emit_function
317 def emit(s, depth=0, reflow=True): function in function:FunctionVisitor.emit_body_union
326 def emit(s, depth=0, reflow=True): function in function:FunctionVisitor.emit_body_struct
1068 def emit(s, d): function in function:ObjVisitor.visitField
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Parser/
asdl_c.py 89 def emit(self, s, depth, reflow=True): member in class:EmitVisitor
122 self.emit(s, depth)
123 self.emit("", depth)
128 self.emit(s, depth)
129 self.emit("", depth)
134 self.emit(s, depth)
135 self.emit("", depth)
153 def emit(s, depth=depth): function in function:StructVisitor.sum_with_constructors
154 self.emit(s % sys._getframe(1).f_locals, depth)
160 emit("enum _%(name)s_kind {" + ", ".join(enum) + "};")
282 def emit(s, depth=0, reflow=True): function in function:FunctionVisitor.emit_function
317 def emit(s, depth=0, reflow=True): function in function:FunctionVisitor.emit_body_union
326 def emit(s, depth=0, reflow=True): function in function:FunctionVisitor.emit_body_struct
1047 def emit(s, d): function in function:ObjVisitor.visitField
    [all...]
  /external/emma/core/java12/com/vladium/emma/report/html/doc/
IContent.java 20 void emit (final HTMLWriter out); method in interface:IContent
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-aarch64/
emit-relocs-526.d 1 #source: emit-relocs-526.s
2 #ld: -T relocs.ld -e0 --emit-relocs
emit-relocs-527.d 1 #source: emit-relocs-527.s
2 #ld: -T relocs.ld -e0 --emit-relocs
emit-relocs-528.d 1 #source: emit-relocs-528.s
2 #ld: -T relocs.ld -e0 --emit-relocs
emit-relocs-529.d 1 #source: emit-relocs-529.s
2 #ld: -T relocs.ld -e0 --emit-relocs
emit-relocs-530.d 1 #source: emit-relocs-530.s
2 #ld: -T relocs.ld -e0 --emit-relocs
emit-relocs-531.d 1 #source: emit-relocs-531.s
2 #ld: -T relocs.ld -e0 --emit-relocs
emit-relocs-533.d 1 #source: emit-relocs-533.s
2 #ld: -T relocs.ld -e0 --emit-relocs
emit-relocs-535.d 1 #source: emit-relocs-535.s
2 #ld: -T relocs.ld -e0 --emit-relocs
emit-relocs-537.d 1 #source: emit-relocs-537.s
2 #ld: -T relocs.ld -e0 --emit-relocs
  /external/v8/src/x64/
assembler-x64.cc 462 // Emit updated ModR/M byte containing the given register.
484 // Emit the rest of the encoded operand.
498 emit(opcode);
512 emit(opcode ^ 0x02);
516 emit(opcode);
527 emit(0x66);
529 emit(opcode ^ 0x02);
532 emit(0x66);
534 emit(opcode);
544 emit(0x66)
    [all...]

Completed in 451 milliseconds

1 2 3 4 5 6 7 8 91011>>