Searched defs:tmp (Results 1 - 6 of 6) sorted by relevance

/art/runtime/
H A Dzip_archive_test.cc37 ScratchFile tmp; local
38 ASSERT_NE(-1, tmp.GetFd());
39 UniquePtr<File> file(new File(tmp.GetFd(), tmp.GetFilename()));
46 int fd = open(tmp.GetFilename().c_str(), O_RDONLY);
H A Ddex_file_test.cc84 ScratchFile tmp; local
85 UniquePtr<const DexFile> raw(OpenDexFileBase64(kRawDex, tmp.GetFilename()));
H A Dcommon_test.h78 std::vector<byte> tmp; local
99 tmp.push_back((t >> 16) & 255);
101 tmp.push_back((t >> 8) & 255);
104 tmp.push_back(t & 255);
113 UniquePtr<byte[]> dst(new byte[tmp.size()]);
115 *dst_size = tmp.size();
119 std::copy(tmp.begin(), tmp.end(), dst.get());
266 android_data = (IsHost() ? "/tmp/art-data-XXXXXX" : "/data/dalvik-cache/art-data-XXXXXX");
/art/compiler/
H A Doutput_stream_test.cc62 ScratchFile tmp; local
63 FileOutputStream output_stream(tmp.GetFile());
66 UniquePtr<File> in(OS::OpenFileForReading(tmp.GetFilename().c_str()));
75 ScratchFile tmp; local
76 UniquePtr<FileOutputStream> file_output_stream(new FileOutputStream(tmp.GetFile()));
81 UniquePtr<File> in(OS::OpenFileForReading(tmp.GetFilename().c_str()));
H A Doat_test.cc86 ScratchFile tmp; local
96 tmp.GetFile());
103 UniquePtr<OatFile> oat_file(OatFile::Open(tmp.GetFilename(), tmp.GetFilename(), NULL, false));
/art/compiler/dex/quick/arm/
H A Dcall_arm.cc335 int tmp = r_disp; local
337 r_key = tmp;

Completed in 249 milliseconds