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

1 2 3 4 5

  /external/vixl/test/
test-use-scratch-register-scope.cc 127 UseScratchRegisterScope temps(&masm);
128 temps.Include(VRegisterList(q0, q1, q2, q3));
135 VIXL_CHECK(q0.Is(temps.AcquireQ()));
136 VIXL_CHECK(!temps.IsAvailable(q0));
137 VIXL_CHECK(!temps.IsAvailable(d0));
138 VIXL_CHECK(!temps.IsAvailable(d1));
139 VIXL_CHECK(!temps.IsAvailable(s0));
140 VIXL_CHECK(!temps.IsAvailable(s1));
141 VIXL_CHECK(!temps.IsAvailable(s2));
142 VIXL_CHECK(!temps.IsAvailable(s3))
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
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)
  /external/python/cpython2/Lib/
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/gdb/darwin-x86/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/gdb/linux-x86/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/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)
  /external/python/cpython2/Lib/plat-irix5/
torgb.py 60 temps = []
63 ret = _torgb(filename, temps)
65 for temp in temps[:]:
71 temps.remove(temp)
74 def _torgb(filename, temps):
78 temps.append(fname)
  /external/python/cpython2/Lib/plat-irix6/
torgb.py 60 temps = []
63 ret = _torgb(filename, temps)
65 for temp in temps[:]:
71 temps.remove(temp)
74 def _torgb(filename, temps):
78 temps.append(fname)
  /external/libcups/cups/
http-addr.c 540 temps[64]; /* Temporary string for address */ local
543 if (getnameinfo(&addr->addr, (socklen_t)httpAddrLength(addr), temps, sizeof(temps), NULL, 0, NI_NUMERICHOST))
554 else if ((sptr = strchr(temps, '%')) != NULL)
570 for (sptr = temps, i = 0; i < 4 && addr->ipv6.sin6_addr.s6_addr32[i]; i ++)
574 snprintf(sptr, sizeof(temps) - (size_t)(sptr - temps), "%s%x", prefix, (temp >> 16) & 0xffff);
582 snprintf(sptr, sizeof(temps) - (size_t)(sptr - temps), "%s%x", prefix, temp);
594 snprintf(sptr, sizeof(temps) - (size_t)(sptr - temps), "%s:", prefix)
    [all...]
  /art/compiler/utils/arm/
jni_macro_assembler_arm_vixl.cc 184 UseScratchRegisterScope temps(asm_.GetVIXLAssembler());
185 temps.Exclude(src.AsVIXLRegister());
204 UseScratchRegisterScope temps(asm_.GetVIXLAssembler());
205 temps.Exclude(src.AsVIXLRegister());
212 UseScratchRegisterScope temps(asm_.GetVIXLAssembler());
213 temps.Exclude(src.AsVIXLRegister());
224 UseScratchRegisterScope temps(asm_.GetVIXLAssembler());
225 temps.Exclude(scratch.AsVIXLRegister());
234 UseScratchRegisterScope temps(asm_.GetVIXLAssembler());
235 temps.Exclude(scratch.AsVIXLRegister())
    [all...]
assembler_arm_vixl.cc 233 UseScratchRegisterScope temps(&vixl_masm_);
240 tmp_reg = temps.Acquire();
302 UseScratchRegisterScope temps(&vixl_masm_);
303 vixl32::Register temp = (dest.Is(base)) ? temps.Acquire() : dest;
372 UseScratchRegisterScope temps(GetVIXLAssembler());
375 base = temps.Acquire();
393 UseScratchRegisterScope temps(GetVIXLAssembler());
396 base = temps.Acquire();
  /cts/hostsidetests/devicepolicy/app/DeviceOwner/src/com/android/cts/deviceowner/
VrTemperatureTest.java 52 private void checkTemps(float[] temps, float[] throttlingThresholds,
54 assertEquals(temps.length, throttlingThresholds.length);
55 assertEquals(temps.length, shutdownThresholds.length);
59 assertEquals(temps.length, vrThrottlingThresholds.length);
61 for (int i = 0; i < temps.length; ++i) {
62 checkDeviceTemp(temps[i], throttlingThresholds[i], shutdownThresholds[i],
HardwarePropertiesManagerTest.java 66 private void checkTemps(float[] temps, float[] throttlingThresholds,
68 assertEquals(temps.length, throttlingThresholds.length);
69 assertEquals(temps.length, shutdownThresholds.length);
70 for (int i = 0; i < temps.length; ++i) {
71 checkDeviceTemp(temps[i], throttlingThresholds[i], shutdownThresholds[i]);
  /external/mesa3d/src/gallium/drivers/vc4/
vc4_opt_vpm.c 96 uint32_t temps = 0; local
99 temps++;
105 if (temps == 1) {
  /external/vixl/src/aarch32/
macro-assembler-aarch32.cc     [all...]
  /prebuilts/go/darwin-x86/test/fixedbugs/
issue10654.go 7 // Issue 10654: Failure to use generated temps
  /prebuilts/go/linux-x86/test/fixedbugs/
issue10654.go 7 // Issue 10654: Failure to use generated temps
  /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/aarch64/
macro-assembler-aarch64.cc 451 UseScratchRegisterScope temps; local
454 temps.Open(masm);
455 temp = rd.IsSP() ? temps.AcquireSameSizeAs(rd) : rd;
769 UseScratchRegisterScope temps(this);
836 Register temp = temps.AcquireSameSizeAs(rn);
857 temps.Exclude(operand.GetRegister());
858 Register temp = temps.AcquireSameSizeAs(rn);
918 UseScratchRegisterScope temps(this);
919 Register temp = temps.AcquireW();
996 UseScratchRegisterScope temps(this)
1189 UseScratchRegisterScope temps; local
    [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...]
  /external/v8/src/compiler/
instruction-selector.h 81 size_t temp_count = 0, InstructionOperand* temps = nullptr);
84 InstructionOperand* temps = nullptr);
87 size_t temp_count = 0, InstructionOperand* temps = nullptr);
91 InstructionOperand* temps = nullptr);
95 size_t temp_count = 0, InstructionOperand* temps = nullptr);
100 InstructionOperand* temps = nullptr);
105 size_t temp_count = 0, InstructionOperand* temps = nullptr);
109 InstructionOperand* temps = nullptr);
  /external/v8/src/compiler/ia32/
instruction-selector-ia32.cc 300 InstructionOperand temps[] = {g.TempRegister(), g.TempRegister()}; local
301 size_t const temp_count = arraysize(temps);
305 Emit(code, 0, nullptr, input_count, inputs, temp_count, temps);
642 InstructionOperand temps[] = {g.TempRegister(eax)}; local
645 g.UseUniqueRegister(node->InputAt(1)), arraysize(temps), temps);
651 InstructionOperand temps[] = {g.TempRegister(edx)}; local
654 g.UseUnique(node->InputAt(1)), arraysize(temps), temps);
660 InstructionOperand temps[] = {g.TempRegister(eax)} local
725 InstructionOperand temps[] = {g.TempRegister()}; local
750 InstructionOperand temps[] = {g.TempRegister()}; local
777 InstructionOperand temps[] = {g.TempRegister(edx)}; local
804 InstructionOperand temps[1]; local
1014 InstructionOperand temps[] = {g.TempRegister(), g.TempRegister()}; local
1021 InstructionOperand temps[] = {g.TempRegister(eax)}; local
1029 InstructionOperand temps[] = {g.TempRegister()}; local
1037 InstructionOperand temps[] = {g.TempRegister()}; local
1045 InstructionOperand temps[] = {g.TempRegister()}; local
1053 InstructionOperand temps[] = {g.TempRegister()}; local
1085 InstructionOperand temps[] = {g.TempRegister()}; local
    [all...]
  /art/compiler/utils/arm64/
assembler_arm64.cc 57 UseScratchRegisterScope temps(&vixl_masm_);
58 temps.Exclude(reg_x(dst.AsXRegister()), reg_x(base.AsXRegister()));
68 UseScratchRegisterScope temps(&vixl_masm_);
69 temps.Exclude(reg_x(base.AsXRegister()), reg_x(scratch.AsXRegister()));
  /external/mesa3d/src/amd/vulkan/
radv_meta_bufimage.c 955 struct itob_temps temps; local
957 create_iview(cmd_buffer, src, VK_IMAGE_USAGE_SAMPLED_BIT, &temps.src_iview);
958 create_bview(cmd_buffer, dst->buffer, dst->offset, dst->format, &temps.dst_bview);
959 itob_bind_descriptors(cmd_buffer, &temps);
976 radv_temp_descriptor_set_destroy(cmd_buffer->device, temps.set);
1051 struct btoi_temps temps; local
1153 struct itoi_temps temps; local
1239 struct cleari_temps temps; local
    [all...]

Completed in 845 milliseconds

1 2 3 4 5