HomeSort by: relevance | last modified time | path
    Searched defs:immediates (Results 1 - 18 of 18) sorted by relevancy

  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/freedreno/a2xx/
fd2_program.h 42 /* note: using same set of immediates for all variants
50 } immediates[64]; member in struct:fd2_shader_stateobj
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/freedreno/a2xx/
fd2_program.h 42 /* note: using same set of immediates for all variants
50 } immediates[64]; member in struct:fd2_shader_stateobj
  /xsrc/external/mit/MesaLib/dist/src/panfrost/bifrost/valhall/
valhall.py 37 # All immediates in the ISA
39 assert(ilut.attrib['name'] == "Immediates")
40 immediates = [int(imm.text, base=0) for imm in ilut.findall('constant')] variable
172 def __init__(self, name, opcode, opcode2, srcs = [], dests = [], immediates = [], modifiers = [], staging = None):
178 self.immediates = immediates
260 # Get immediates
270 instr = Instruction(name, opcode, opcode2, srcs = sources, dests = dests, immediates = imms, modifiers = modifiers, staging = staging)
  /xsrc/external/mit/MesaLib/dist/src/asahi/compiler/
agx_opcodes.py 25 immediates = {} variable
68 immediates[name] = imm
  /xsrc/external/mit/MesaLib/dist/src/gallium/auxiliary/draw/
draw_vs.h 119 const float (*immediates)[4]; member in struct:draw_vertex_shader
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/auxiliary/draw/
draw_vs.h 119 const float (*immediates)[4]; member in struct:draw_vertex_shader
  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/i915/
i915_fpc.h 53 float immediates[I915_MAX_CONSTANT][4]; member in struct:i915_fp_compile
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/i915/
i915_fpc.h 58 float immediates[I915_MAX_CONSTANT][4]; member in struct:i915_fp_compile
  /xsrc/external/mit/MesaLib/dist/src/gallium/auxiliary/gallivm/
lp_bld_tgsi.h 549 LLVMValueRef immediates[LP_MAX_INLINED_IMMEDIATES][TGSI_NUM_CHANNELS]; member in struct:lp_build_tgsi_soa_context
642 LLVMValueRef immediates[LP_MAX_INLINED_IMMEDIATES]; member in struct:lp_build_tgsi_aos_context
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/auxiliary/gallivm/
lp_bld_tgsi.h 459 LLVMValueRef immediates[LP_MAX_INLINED_IMMEDIATES][TGSI_NUM_CHANNELS]; member in struct:lp_build_tgsi_soa_context
552 LLVMValueRef immediates[LP_MAX_INLINED_IMMEDIATES]; member in struct:lp_build_tgsi_aos_context
  /xsrc/external/mit/MesaLib/dist/src/freedreno/ir3/
ir3_shader.h 130 * + Lowered immediates
155 * immediates
157 * Immediates go last mostly because they are inserted in the CP pass
193 uint32_t *immediates; member in struct:ir3_const_state
  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/nouveau/codegen/
nv50_ir_from_nir.cpp 175 ImmediateMap immediates; member in class:__anon1383::Converter
815 ImmediateMap::iterator iit = immediates.find(src->index);
816 if (iit != immediates.end())
2455 immediates[insn->def.index] = insn;
  /xsrc/external/mit/MesaLib.old/dist/src/freedreno/ir3/
ir3_shader.h 474 } *immediates; member in struct:ir3_shader_variant
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/nouveau/codegen/
nv50_ir_from_nir.cpp 167 ImmediateMap immediates; member in class:__anon3823::Converter
764 ImmediateMap::iterator iit = immediates.find(src->index);
765 if (iit != immediates.end())
2680 immediates[insn->def.index] = insn;
  /xsrc/external/mit/MesaLib/dist/src/mesa/state_tracker/
st_glsl_to_tgsi.cpp 309 exec_list immediates; member in struct:glsl_to_tgsi_visitor
585 assert(!"immediates should not have indirect addressing");
601 assert(!"immediates should not have indirect addressing");
999 foreach_in_list(immediate_storage, entry, &this->immediates) {
1026 this->immediates.push_tail(entry);
4670 foreach_in_list(immediate_storage, entry, &this->immediates) {
5868 struct ureg_src *immediates;
6102 src = t->immediates[src_reg->index];
6970 /* Emit immediates for PROGRAM_CONSTANT only when there's no indirect
7003 t->immediates = (struct ureg_src *
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/mesa/state_tracker/
st_glsl_to_tgsi.cpp 309 exec_list immediates; member in struct:glsl_to_tgsi_visitor
506 assert(!"immediates should not have indirect addressing");
522 assert(!"immediates should not have indirect addressing");
920 foreach_in_list(immediate_storage, entry, &this->immediates) {
947 this->immediates.push_tail(entry);
5727 struct ureg_src *immediates;
6049 src = t->immediates[src_reg->index];
6937 /* Emit immediates for PROGRAM_CONSTANT only when there's no indirect
6970 t->immediates = (struct ureg_src *)
6972 if (t->immediates == NULL)
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/svga/
svga_tgsi_vgpu10.c 106 union tgsi_immediate_data immediates[MAX_IMMEDIATE_COUNT][4]; member in struct:svga_shader_emitter_v10
107 unsigned num_immediates; /**< Number of immediates emitted */
108 unsigned common_immediate_pos[8]; /**< literals for common immediates */
693 /* all immediates are 32-bit values at this time so
779 /* there's no swizzle for in-line immediates */
1103 /* there's no swizzle for in-line immediates */
1138 assert(index < ARRAY_SIZE(emit->immediates));
1144 c = (unsigned *) emit->immediates[index];
1682 /* Search immediates for x, y, z, w */
1684 if (x.Int == emit->immediates[i][0].Int |
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/svga/
svga_tgsi_vgpu10.c 204 union tgsi_immediate_data immediates[MAX_IMMEDIATE_COUNT][4]; member in struct:svga_shader_emitter_v10
206 unsigned num_immediates; /**< Number of immediates emitted */
207 unsigned common_immediate_pos[10]; /**< literals for common immediates */
1016 /* all immediates are 32-bit values at this time so
1111 /* there's no swizzle for in-line immediates */
1777 /* there's no swizzle for in-line immediates */
1812 assert(index < ARRAY_SIZE(emit->immediates));
1818 c = (unsigned *) emit->immediates[index];
2396 /* Search immediates for x, y, z, w */
2398 if (x.Int == emit->immediates[i][0].Int |
    [all...]

Completed in 43 milliseconds