Searched refs:temps (Results 1 - 25 of 63) sorted by relevance

123

/external/qemu/tcg/
H A Doptimize.c54 static struct tcg_temp_info temps[TCG_MAX_TEMPS]; variable in typeref:struct:tcg_temp_info
60 if (temps[temp].state == TCG_TEMP_COPY) {
61 if (temps[temp].prev_copy == temps[temp].next_copy) {
62 temps[temps[temp].next_copy].state = TCG_TEMP_UNDEF;
64 temps[temps[temp].next_copy].prev_copy = temps[temp].prev_copy;
65 temps[temp
[all...]
H A Dtcg.c363 /* No temps have been previously allocated for size or locality. */
401 ts = &s->temps[s->nb_globals];
441 ts = &s->temps[s->nb_globals];
476 ts = &s->temps[s->nb_globals];
513 ts = &s->temps[idx];
522 ts = &s->temps[s->nb_temps];
539 ts = &s->temps[s->nb_temps];
585 ts = &s->temps[idx];
1000 ts = &s->temps[i];
1008 ts = &s->temps[
[all...]
/external/chromium_org/third_party/cython/src/Cython/Compiler/
H A DTreeFragment.py116 Also a list "temps" should be passed. Any names listed will
129 def __call__(self, node, substitutions, temps, pos):
134 for temp in temps:
141 if temps:
143 temps=temphandles,
201 def __init__(self, code, name="(tree fragment)", pxds={}, temps=[], pipeline=[], level=None, initial_pos=None):
224 self.temps = temps
229 def substitute(self, nodes={}, temps=[], pos = None):
232 temps
[all...]
H A DOptimize.py99 temps = [target_handle],
376 node.pos, temps=[counter_temp, length_temp, data_temp, kind_temp],
541 node.pos, temps=[counter],
697 temps = []
699 temps.append(temp)
702 temps.append(temp)
728 temps.append(dict_len_temp)
733 temps.append(temp)
789 node.pos, temps=temps,
[all...]
H A DUtilNodes.py87 # temps [TempHandle]
93 for handle in self.temps:
97 for handle in self.temps:
/external/vixl/src/a64/
H A Dmacro-assembler-a64.cc124 UseScratchRegisterScope temps(this);
182 Register temp = temps.AcquireSameSizeAs(rn);
201 temps.Exclude(operand.reg());
202 Register temp = temps.AcquireSameSizeAs(rn);
255 UseScratchRegisterScope temps(this);
256 temps.Exclude(operand.reg());
260 Register temp = temps.AcquireSameSizeAs(rd);
323 UseScratchRegisterScope temps(this);
324 Register temp = rd.IsSP() ? temps.AcquireSameSizeAs(rd) : rd;
424 UseScratchRegisterScope temps(thi
[all...]
/external/chromium_org/v8/src/compiler/
H A Dinstruction-selector.h40 size_t temp_count = 0, InstructionOperand* *temps = NULL);
43 InstructionOperand* *temps = NULL);
46 size_t temp_count = 0, InstructionOperand* *temps = NULL);
50 InstructionOperand* *temps = NULL);
54 size_t temp_count = 0, InstructionOperand* *temps = NULL);
58 InstructionOperand* *temps = NULL);
H A Dinstruction-selector.cc72 InstructionOperand** temps) {
74 return Emit(opcode, output_count, &output, 0, NULL, temp_count, temps);
81 InstructionOperand** temps) {
83 return Emit(opcode, output_count, &output, 1, &a, temp_count, temps);
91 InstructionOperand** temps) {
96 temps);
105 InstructionOperand** temps) {
110 temps);
117 size_t temp_count, InstructionOperand** temps) {
122 temps);
69 Emit(InstructionCode opcode, InstructionOperand* output, size_t temp_count, InstructionOperand** temps) argument
78 Emit(InstructionCode opcode, InstructionOperand* output, InstructionOperand* a, size_t temp_count, InstructionOperand** temps) argument
87 Emit(InstructionCode opcode, InstructionOperand* output, InstructionOperand* a, InstructionOperand* b, size_t temp_count, InstructionOperand** temps) argument
100 Emit(InstructionCode opcode, InstructionOperand* output, InstructionOperand* a, InstructionOperand* b, InstructionOperand* c, size_t temp_count, InstructionOperand** temps) argument
114 Emit( InstructionCode opcode, InstructionOperand* output, InstructionOperand* a, InstructionOperand* b, InstructionOperand* c, InstructionOperand* d, size_t temp_count, InstructionOperand** temps) argument
126 Emit( InstructionCode opcode, size_t output_count, InstructionOperand** outputs, size_t input_count, InstructionOperand** inputs, size_t temp_count, InstructionOperand** temps) argument
[all...]
H A Dinstruction.h445 size_t temp_count, InstructionOperand** temps) {
449 DCHECK(temp_count == 0 || temps != NULL);
456 opcode, output_count, outputs, input_count, inputs, temp_count, temps);
510 InstructionOperand** temps)
524 operands_[output_count + input_count + i] = temps[i];
/external/chromium_org/v8/src/arm64/
H A Dmacro-assembler-arm64.cc59 UseScratchRegisterScope temps(this);
62 Register temp = temps.AcquireX();
128 Register temp = temps.AcquireSameSizeAs(rn);
148 Register temp = temps.AcquireSameSizeAs(rn);
205 UseScratchRegisterScope temps(this);
206 Register temp = rd.IsSP() ? temps.AcquireSameSizeAs(rd) : rd;
248 UseScratchRegisterScope temps(this);
249 Register dst = (rd.IsSP()) ? temps.AcquireSameSizeAs(rd) : rd;
355 UseScratchRegisterScope temps(this);
356 Register temp = temps
2532 CopyFields(Register dst, Register src, CPURegList temps, unsigned count) argument
[all...]
H A Ddebug-arm64.cc349 UseScratchRegisterScope temps(masm);
350 Register scratch = temps.AcquireX();
H A Dmacro-assembler-arm64-inl.h575 UseScratchRegisterScope temps(this);
576 FPRegister tmp = temps.AcquireSameSizeAs(fn);
753 UseScratchRegisterScope temps(this);
754 Register tmp = temps.AcquireW();
1234 UseScratchRegisterScope temps(this);
1235 Register temp = temps.AcquireX();
1384 UseScratchRegisterScope temps(this);
1385 Register tmp = temps.AcquireX();
1397 UseScratchRegisterScope temps(this);
1398 Register tmp = temps
[all...]
/external/chromium_org/v8/src/compiler/ia32/
H A Dinstruction-selector-ia32.cc107 InstructionOperand* temps[] = {g.TempRegister(ecx), g.TempRegister(edx)}; local
109 g.UseFixed(index, ecx), g.UseFixed(value, edx), arraysize(temps),
110 temps);
318 InstructionOperand* temps[] = {g.TempRegister(edx)}; local
319 size_t temp_count = arraysize(temps);
322 g.UseUnique(node->InputAt(1)), temp_count, temps);
339 InstructionOperand* temps[] = {g.TempRegister(eax), g.TempRegister(edx)}; local
340 size_t temp_count = arraysize(temps);
343 g.UseUnique(node->InputAt(1)), temp_count, temps);
413 InstructionOperand* temps[] local
[all...]
/external/chromium_org/v8/src/compiler/x64/
H A Dinstruction-selector-x64.cc120 InstructionOperand* temps[] = {g.TempRegister(rcx), g.TempRegister(rdx)}; local
122 g.UseFixed(index, rcx), g.UseFixed(value, rdx), arraysize(temps),
123 temps);
424 InstructionOperand* temps[] = {g.TempRegister(rdx)}; local
427 g.UseUniqueRegister(node->InputAt(1)), arraysize(temps), temps);
454 InstructionOperand* temps[] = {g.TempRegister(rax), g.TempRegister(rdx)}; local
457 g.UseUniqueRegister(node->InputAt(1)), arraysize(temps), temps);
555 InstructionOperand* temps[] local
[all...]
/external/mksh/src/
H A Dcheck.pl304 $temps = sprintf("chk%d-%d.", $$, time());
306 until (mkdir(($tempdir = sprintf("%s%03d", $temps, $tempi)), 0700)) {
328 $temps = "${temp_dir}/rts";
374 unlink($tempi, $tempo, $tempe, $temps);
464 return undef if !&write_file($temps, $test{'script'});
569 push(@argv, $temps) if defined $test{'script'};
/external/chromium_org/third_party/cython/src/Cython/Compiler/Tests/
H A DTestTreeFragment.py56 T = F.substitute(temps=[u"TMP"])
/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...]
/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...]
/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/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/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/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/chromium_org/third_party/mesa/src/src/gallium/auxiliary/draw/
H A Ddraw_vs_ppc.c57 float (*temps)[4][4],
/external/chromium_org/v8/test/cctest/compiler/
H A Dtest-instruction.cc321 InstructionOperand* temps[] = { local
329 for (size_t k = 0; k < arraysize(temps); k++) {
331 TestInstr::New(&zone, 101, i, outputs, j, inputs, k, temps);
345 CHECK_EQ(temps[z], m->TempAt(z));
/external/mesa3d/src/gallium/auxiliary/draw/
H A Ddraw_vs_ppc.c57 float (*temps)[4][4],

Completed in 813 milliseconds

123