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

  /external/mesa3d/src/gallium/auxiliary/tgsi/
tgsi_scan.c 131 if (src->Register.Indirect && src->Indirect.ArrayID)
132 input = info->input_array_first[src->Indirect.ArrayID];
320 if (src0->Register.Indirect && src0->Indirect.ArrayID)
321 input = info->input_array_first[src0->Indirect.ArrayID];
437 unsigned array_id = fulldecl->Array.ArrayID;
785 decl->Array.ArrayID > 0 && decl->Array.ArrayID <= max_array_id) {
786 struct tgsi_array_info *array = &arrays[decl->Array.ArrayID - 1];
803 if (dst->Indirect.ArrayID > 0 &&
804 dst->Indirect.ArrayID <= max_array_id)
    [all...]
tgsi_dump.c 126 if (src->DimIndirect.ArrayID) {
128 SID( src->DimIndirect.ArrayID );
150 if (src->Indirect.ArrayID) {
152 SID( src->Indirect.ArrayID );
183 if (dst->DimIndirect.ArrayID) {
185 SID( dst->DimIndirect.ArrayID );
207 if (dst->Indirect.ArrayID) {
209 SID( dst->Indirect.ArrayID );
346 SID(decl->Array.ArrayID);
tgsi_ureg.h 66 unsigned ArrayID : 10; /* UINT */
96 unsigned ArrayID : 10; /* UINT */
    [all...]
tgsi_build.c 356 a.ArrayID = 0;
363 tgsi_build_declaration_array(unsigned arrayid,
370 da.ArrayID = arrayid;
527 full_decl->Array.ArrayID,
931 ind_register.ArrayID = 0;
941 unsigned arrayid,
954 ind_register.ArrayID = arrayid;
1234 reg->Indirect.ArrayID,
    [all...]
tgsi_ureg.c 649 dst.ArrayID = ureg->nr_array_temps;
1113 out[n].ind.ArrayID = 0;
1115 out[n].ind.ArrayID = src.ArrayID;
1133 out[n].ind.ArrayID = 0;
1135 out[n].ind.ArrayID = src.ArrayID;
1179 out[n].ind.ArrayID = 0;
    [all...]
tgsi_text.c 840 dst->DimIndirect.ArrayID = bracket[0].ind_array;
851 dst->Indirect.ArrayID = bracket[0].ind_array;
933 src->DimIndirect.ArrayID = bracket[0].ind_array;
943 src->Indirect.ArrayID = bracket[0].ind_array;
1353 int arrayid; local
    [all...]
  /external/mesa3d/src/gallium/include/pipe/
p_shader_tokens.h 242 unsigned ArrayID : 10;
761 * If ArrayID is zero the whole register file might be indirectly addressed,
762 * if not only the Declaration with this ArrayID is accessed by this operand.
771 unsigned ArrayID : 10; /* UINT */
  /external/mesa3d/src/gallium/drivers/radeonsi/
si_shader_tgsi_setup.c 399 if (reg && reg->ArrayID > 0 && reg->ArrayID <= num_arrays)
400 return reg->ArrayID;
813 unsigned id = decl->Array.ArrayID - 1;
    [all...]
si_shader.c 664 if (reg.Indirect.ArrayID)
665 first = array_first[reg.Indirect.ArrayID];
788 if (reg.Indirect.ArrayID)
789 param_base = array_first[reg.Indirect.ArrayID];
    [all...]
  /external/mesa3d/src/gallium/auxiliary/nir/
tgsi_to_nir.c 255 var->name = ralloc_asprintf(var, "arr_%d", decl->Array.ArrayID);
325 (decl->Array.ArrayID != 0));
    [all...]
  /external/mesa3d/src/gallium/drivers/nouveau/codegen/
nv50_ir_from_tgsi.cpp 103 return fsr->Indirect.ArrayID;
169 return fdr->Indirect.ArrayID;
    [all...]
  /external/mesa3d/src/mesa/state_tracker/
st_glsl_to_tgsi.cpp 353 unsigned array_id; /* TGSI ArrayID; 1-based: 0 means not an array */
    [all...]
  /external/mesa3d/src/gallium/drivers/r600/
r600_shader.c 958 if (d->Array.ArrayID) {
    [all...]
  /external/mesa3d/src/gallium/drivers/svga/
svga_tgsi_vgpu10.c 127 unsigned arrayId, index;
128 } temp_map[VGPU10_MAX_TEMPS]; /**< arrayId, element */
712 return emit->temp_map[index].arrayId;
    [all...]

Completed in 131 milliseconds