/external/vixl/test/ |
D | test-use-scratch-register-scope.cc | 124 UseScratchRegisterScope temps(&masm); in TEST_AARCH32() local 125 temps.Include(VRegisterList(q0, q1, q2, q3)); in TEST_AARCH32() 132 VIXL_CHECK(q0.Is(temps.AcquireQ())); in TEST_AARCH32() 133 VIXL_CHECK(!temps.IsAvailable(q0)); in TEST_AARCH32() 134 VIXL_CHECK(!temps.IsAvailable(d0)); in TEST_AARCH32() 135 VIXL_CHECK(!temps.IsAvailable(d1)); in TEST_AARCH32() 136 VIXL_CHECK(!temps.IsAvailable(s0)); in TEST_AARCH32() 137 VIXL_CHECK(!temps.IsAvailable(s1)); in TEST_AARCH32() 138 VIXL_CHECK(!temps.IsAvailable(s2)); in TEST_AARCH32() 139 VIXL_CHECK(!temps.IsAvailable(s3)); in TEST_AARCH32() [all …]
|
/external/clang/utils/ABITest/ |
D | Makefile.test.common | 31 test.%.report: temps/test.%.xx.diff temps/test.%.xy.diff temps/test.%.yx.diff temps/test.%.yy.diff 47 test.%.defs-report: temps/test.%.defs.diff 56 test.%.build: temps/test.%.ref temps/test.%.xx temps/test.%.xy temps/test.%.yx temps/test.%.yy temp… 63 .PRECIOUS: temps/.dir 65 .PRECIOUS: temps/test.%.xx.diff 66 temps/test.%.xx.diff: temps/test.%.ref.out temps/test.%.xx.out 68 .PRECIOUS: temps/test.%.xy.diff 69 temps/test.%.xy.diff: temps/test.%.ref.out temps/test.%.xy.out 71 .PRECIOUS: temps/test.%.yx.diff 72 temps/test.%.yx.diff: temps/test.%.ref.out temps/test.%.yx.out [all …]
|
/external/tensorflow/tensorflow/compiler/xla/python/ |
D | xla_data.i | 170 (std::vector<int64> temps) { 176 temps.resize(size); 187 temps[i] = numpy::PyIntOrPyLongToLong(py_int); 188 if (temps[i] == -1 && PyErr_Occurred()) { 196 $1 = temps; 232 %typemap(in) const std::vector<Literal>& (std::vector<Literal> temps) { 246 temps.push_back(literal_status.ConsumeValueOrDie()); 249 $1 = &temps; 321 %typemap(in) const std::vector<Shape>& (std::vector<Shape> temps) { 335 temps.push_back(statusor.ConsumeValueOrDie()); [all …]
|
D | xrt.i | 81 (std::vector<XrtAllocation*> temps) { 87 temps.reserve(size); 95 temps.push_back(xrta); 98 $1 = temps;
|
D | local_computation_builder.i | 54 std::vector<LocalOp> temps) { 67 temps.push_back(*op); 70 $1 = temps; 141 (std::vector<LocalShapedBuffer*> temps) { 147 temps.reserve(size); 155 temps.push_back(lsbp); 158 $1 = temps; 162 (std::vector<std::vector<LocalShapedBuffer*> > temps) { 168 temps.reserve(size); 186 temps.push_back(vec); [all …]
|
/external/vixl/src/aarch32/ |
D | macro-assembler-aarch32.cc | 677 UseScratchRegisterScope temps(this); in Delegate() local 678 Register scratch = temps.Acquire(); in Delegate() 724 UseScratchRegisterScope temps(this); in Delegate() local 725 Register scratch = temps.Acquire(); in Delegate() 752 UseScratchRegisterScope temps(this); in Delegate() local 753 Register scratch = temps.Acquire(); in Delegate() 763 UseScratchRegisterScope temps(this); in Delegate() local 764 Register scratch = temps.Acquire(); in Delegate() 774 UseScratchRegisterScope temps(this); in Delegate() local 775 Register scratch = temps.Acquire(); in Delegate() [all …]
|
/external/libcups/cups/ |
D | http-addr.c | 540 temps[64]; /* Temporary string for address */ in httpAddrString() local 543 …if (getnameinfo(&addr->addr, (socklen_t)httpAddrLength(addr), temps, sizeof(temps), NULL, 0, NI_NU… in httpAddrString() 554 else if ((sptr = strchr(temps, '%')) != NULL) in httpAddrString() 570 for (sptr = temps, i = 0; i < 4 && addr->ipv6.sin6_addr.s6_addr32[i]; i ++) in httpAddrString() 574 snprintf(sptr, sizeof(temps) - (size_t)(sptr - temps), "%s%x", prefix, (temp >> 16) & 0xffff); in httpAddrString() 582 snprintf(sptr, sizeof(temps) - (size_t)(sptr - temps), "%s%x", prefix, temp); in httpAddrString() 594 snprintf(sptr, sizeof(temps) - (size_t)(sptr - temps), "%s:", prefix); in httpAddrString() 605 … snprintf(sptr, sizeof(temps) - (size_t)(sptr - temps), "%s%x", prefix, (temp >> 16) & 0xffff); in httpAddrString() 609 snprintf(sptr, sizeof(temps) - (size_t)(sptr - temps), "%s%x", prefix, temp & 0xffff); in httpAddrString() 619 strlcpy(temps, "::", sizeof(temps)); in httpAddrString() [all …]
|
/external/v8/src/wasm/baseline/arm64/ |
D | liftoff-assembler-arm64.h | 83 inline CPURegister AcquireByType(UseScratchRegisterScope* temps, in AcquireByType() argument 87 return temps->AcquireW(); in AcquireByType() 89 return temps->AcquireX(); in AcquireByType() 91 return temps->AcquireS(); in AcquireByType() 93 return temps->AcquireD(); in AcquireByType() 100 UseScratchRegisterScope* temps, Register addr, in GetMemOp() argument 108 Register tmp = temps->AcquireW(); in GetMemOp() 203 UseScratchRegisterScope temps(this); in Load() 205 liftoff::GetMemOp(this, &temps, src_addr, offset_reg, offset_imm); in Load() 253 UseScratchRegisterScope temps(this); in Store() [all …]
|
/external/python/cpython2/Lib/ |
D | toaiff.py | 65 temps = [] 68 ret = _toaiff(filename, temps) 70 for temp in temps[:]: 76 temps.remove(temp) 79 def _toaiff(filename, temps): argument 83 temps.append(fname) 106 temps.append(temp)
|
/external/v8/src/arm64/ |
D | macro-assembler-arm64.cc | 116 UseScratchRegisterScope temps(this); in LogicalMacro() local 119 Register temp = temps.AcquireX(); in LogicalMacro() 185 Register temp = temps.AcquireSameSizeAs(rn); in LogicalMacro() 209 Register temp = temps.AcquireSameSizeAs(rn); in LogicalMacro() 265 UseScratchRegisterScope temps(this); in Mov() local 266 Register temp = rd.IsSP() ? temps.AcquireSameSizeAs(rd) : rd; in Mov() 305 UseScratchRegisterScope temps(this); in Mov() local 306 Register dst = (rd.IsSP()) ? temps.AcquireSameSizeAs(rd) : rd; in Mov() 378 UseScratchRegisterScope temps(this); in Movi16bitHelper() local 379 Register temp = temps.AcquireW(); in Movi16bitHelper() [all …]
|
D | deoptimizer-arm64.cc | 26 UseScratchRegisterScope temps(masm); in CopyRegListToFrame() local 35 Register src = temps.AcquireX(); in CopyRegListToFrame() 62 UseScratchRegisterScope temps(masm); in RestoreRegList() local 69 Register src = temps.AcquireX(); in RestoreRegList() 220 UseScratchRegisterScope temps(masm()); in Generate() local 221 Register scratch = temps.AcquireX(); in Generate() 283 UseScratchRegisterScope temps(masm()); in GeneratePrologue() local 288 Register entry_id = temps.AcquireX(); in GeneratePrologue()
|
/external/v8/src/mips64/ |
D | macro-assembler-mips64.cc | 309 UseScratchRegisterScope temps(this); in RecordWrite() local 310 Register scratch = temps.Acquire(); in RecordWrite() 352 UseScratchRegisterScope temps(this); in RecordWrite() local 353 Register scratch = temps.Acquire(); in RecordWrite() 378 UseScratchRegisterScope temps(this); in Addu() local 379 Register scratch = temps.Acquire(); in Addu() 395 UseScratchRegisterScope temps(this); in Daddu() local 396 Register scratch = temps.Acquire(); in Daddu() 414 UseScratchRegisterScope temps(this); in Subu() local 415 Register scratch = temps.Acquire(); in Subu() [all …]
|
/external/python/cpython2/Lib/plat-irix6/ |
D | torgb.py | 60 temps = [] 63 ret = _torgb(filename, temps) 65 for temp in temps[:]: 71 temps.remove(temp) 74 def _torgb(filename, temps): argument 78 temps.append(fname)
|
/external/python/cpython2/Lib/plat-irix5/ |
D | torgb.py | 60 temps = [] 63 ret = _torgb(filename, temps) 65 for temp in temps[:]: 71 temps.remove(temp) 74 def _torgb(filename, temps): argument 78 temps.append(fname)
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/LTO/Resolution/X86/ |
D | link-odr-availextern.ll | 8 ; RUN: llvm-lto2 run -o %t3 %t1 %t2ae -r %t1,f,p -r %t2ae,f, -save-temps 11 ; RUN: llvm-lto2 run -o %t3 %t1 %t2odr -r %t1,f,p -r %t2odr,f, -save-temps 14 ; RUN: llvm-lto2 run -o %t3 %t2ae %t1 -r %t1,f,p -r %t2ae,f, -save-temps 17 ; RUN: llvm-lto2 run -o %t3 %t2odr %t1 -r %t1,f,p -r %t2odr,f, -save-temps 20 ; RUN: llvm-lto2 run -o %t3 %t2ae -r %t2ae,f, -save-temps 23 ; RUN: llvm-lto2 run -o %t3 %t2odr -r %t2odr,f, -save-temps 26 ; RUN: llvm-lto2 run -o %t3 %t2odr %t1 -r %t1,f, -r %t2odr,f, -save-temps
|
D | common2.ll | 7 ; RUN: llvm-lto2 run %t1.bc %t2.bc -o %t.o -save-temps \ 15 ; RUN: llvm-lto2 run %t2.bc %t1.bc -o %t.o -save-temps \ 23 ; RUN: llvm-lto2 run %t1.bc %t2.bc -o %t.o -save-temps \ 31 ; RUN: llvm-lto2 run %t2.bc %t1.bc -o %t.o -save-temps \ 40 ; RUN: llvm-lto2 run %t1.bc %t2.bc -o %t.o -save-temps \ 48 ; RUN: llvm-lto2 run %t2.bc %t1.bc -o %t.o -save-temps \
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/tools/gold/X86/ |
D | relocation-model-pic.ll | 12 ; RUN: --plugin-opt=save-temps %t.o -o %t-out 17 ; RUN: --plugin-opt=save-temps %t.o -o %t-out 22 ; RUN: --plugin-opt=save-temps %t.o -o %t-out 27 ; RUN: --plugin-opt=save-temps %t.o -o %t-out 34 ; RUN: --plugin-opt=save-temps %t.pic.o -o %t-out 39 ; RUN: --plugin-opt=save-temps %t.pic.o -o %t-out 44 ; RUN: --plugin-opt=save-temps %t.pic.o -o %t-out 49 ; RUN: --plugin-opt=save-temps %t.pic.o -o %t-out
|
/external/vixl/src/aarch64/ |
D | macro-assembler-aarch64.cc | 463 UseScratchRegisterScope temps; in MoveImmediateHelper() local 466 temps.Open(masm); in MoveImmediateHelper() 467 temp = rd.IsSP() ? temps.AcquireSameSizeAs(rd) : rd; in MoveImmediateHelper() 809 UseScratchRegisterScope temps(this); in LogicalMacro() local 876 Register temp = temps.AcquireSameSizeAs(rn); in LogicalMacro() 901 temps.Exclude(operand.GetRegister()); in LogicalMacro() 902 Register temp = temps.AcquireSameSizeAs(rn); in LogicalMacro() 962 UseScratchRegisterScope temps(this); in Movi16bitHelper() local 963 Register temp = temps.AcquireW(); in Movi16bitHelper() 1040 UseScratchRegisterScope temps(this); in Movi32bitHelper() local [all …]
|
/external/v8/src/compiler/arm/ |
D | code-generator-arm.cc | 656 UseScratchRegisterScope temps(tasm()); in AssembleCodeStartRegisterCheck() local 657 Register scratch = temps.Acquire(); in AssembleCodeStartRegisterCheck() 671 UseScratchRegisterScope temps(tasm()); in BailoutIfDeoptimized() local 672 Register scratch = temps.Acquire(); in BailoutIfDeoptimized() 687 UseScratchRegisterScope temps(tasm()); in GenerateSpeculationPoisonFromCodeStartRegister() local 688 Register scratch = temps.Acquire(); in GenerateSpeculationPoisonFromCodeStartRegister() 795 UseScratchRegisterScope temps(tasm()); in AssembleArchInstruction() local 796 Register scratch = temps.Acquire(); in AssembleArchInstruction() 1459 UseScratchRegisterScope temps(tasm()); in AssembleArchInstruction() local 1460 SwVfpRegister scratch = temps.AcquireS(); in AssembleArchInstruction() [all …]
|
/external/v8/src/mips/ |
D | macro-assembler-mips.cc | 309 UseScratchRegisterScope temps(this); in RecordWrite() local 310 Register scratch = temps.Acquire(); in RecordWrite() 353 UseScratchRegisterScope temps(this); in RecordWrite() local 354 Register scratch = temps.Acquire(); in RecordWrite() 378 UseScratchRegisterScope temps(this); in Addu() local 379 Register scratch = temps.Acquire(); in Addu() 396 UseScratchRegisterScope temps(this); in Subu() local 397 Register scratch = temps.Acquire(); in Subu() 403 UseScratchRegisterScope temps(this); in Subu() local 404 Register scratch = temps.Acquire(); in Subu() [all …]
|
/external/v8/src/arm/ |
D | macro-assembler-arm.cc | 199 UseScratchRegisterScope temps(this); in Jump() local 200 Register scratch = temps.Acquire(); in Jump() 321 UseScratchRegisterScope temps(this); in Push() local 322 Register scratch = temps.Acquire(); in Push() 328 UseScratchRegisterScope temps(this); in Push() local 329 Register scratch = temps.Acquire(); in Push() 384 UseScratchRegisterScope temps(this); in Swap() local 385 Register scratch = temps.Acquire(); in Swap() 399 UseScratchRegisterScope temps(this); in Swap() local 400 DwVfpRegister scratch = temps.AcquireD(); in Swap() [all …]
|
D | deoptimizer-arm.cc | 37 UseScratchRegisterScope temps(masm()); in Generate() local 38 Register scratch = temps.Acquire(); in Generate() 59 UseScratchRegisterScope temps(masm()); in Generate() local 60 Register scratch = temps.Acquire(); in Generate() 229 UseScratchRegisterScope temps(masm()); in Generate() local 230 Register scratch = temps.Acquire(); in Generate() 247 UseScratchRegisterScope temps(masm()); in GeneratePrologue() local 248 Register scratch = temps.Acquire(); in GeneratePrologue()
|
/external/v8/src/compiler/ia32/ |
D | instruction-selector-ia32.cc | 364 InstructionOperand temps[] = {g.TempRegister(), g.TempRegister()}; in VisitStore() local 365 size_t const temp_count = arraysize(temps); in VisitStore() 369 Emit(code, 0, nullptr, arraysize(inputs), inputs, temp_count, temps); in VisitStore() 550 InstructionOperand temps[] = {g.TempRegister(eax)}; in VisitMulHigh() local 553 g.UseUniqueRegister(node->InputAt(1)), arraysize(temps), temps); in VisitMulHigh() 559 InstructionOperand temps[] = {g.TempRegister(edx)}; in VisitDiv() local 562 g.UseUnique(node->InputAt(1)), arraysize(temps), temps); in VisitDiv() 568 InstructionOperand temps[] = {g.TempRegister(eax)}; in VisitMod() local 571 g.UseUnique(node->InputAt(1)), arraysize(temps), temps); in VisitMod() 633 InstructionOperand temps[] = {g.TempRegister()}; in VisitInt32PairAdd() local [all …]
|
/external/mesa3d/src/gallium/drivers/vc4/ |
D | vc4_opt_vpm.c | 96 uint32_t temps = 0; in qir_opt_vpm() local 99 temps++; in qir_opt_vpm() 105 if (temps == 1) { in qir_opt_vpm()
|
/external/llvm/test/tools/gold/X86/ |
D | opt-level.ll | 2 ; RUN: %gold -plugin %llvmshlibdir/LLVMgold.so -plugin-opt=save-temps \ 5 ; RUN: %gold -plugin %llvmshlibdir/LLVMgold.so -plugin-opt=save-temps \ 8 ; RUN: %gold -plugin %llvmshlibdir/LLVMgold.so -plugin-opt=save-temps \
|