HomeSort by relevance Sort by last modified time
    Searched defs:temps (Results 1 - 24 of 24) sorted by null

  /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/chromium_org/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/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.h 479 TCGTemp temps[TCG_MAX_TEMPS]; /* globals first, temps after */ member in struct:TCGContext
  /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));
  /external/chromium_org/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/mesa3d/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));
  /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/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...]
st_glsl_to_tgsi.cpp 500 * sources into temps.
3892 struct ureg_dst temps[MAX_TEMPS]; member in struct:st_translate
    [all...]
  /external/chromium_org/v8/src/compiler/arm/
instruction-selector-arm.cc 338 InstructionOperand* temps[] = {g.TempRegister(r5), g.TempRegister(r6)}; local
340 g.UseFixed(index, r5), g.UseFixed(value, r6), arraysize(temps),
341 temps);
  /external/chromium_org/v8/src/compiler/arm64/
instruction-selector-arm64.cc 220 InstructionOperand* temps[] = {g.TempRegister(x11), g.TempRegister(x12)}; local
222 g.UseFixed(index, x11), g.UseFixed(value, x12), arraysize(temps),
223 temps);
  /external/chromium_org/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/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/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...]
st_glsl_to_tgsi.cpp 500 * sources into temps.
3892 struct ureg_dst temps[MAX_TEMPS]; member in struct:st_translate
    [all...]
  /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/tgsi/
tgsi_exec.c 538 const struct tgsi_exec_vector *tmp = &mach->Temps[index];
833 mach->Addrs = &mach->Temps[TGSI_EXEC_TEMP_ADDR];
835 mach->Predicates = &mach->Temps[TGSI_EXEC_TEMP_P0];
844 mach->Temps[TGSI_EXEC_TEMP_00000000_I].xyzw[TGSI_EXEC_TEMP_00000000_C].u[i] = 0x00000000;
845 mach->Temps[TGSI_EXEC_TEMP_7FFFFFFF_I].xyzw[TGSI_EXEC_TEMP_7FFFFFFF_C].u[i] = 0x7FFFFFFF;
846 mach->Temps[TGSI_EXEC_TEMP_80000000_I].xyzw[TGSI_EXEC_TEMP_80000000_C].u[i] = 0x80000000;
847 mach->Temps[TGSI_EXEC_TEMP_FFFFFFFF_I].xyzw[TGSI_EXEC_TEMP_FFFFFFFF_C].u[i] = 0xFFFFFFFF; /* not used */
848 mach->Temps[TGSI_EXEC_TEMP_ONE_I].xyzw[TGSI_EXEC_TEMP_ONE_C].f[i] = 1.0f;
849 mach->Temps[TGSI_EXEC_TEMP_TWO_I].xyzw[TGSI_EXEC_TEMP_TWO_C].f[i] = 2.0f; /* not used */
850 mach->Temps[TGSI_EXEC_TEMP_128_I].xyzw[TGSI_EXEC_TEMP_128_C].f[i] = 128.0f
4270 struct tgsi_exec_vector temps[TGSI_EXEC_NUM_TEMPS + TGSI_EXEC_NUM_TEMP_EXTRAS]; local
    [all...]
  /external/mesa3d/src/gallium/auxiliary/tgsi/
tgsi_exec.c 538 const struct tgsi_exec_vector *tmp = &mach->Temps[index];
833 mach->Addrs = &mach->Temps[TGSI_EXEC_TEMP_ADDR];
835 mach->Predicates = &mach->Temps[TGSI_EXEC_TEMP_P0];
844 mach->Temps[TGSI_EXEC_TEMP_00000000_I].xyzw[TGSI_EXEC_TEMP_00000000_C].u[i] = 0x00000000;
845 mach->Temps[TGSI_EXEC_TEMP_7FFFFFFF_I].xyzw[TGSI_EXEC_TEMP_7FFFFFFF_C].u[i] = 0x7FFFFFFF;
846 mach->Temps[TGSI_EXEC_TEMP_80000000_I].xyzw[TGSI_EXEC_TEMP_80000000_C].u[i] = 0x80000000;
847 mach->Temps[TGSI_EXEC_TEMP_FFFFFFFF_I].xyzw[TGSI_EXEC_TEMP_FFFFFFFF_C].u[i] = 0xFFFFFFFF; /* not used */
848 mach->Temps[TGSI_EXEC_TEMP_ONE_I].xyzw[TGSI_EXEC_TEMP_ONE_C].f[i] = 1.0f;
849 mach->Temps[TGSI_EXEC_TEMP_TWO_I].xyzw[TGSI_EXEC_TEMP_TWO_C].f[i] = 2.0f; /* not used */
850 mach->Temps[TGSI_EXEC_TEMP_128_I].xyzw[TGSI_EXEC_TEMP_128_C].f[i] = 128.0f
4270 struct tgsi_exec_vector temps[TGSI_EXEC_NUM_TEMPS + TGSI_EXEC_NUM_TEMP_EXTRAS]; local
    [all...]
  /external/pdfium/core/src/reflow/
layoutprocessor_reflow.cpp 814 int temps = m_pTempLine->GetSize(); local
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
gimple.h 952 tree temps; member in struct:gimplify_ctx
    [all...]
  /external/chromium_org/third_party/cython/src/Cython/Compiler/
Nodes.py 157 temps = None variable in class:Node
    [all...]
  /external/mksh/src/
sh.h 712 struct temp *temps; /* temp files */ member in struct:env
    [all...]

Completed in 2146 milliseconds