Searched refs:tmp (Results 1 - 22 of 22) sorted by last modified time

/art/test/115-native-bridge/
H A Dnativebridge.cc228 char* tmp = new char[len + 10]; local
229 strncpy(tmp, libpath, len);
230 tmp[len - 3] = '2';
231 tmp[len - 2] = '.';
232 tmp[len - 1] = 's';
233 tmp[len] = 'o';
234 tmp[len + 1] = 0;
235 void* handle = dlopen(tmp, flag);
236 delete[] tmp;
/art/runtime/
H A Dutils.h298 } tmp; local
299 tmp.u = in;
300 return tmp.v;
H A Dzip_archive_test.cc42 ScratchFile tmp; local
43 ASSERT_NE(-1, tmp.GetFd());
44 std::unique_ptr<File> file(new File(tmp.GetFd(), tmp.GetFilename(), false));
52 int fd = open(tmp.GetFilename().c_str(), O_RDONLY);
H A Ddex_file_test.cc64 std::vector<byte> tmp; local
85 tmp.push_back((t >> 16) & 255);
87 tmp.push_back((t >> 8) & 255);
90 tmp.push_back(t & 255);
99 std::unique_ptr<byte[]> dst(new byte[tmp.size()]);
101 *dst_size = tmp.size();
105 std::copy(tmp.begin(), tmp.end(), dst.get());
157 std::vector<const DexFile*> tmp; local
158 bool success = DexFile::Open(location, location, &error_msg, &tmp);
168 ScratchFile tmp; local
[all...]
H A Ddex_file_verifier_test.cc59 std::vector<byte> tmp; local
80 tmp.push_back((t >> 16) & 255);
82 tmp.push_back((t >> 8) & 255);
85 tmp.push_back(t & 255);
94 std::unique_ptr<byte[]> dst(new byte[tmp.size()]);
96 *dst_size = tmp.size();
100 std::copy(tmp.begin(), tmp.end(), dst.get());
125 std::vector<const DexFile*> tmp; local
126 bool success = DexFile::Open(location, location, error_msg, &tmp);
152 ScratchFile tmp; local
190 std::vector<const DexFile*> tmp; local
220 ScratchFile tmp; local
229 ScratchFile tmp; local
238 ScratchFile tmp; local
[all...]
/art/compiler/utils/
H A Dassembler_test.h686 ScratchFile tmp; local
687 tmpnam_ = tmp.GetFilename() + "asm";
/art/runtime/base/unix_file/
H A Dfd_file_test.cc70 art::ScratchFile tmp; local
72 ASSERT_TRUE(file.Open(tmp.GetFilename(), O_RDONLY));
/art/runtime/entrypoints/quick/
H A Dquick_trampoline_entrypoints.cc1437 uint64_t* tmp = reinterpret_cast<uint64_t*>(cur_fpr_reg_); local
1438 *tmp = val;
1543 uintptr_t tmp; local
1546 tmp = reinterpret_cast<uintptr_t>(h.ToJObject());
1548 return tmp;
/art/
H A DAndroid.mk74 rm -rf /tmp/$(USER)/test-*/dalvik-cache/*
75 rm -rf /tmp/android-data/dalvik-cache/*
/art/build/
H A DAndroid.common_path.mk41 ART_HOST_TEST_DIR := /tmp/test-art-$(shell echo $$PPID)
H A DAndroid.gtest.mk257 && (adb pull $(ART_TARGET_TEST_DIR)/$(TARGET_$(2)ARCH)/$$@-$$$$PPID /tmp/ \
260 $(hide) rm /tmp/$$@-$$$$PPID
/art/compiler/dex/quick/arm/
H A Dcall_arm.cc68 RegStorage tmp = r_disp; local
70 r_key = tmp;
H A Dtarget_arm.cc730 RegStorage tmp = rs_r0; local
731 Load32Disp(rs_rARM_SELF, Thread::ThreadSuspendTriggerOffset<4>().Int32Value(), tmp);
732 LIR* load2 = Load32Disp(tmp, 0, tmp);
/art/compiler/dex/quick/arm64/
H A Dtarget_arm64.cc768 RegStorage tmp = rs_x0; local
769 LoadWordDisp(rs_xSELF, Thread::ThreadSuspendTriggerOffset<8>().Int32Value(), tmp);
770 LIR* load2 = LoadWordDisp(tmp, 0, tmp);
1194 RegStorage tmp = AllocTemp(); local
1195 Load32Disp(TargetReg(kArg1, kRef), 0, tmp); local
1197 FreeTemp(tmp);
/art/compiler/dex/quick/
H A Dgen_common.cc210 RegStorage tmp = AllocTemp(); local
212 LIR* load = Load32Disp(reg, 0, tmp);
213 FreeTemp(tmp);
H A Dgen_invoke.cc881 RegStorage tmp = AllocTemp(); local
882 Load32Disp(reg, 0, tmp);
884 FreeTemp(tmp);
/art/compiler/dex/quick/mips/
H A Dtarget_mips.cc487 RegStorage tmp = AllocTemp(); local
489 LoadWordDisp(rs_rMIPS_SELF, Thread::ThreadSuspendTriggerOffset<4>().Int32Value(), tmp);
490 LIR *inst = LoadWordDisp(tmp, 0, tmp);
491 FreeTemp(tmp);
/art/compiler/dex/quick/x86/
H A Dint_x86.cc462 RegStorage tmp = AllocTypedTempWide(false, kCoreReg); local
463 LoadConstantWide(tmp, val);
464 OpRegReg(kOpCmp, rl_src1.reg, tmp);
465 FreeTemp(tmp);
500 RegStorage tmp = AllocTypedTempWide(false, kCoreReg); local
501 LoadConstantWide(tmp, val);
502 OpRegReg(kOpSub, tmp.GetLow(), low_reg);
503 OpRegReg(kOpSbc, tmp.GetHigh(), high_reg);
505 FreeTemp(tmp);
557 uint64_t tmp local
[all...]
H A Dtarget_x86.cc1847 * xmm3 is tmp (operate on high bits of 16bit lanes)
2196 // tmp = xmm1 .>> 8.
2819 RegStorage tmp = AllocTemp(); local
2820 Load32Disp(TargetReg(kArg1, kRef), 0, tmp); local
2822 FreeTemp(tmp);
/art/compiler/jni/
H A Djni_compiler_test.cc1511 jintArray tmp = env_->NewIntArray(i); local
1512 args[i].l = tmp;
/art/compiler/
H A Doat_test.cc117 ScratchFile tmp; local
131 tmp.GetFile());
138 std::unique_ptr<OatFile> oat_file(OatFile::Open(tmp.GetFilename(), tmp.GetFilename(), nullptr,
H A Doutput_stream_test.cc64 ScratchFile tmp; local
65 FileOutputStream output_stream(tmp.GetFile());
68 std::unique_ptr<File> in(OS::OpenFileForReading(tmp.GetFilename().c_str()));
77 ScratchFile tmp; local
78 std::unique_ptr<FileOutputStream> file_output_stream(new FileOutputStream(tmp.GetFile()));
83 std::unique_ptr<File> in(OS::OpenFileForReading(tmp.GetFilename().c_str()));

Completed in 1785 milliseconds