Searched defs:temps (Results 1 - 14 of 14) sorted by relevance

/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/d3d1x/gd3d1x/
H A Dsm4_to_tgsi.cpp79 std::vector<struct ureg_dst> temps; member in struct:sm4_to_tgsi_converter
115 check(op.indices[0].disp < temps.size());
116 return temps[op.indices[0].disp];
660 temps.push_back(ureg_DECL_temporary(ureg));
/external/mesa3d/src/gallium/state_trackers/d3d1x/gd3d1x/
H A Dsm4_to_tgsi.cpp79 std::vector<struct ureg_dst> temps; member in struct:sm4_to_tgsi_converter
115 check(op.indices[0].disp < temps.size());
116 return temps[op.indices[0].disp];
660 temps.push_back(ureg_DECL_temporary(ureg));
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/gallivm/
H A Dlp_bld_tgsi.h371 LLVMValueRef temps[LP_MAX_TGSI_TEMPS][TGSI_NUM_CHANNELS]; member in struct:lp_build_tgsi_soa_context
375 /* We allocate/use this array of temps if (1 << TGSI_FILE_TEMPORARY) is
377 * The temps[] array above is unused then.
457 LLVMValueRef temps[LP_MAX_TGSI_TEMPS]; member in struct:lp_build_tgsi_aos_context
461 /* We allocate/use this array of temps if (1 << TGSI_FILE_TEMPORARY) is
463 * The temps[] array above is unused then.
/external/chromium_org/third_party/mesa/src/src/mesa/state_tracker/
H A Dst_mesa_to_tgsi.c69 struct ureg_dst temps[MAX_PROGRAM_TEMPS]; member in struct:st_translate
172 if (ureg_dst_is_undef(t->temps[index]))
173 t->temps[index] = ureg_DECL_temporary( t->ureg );
175 return t->temps[index];
213 assert(index < Elements(t->temps));
214 if (ureg_dst_is_undef(t->temps[index]))
215 t->temps[index] = ureg_DECL_temporary( t->ureg );
216 return ureg_src(t->temps[index]);
1182 /* If temps are accessed with indirect addressing, declare temporaries
1187 t->temps[
[all...]
H A Dst_glsl_to_tgsi.cpp500 * sources into temps.
3892 struct ureg_dst temps[MAX_TEMPS]; member in struct:st_translate
4016 if (ureg_dst_is_undef(t->temps[index]))
4017 t->temps[index] = ureg_DECL_local_temporary(t->ureg);
4019 return t->temps[index];
4056 assert(index < (int) Elements(t->temps));
4057 if (ureg_dst_is_undef(t->temps[index]))
4058 t->temps[index] = ureg_DECL_local_temporary(t->ureg);
4059 return ureg_src(t->temps[index]);
4686 /* If temps ar
[all...]
/external/mesa3d/src/gallium/auxiliary/gallivm/
H A Dlp_bld_tgsi.h371 LLVMValueRef temps[LP_MAX_TGSI_TEMPS][TGSI_NUM_CHANNELS]; member in struct:lp_build_tgsi_soa_context
375 /* We allocate/use this array of temps if (1 << TGSI_FILE_TEMPORARY) is
377 * The temps[] array above is unused then.
457 LLVMValueRef temps[LP_MAX_TGSI_TEMPS]; member in struct:lp_build_tgsi_aos_context
461 /* We allocate/use this array of temps if (1 << TGSI_FILE_TEMPORARY) is
463 * The temps[] array above is unused then.
/external/mesa3d/src/mesa/state_tracker/
H A Dst_mesa_to_tgsi.c69 struct ureg_dst temps[MAX_PROGRAM_TEMPS]; member in struct:st_translate
172 if (ureg_dst_is_undef(t->temps[index]))
173 t->temps[index] = ureg_DECL_temporary( t->ureg );
175 return t->temps[index];
213 assert(index < Elements(t->temps));
214 if (ureg_dst_is_undef(t->temps[index]))
215 t->temps[index] = ureg_DECL_temporary( t->ureg );
216 return ureg_src(t->temps[index]);
1182 /* If temps are accessed with indirect addressing, declare temporaries
1187 t->temps[
[all...]
H A Dst_glsl_to_tgsi.cpp500 * sources into temps.
3892 struct ureg_dst temps[MAX_TEMPS]; member in struct:st_translate
4016 if (ureg_dst_is_undef(t->temps[index]))
4017 t->temps[index] = ureg_DECL_local_temporary(t->ureg);
4019 return t->temps[index];
4056 assert(index < (int) Elements(t->temps));
4057 if (ureg_dst_is_undef(t->temps[index]))
4058 t->temps[index] = ureg_DECL_local_temporary(t->ureg);
4059 return ureg_src(t->temps[index]);
4686 /* If temps ar
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/tgsi/
H A Dtgsi_exec.c4270 struct tgsi_exec_vector temps[TGSI_EXEC_NUM_TEMPS + TGSI_EXEC_NUM_TEMP_EXTRAS]; local
4274 memcpy(temps, mach->Temps, sizeof(temps));
4292 if (memcmp(&temps[i], &mach->Temps[i], sizeof(temps[i]))) {
4295 memcpy(&temps[i], &mach->Temps[i], sizeof(temps[i]));
4302 temps[i].xyzw[0].f[j], temps[i].xyzw[0].u[j],
4303 temps[
[all...]
/external/chromium_org/third_party/mesa/src/src/glsl/
H A Dlinker.cpp791 hash_table *temps)
796 hash_table *temps)
801 this->temps = temps;
807 ir_variable *var = (ir_variable *) hash_table_find(temps, ir->var);
833 hash_table *temps; member in class:remap_visitor
836 remap_visitor v(target, temps);
867 hash_table *temps = NULL; local
870 temps = hash_table_ctor(0, hash_table_pointer_hash,
892 hash_table_insert(temps, ins
790 remap_variables(ir_instruction *inst, struct gl_shader *target, hash_table *temps) argument
795 remap_visitor(struct gl_shader *target, hash_table *temps) argument
[all...]
/external/mesa3d/src/gallium/auxiliary/tgsi/
H A Dtgsi_exec.c4270 struct tgsi_exec_vector temps[TGSI_EXEC_NUM_TEMPS + TGSI_EXEC_NUM_TEMP_EXTRAS]; local
4274 memcpy(temps, mach->Temps, sizeof(temps));
4292 if (memcmp(&temps[i], &mach->Temps[i], sizeof(temps[i]))) {
4295 memcpy(&temps[i], &mach->Temps[i], sizeof(temps[i]));
4302 temps[i].xyzw[0].f[j], temps[i].xyzw[0].u[j],
4303 temps[
[all...]
/external/mesa3d/src/glsl/
H A Dlinker.cpp791 hash_table *temps)
796 hash_table *temps)
801 this->temps = temps;
807 ir_variable *var = (ir_variable *) hash_table_find(temps, ir->var);
833 hash_table *temps; member in class:remap_visitor
836 remap_visitor v(target, temps);
867 hash_table *temps = NULL; local
870 temps = hash_table_ctor(0, hash_table_pointer_hash,
892 hash_table_insert(temps, ins
790 remap_variables(ir_instruction *inst, struct gl_shader *target, hash_table *temps) argument
795 remap_visitor(struct gl_shader *target, hash_table *temps) argument
[all...]
/external/qemu/tcg/
H A Dtcg.h276 TCGTemp *temps; /* globals first, temps after */ member in struct:TCGContext
279 /* index of free temps, -1 if none */
/external/mksh/src/
H A Dsh.h689 struct temp *temps; /* temp files */ member in struct:env

Completed in 540 milliseconds