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

12

/external/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/vixl/src/vixl/a64/
H A Dmacro-assembler-a64.cc392 UseScratchRegisterScope temps; local
395 temps.Open(masm);
396 temp = rd.IsSP() ? temps.AcquireSameSizeAs(rd) : rd;
696 UseScratchRegisterScope temps(this);
763 Register temp = temps.AcquireSameSizeAs(rn);
783 temps.Exclude(operand.reg());
784 Register temp = temps.AcquireSameSizeAs(rn);
849 UseScratchRegisterScope temps(this);
850 Register temp = temps.AcquireW();
927 UseScratchRegisterScope temps(thi
[all...]
/external/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...]
H A Ddeoptimizer-arm64.cc311 UseScratchRegisterScope temps(masm());
312 Register entry_id = temps.AcquireX();
H A Dlithium-codegen-arm64.h390 UseScratchRegisterScope temps(codegen_->masm_);
394 temps.UnsafeAcquire(StoreRegistersStateStub::to_be_pushed_lr());
/external/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/libvncserver/test/
H A Dbmp.c115 unsigned char *tempbuf=NULL; char temps[255], temps2[255]; local
122 if(!fgets(temps, 255, fs)) _throw("Read error");
123 if(strlen(temps)==0 || temps[0]=='\n') continue;
124 if(sscanf(temps, "%s", temps2)==1 && temps2[1]=='#') continue;
128 if((numread=sscanf(temps, "%d %d %d", w, h, &scalefactor))==EOF)
132 if((numread=sscanf(temps, "%d %d", h, &scalefactor))==EOF)
136 if((numread=sscanf(temps, "%d", &scalefactor))==EOF)
/external/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'};
H A Dmain.c924 ep->temps = NULL;
1056 remove_temps(ep->temps);
1070 remove_temps(e->temps);
1071 e->temps = NULL;
/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/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.
H A Dlp_bld_tgsi_aos.c208 LLVMValueRef temp_ptr = bld->temps[reg->Register.Index];
266 ptr = bld->temps[reg->Register.Index];
423 bld->temps[idx] = lp_build_alloca(gallivm, vec_type, "");
/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/mesa3d/src/gallium/auxiliary/draw/
H A Ddraw_vs_ppc.c57 float (*temps)[4][4],
/external/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/apache-commons-math/src/main/java/org/apache/commons/math/util/
H A DFastMath.java1868 double temps[] = new double[2];
1884 splitMult(xs, xs, temps);
1885 temps[0] = -temps[0];
1886 temps[1] = -temps[1];
1887 splitAdd(as, temps, result);
1901 splitMult(xs, bs, temps);
1903 splitAdd(result, temps, result);
1909 splitMult(xs, as, temps);
[all...]
/external/vixl/test/
H A Dtest-utils-a64.cc358 UseScratchRegisterScope temps(masm);
359 temps.ExcludeAll();
/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/v8/src/ic/arm64/
H A Dhandler-compiler-arm64.cc421 UseScratchRegisterScope temps(masm());
422 DoubleRegister temp_double = temps.AcquireD();
615 UseScratchRegisterScope temps(masm());
616 __ CheckAccessGlobalProxy(reg, scratch2, temps.AcquireX(), miss);
/external/v8/src/compiler/arm64/
H A Dinstruction-selector-arm64.cc220 InstructionOperand* temps[] = {g.TempRegister(x11), g.TempRegister(x12)}; local
222 g.UseFixed(index, x11), g.UseFixed(value, x12), arraysize(temps),
223 temps);

Completed in 3100 milliseconds

12