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

1 2 3

  /external/qemu/tcg/
optimize.c 54 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[temps[temp].prev_copy].next_copy = temps[temp].next_copy
    [all...]
tcg.c 363 /* 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[i]
    [all...]
  /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/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/vixl/src/a64/
macro-assembler-a64.cc 124 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(this)
    [all...]
  /external/chromium_org/v8/src/arm64/
macro-assembler-arm64.cc 57 UseScratchRegisterScope temps(this);
60 Register temp = temps.AcquireX();
120 Register temp = temps.AcquireSameSizeAs(rn);
140 Register temp = temps.AcquireSameSizeAs(rn);
206 UseScratchRegisterScope temps(this);
207 Register temp = rd.IsSP() ? temps.AcquireSameSizeAs(rd) : rd;
249 UseScratchRegisterScope temps(this);
250 Register dst = (rd.IsSP()) ? temps.AcquireSameSizeAs(rd) : rd;
356 UseScratchRegisterScope temps(this);
357 Register temp = temps.AcquireX()
    [all...]
macro-assembler-arm64-inl.h 560 UseScratchRegisterScope temps(this);
561 FPRegister tmp = temps.AcquireSameSizeAs(fn);
738 UseScratchRegisterScope temps(this);
739 Register tmp = temps.AcquireW();
1246 UseScratchRegisterScope temps(this);
1247 Register temp = temps.AcquireX();
    [all...]
deoptimizer-arm64.cc 340 UseScratchRegisterScope temps(masm());
341 Register entry_id = temps.AcquireX();
lithium-codegen-arm64.h 398 UseScratchRegisterScope temps(codegen_->masm_);
402 temps.UnsafeAcquire(StoreRegistersStateStub::to_be_pushed_lr());
  /art/compiler/utils/arm64/
assembler_arm64.cc 84 vixl::UseScratchRegisterScope temps(vixl_masm_);
85 temps.Exclude(reg_x(rd), reg_x(rn));
86 vixl::Register temp = temps.AcquireX();
180 vixl::UseScratchRegisterScope temps(vixl_masm_);
181 vixl::Register temp = temps.AcquireX();
204 vixl::UseScratchRegisterScope temps(vixl_masm_);
205 temps.Exclude(reg_x(dest));
206 vixl::Register temp = temps.AcquireX();
307 vixl::UseScratchRegisterScope temps(vixl_masm_);
308 temps.Exclude(reg_x(dst.AsCoreRegister()), reg_x(base.AsCoreRegister()))
    [all...]
  /external/chromium_org/third_party/mesa/src/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...]
  /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/
builder.cc 50 // We currently only support vreg size temps.
342 Temporaries temps(graph_, is_instance_call ? 1 : 0);
347 temps.Add(null_check);
408 Temporaries temps(graph_, 1);
411 temps.Add(null_check);
439 Temporaries temps(graph_, 3);
444 temps.Add(object);
448 temps.Add(length);
452 temps.Add(index);
  /external/chromium_org/third_party/mesa/src/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/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/chromium_org/third_party/mesa/src/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/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/chromium_org/third_party/mesa/src/src/gallium/auxiliary/draw/
draw_vs_ppc.c 57 float (*temps)[4][4],
  /external/mesa3d/src/gallium/auxiliary/draw/
draw_vs_ppc.c 57 float (*temps)[4][4],
  /external/vixl/test/
test-utils-a64.cc 326 UseScratchRegisterScope temps(masm);
327 temps.ExcludeAll();
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/d3d1x/gd3d1x/
sm4_to_tgsi.cpp 79 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));

Completed in 819 milliseconds

1 2 3