HomeSort by relevance Sort by last modified time
    Searched refs:temps (Results 1 - 25 of 59) sorted by null

1 2 3

  /ndk/tests/build/mips-fp4/jni/
Android.mk 6 LOCAL_CFLAGS += -O2 -mips32r2 -save-temps
12 LOCAL_CFLAGS += -O2 -mips32r2 -ffast-math -save-temps
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
toaiff.py 65 temps = []
68 ret = _toaiff(filename, temps)
70 for temp in temps[:]:
76 temps.remove(temp)
79 def _toaiff(filename, temps):
83 temps.append(fname)
106 temps.append(temp)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
toaiff.py 65 temps = []
68 ret = _toaiff(filename, temps)
70 for temp in temps[:]:
76 temps.remove(temp)
79 def _toaiff(filename, temps):
83 temps.append(fname)
106 temps.append(temp)
  /ndk/tests/build/b14811006-GOT_PREL-optimization/
build.sh 53 $NDK/ndk-build -B APP_ABI=$ABI APP_CFLAGS=-save-temps
  /ndk/tests/build/cortex-a53-835769/
build.sh 22 $NDK/ndk-build -B APP_CFLAGS=-save-temps
  /ndk/tests/build/issue17144-byteswap/
build.sh 24 $NDK/ndk-build -B APP_ABI=armeabi-v7a APP_CFLAGS=-save-temps NDK_DEBUG=1
34 $NDK/ndk-build -B APP_ABI=x86 APP_CFLAGS=-save-temps NDK_DEBUG=1
46 $NDK/ndk-build -B APP_ABI=mips APP_CFLAGS="-save-temps -mips32r2" NDK_DEBUG=1
  /cts/tests/tests/media/src/android/media/cts/
MediaScannerNotificationTest.java 48 String [] temps = new String[] { "avi", "gif", "jpg", "dat", "mp3", "mp4", "txt" }; local
49 String tmpPath = createTempFiles(temps);
61 checkTempFiles(tmpPath, temps);
76 checkTempFiles(tmpPath, temps);
78 deleteTempFiles(tmpPath, temps);
  /external/v8/src/compiler/
instruction-selector.h 40 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);
instruction-selector.cc 72 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);
    [all...]
  /external/vixl/src/vixl/a64/
macro-assembler-a64.cc 392 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(this)
    [all...]
  /external/v8/src/arm64/
macro-assembler-arm64.cc 59 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.AcquireX()
    [all...]
macro-assembler-arm64-inl.h 575 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();
    [all...]
debug-arm64.cc 349 UseScratchRegisterScope temps(masm);
350 Register scratch = temps.AcquireX();
  /external/v8/src/compiler/ia32/
instruction-selector-ia32.cc 107 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[] = {g.TempRegister(eax)} local
    [all...]
  /external/libvncserver/test/
bmp.c 115 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)
  /art/compiler/utils/arm64/
assembler_arm64.cc 87 vixl::UseScratchRegisterScope temps(vixl_masm_);
88 temps.Exclude(reg_x(rd), reg_x(rn));
89 vixl::Register temp = temps.AcquireX();
183 vixl::UseScratchRegisterScope temps(vixl_masm_);
184 vixl::Register temp = temps.AcquireX();
207 vixl::UseScratchRegisterScope temps(vixl_masm_);
208 temps.Exclude(reg_x(dest));
209 vixl::Register temp = temps.AcquireX();
314 vixl::UseScratchRegisterScope temps(vixl_masm_);
315 temps.Exclude(reg_x(dst.AsXRegister()), reg_x(base.AsXRegister()))
    [all...]
  /external/v8/src/compiler/x64/
instruction-selector-x64.cc 120 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[] = {g.TempRegister(rax)} local
    [all...]
  /external/mesa3d/src/mesa/state_tracker/
st_mesa_to_tgsi.c 69 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]);
    [all...]
  /art/compiler/optimizing/
code_generator_arm64.cc 438 // VIXL uses at most 1 GPR. VIXL has 2 GPR and 1 FPR temps, and there should be no intersecting
439 // cycles on ARM64, so we always have 1 GPR and 1 FPR available VIXL temps to resolve the
489 UseScratchRegisterScope temps(masm);
490 Register temp = temps.AcquireX();
557 UseScratchRegisterScope temps(GetVIXLAssembler());
559 ? temps.AcquireW()
560 : temps.AcquireX();
607 UseScratchRegisterScope temps(GetVIXLAssembler());
608 Register card = temps.AcquireX();
609 Register temp = temps.AcquireW(); // Index within the CardTable - 32bit
    [all...]
builder.cc 742 Temporaries temps(graph_);
747 temps.Add(null_check);
    [all...]
  /external/mesa3d/src/gallium/auxiliary/gallivm/
lp_bld_tgsi.h 371 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/glsl/
linker.cpp 791 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, inst, var)
    [all...]
  /external/mesa3d/src/gallium/auxiliary/draw/
draw_vs_ppc.c 57 float (*temps)[4][4],
  /external/v8/test/cctest/compiler/
test-instruction.cc 321 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/mksh/src/
check.pl 304 $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'};
    [all...]

Completed in 540 milliseconds

1 2 3