Searched refs:tmp (Results 1 - 25 of 39) sorted by relevance

12

/art/runtime/
H A Ddex_file_verifier_test.cc59 std::vector<uint8_t> 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<uint8_t[]> dst(new uint8_t[tmp.size()]);
96 *dst_size = tmp.size();
100 std::copy(tmp.begin(), tmp.end(), dst.get());
126 std::vector<std::unique_ptr<const DexFile>> tmp; local
127 bool success = DexFile::Open(location, location, error_msg, &tmp);
153 ScratchFile tmp; local
192 std::vector<std::unique_ptr<const DexFile>> tmp; local
222 ScratchFile tmp; local
231 ScratchFile tmp; local
240 ScratchFile tmp; local
300 ScratchFile tmp; local
310 ScratchFile tmp; local
[all...]
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.cc65 std::vector<uint8_t> tmp; local
86 tmp.push_back((t >> 16) & 255);
88 tmp.push_back((t >> 8) & 255);
91 tmp.push_back(t & 255);
100 std::unique_ptr<uint8_t[]> dst(new uint8_t[tmp.size()]);
102 *dst_size = tmp.size();
106 std::copy(tmp.begin(), tmp.end(), dst.get());
158 std::vector<std::unique_ptr<const DexFile>> tmp; local
159 bool success = DexFile::Open(location, location, &error_msg, &tmp);
169 ScratchFile tmp; local
[all...]
H A Dcommon_runtime_test.cc175 android_data = "/tmp";
537 std::vector<const DexFile*> tmp(GetDexFiles(jclass_loader));
538 DCHECK(!tmp.empty());
539 const DexFile* ret = tmp[0];
H A Dutils.cc1050 char* tmp = buffer; local
1052 char* new_line = strchr(tmp, '\n');
1055 if (*tmp != 0) {
1060 *os << tmp; local
1069 *os << tmp; local
1071 tmp = new_line + 1;
/art/runtime/interpreter/
H A Dunstarted_runtime_test.cc80 ShadowFrame* tmp = ShadowFrame::CreateDeoptimizedFrame(10, nullptr, nullptr, 0); local
83 tmp->SetVRegLong(0, static_cast<int64_t>(reinterpret_cast<intptr_t>(base_ptr + i)));
85 UnstartedMemoryPeekByte(self, tmp, &result, 0);
90 ShadowFrame::DeleteDeoptimizedFrame(tmp);
102 ShadowFrame* tmp = ShadowFrame::CreateDeoptimizedFrame(10, nullptr, nullptr, 0); local
106 tmp->SetVRegLong(0, static_cast<int64_t>(reinterpret_cast<intptr_t>(base_ptr + i)));
108 UnstartedMemoryPeekShort(self, tmp, &result, 0);
115 ShadowFrame::DeleteDeoptimizedFrame(tmp);
127 ShadowFrame* tmp = ShadowFrame::CreateDeoptimizedFrame(10, nullptr, nullptr, 0); local
131 tmp
152 ShadowFrame* tmp = ShadowFrame::CreateDeoptimizedFrame(10, nullptr, nullptr, 0); local
184 ShadowFrame* tmp = ShadowFrame::CreateDeoptimizedFrame(10, nullptr, nullptr, 0); local
238 ShadowFrame* tmp = ShadowFrame::CreateDeoptimizedFrame(10, nullptr, nullptr, 0); local
[all...]
/art/test/704-multiply-accumulate/src/
H A DMain.java43 int tmp = 0;
46 tmp = i*c;
48 result = i - tmp;
70 tmp++;
91 tmp = obj.ia;
92 result = result + tmp;
104 long tmp = 0;
107 tmp = i*c;
109 result = i - tmp;
131 tmp
[all...]
/art/tools/
H A Dsymbolize.sh41 adb pull $1/$2 /tmp || exit 1
43 oatdump --symbolize=/tmp/$2 --output=$OUT/symbols/$1/$2
/art/compiler/
H A Doutput_stream_test.cc65 ScratchFile tmp; local
66 FileOutputStream output_stream(tmp.GetFile());
69 std::unique_ptr<File> in(OS::OpenFileForReading(tmp.GetFilename().c_str()));
78 ScratchFile tmp; local
80 std::unique_ptr<FileOutputStream> file_output_stream(new FileOutputStream(tmp.GetFile()));
86 std::unique_ptr<File> in(OS::OpenFileForReading(tmp.GetFilename().c_str()));
H A Doat_test.cc104 ScratchFile tmp; local
119 tmp.GetFile());
125 std::unique_ptr<OatFile> oat_file(OatFile::Open(tmp.GetFilename(), tmp.GetFilename(), nullptr,
/art/compiler/optimizing/
H A Dcode_generator_utils.cc59 uint64_t tmp = exp + sign_bit; local
60 uint64_t abs_nc = tmp - 1 - (tmp % abs_d);
/art/runtime/base/unix_file/
H A Dfd_file_test.cc70 art::ScratchFile tmp; local
72 ASSERT_TRUE(file.Open(tmp.GetFilename(), O_RDONLY));
86 art::ScratchFile tmp; local
88 ASSERT_TRUE(file.Open(tmp.GetFilename(), O_RDWR));
/art/test/115-native-bridge/
H A Dnativebridge.cc197 struct sigaction tmp; local
198 sigemptyset(&tmp.sa_mask);
199 tmp.sa_sigaction = test_sigaction_handler;
201 tmp.sa_restorer = nullptr;
203 sigaction(SIGSEGV, &tmp, nullptr);
275 char* tmp = new char[len + 10]; local
276 strncpy(tmp, libpath, len);
277 tmp[len - 3] = '2';
278 tmp[len - 2] = '.';
279 tmp[le
[all...]
/art/sigchainlib/
H A Dsigchain.cc340 struct sigaction tmp; local
341 tmp.sa_sigaction = sigchainlib_managed_handler_sigaction;
342 sigemptyset(&tmp.sa_mask);
343 tmp.sa_flags = SA_SIGINFO | SA_ONSTACK;
345 tmp.sa_restorer = nullptr;
347 user_sigactions[signal].Claim(tmp);
/art/compiler/dex/quick/mips/
H A Dutility_mips.cc200 int64_t tmp = value; local
202 while ((tmp & 1) == 0) {
203 tmp >>= 1;
207 if (IsUint<16>(tmp)) {
208 res = NewLIR3(kMipsOri, r_dest.GetReg(), rZEROd, tmp);
211 } else if (IsInt<16>(tmp)) {
212 res = NewLIR3(kMips64Daddiu, r_dest.GetReg(), rZEROd, tmp);
215 } else if (IsInt<32>(tmp)) {
217 res = NewLIR2(kMipsLui, r_dest.GetReg(), tmp >> 16);
218 NewLIR3(kMipsOri, r_dest.GetReg(), r_dest.GetReg(), tmp);
[all...]
H A Dtarget_mips.cc777 RegStorage tmp = AllocTemp(); local
780 LoadWordDisp(TargetPtrReg(kSelf), Thread::ThreadSuspendTriggerOffset<8>().Int32Value(), tmp);
782 LoadWordDisp(TargetPtrReg(kSelf), Thread::ThreadSuspendTriggerOffset<4>().Int32Value(), tmp);
784 LIR *inst = LoadWordDisp(tmp, 0, tmp);
785 FreeTemp(tmp);
/art/build/
H A DAndroid.common.mk27 GCOV_PREFIX := /data/local/tmp/gcov
H A DAndroid.common_path.mk41 ART_HOST_TEST_DIR := /tmp/test-art-$(shell echo $$PPID)
/art/compiler/utils/arm/
H A Dassembler_arm32_test.cc464 size_t tmp; local
466 tmp = GetRegisters().size();
468 tmp--;; // Approximation...
470 return tmp;
483 size_t tmp; local
485 tmp = GetRegisters().size();
487 tmp--;; // Approximation...
490 tmp = GetShiftOperands().size();
492 tmp = GetConditions().size();
495 tmp
[all...]
/art/runtime/native/
H A Ddalvik_system_DexFile.cc87 jlong* tmp = long_data; local
89 *tmp = reinterpret_cast<uintptr_t>(dex_file.get());
90 tmp++;
/art/compiler/dex/quick/x86/
H A Dint_x86.cc466 RegStorage tmp = AllocTypedTempWide(false, kCoreReg); local
467 LoadConstantWide(tmp, val);
468 OpRegReg(kOpCmp, rl_src1.reg, tmp);
469 FreeTemp(tmp);
504 RegStorage tmp = AllocTypedTempWide(false, kCoreReg); local
505 LoadConstantWide(tmp, val);
506 OpRegReg(kOpSub, tmp.GetLow(), low_reg);
507 OpRegReg(kOpSbc, tmp.GetHigh(), high_reg);
509 FreeTemp(tmp);
561 uint64_t tmp local
934 RegStorage tmp = AllocTemp(false); local
[all...]
/art/cmdline/
H A Dtoken_range.h376 TokenList tmp(begin(), end());
377 return art::Join(tmp, separator);
/art/compiler/utils/mips64/
H A Dassembler_mips64.cc675 int64_t tmp = value >> shift_cnt; local
676 if (IsUint<16>(tmp)) {
677 Ori(rd, ZERO, tmp);
682 } else if (IsInt<16>(tmp)) {
683 Daddiu(rd, ZERO, tmp);
688 } else if (IsInt<32>(tmp)) {
690 Lui(rd, tmp >> 16);
691 Ori(rd, rd, tmp);
698 tmp = value >> shift_cnt;
699 if (IsUint<16>(tmp)) {
[all...]
/art/runtime/base/
H A Dbit_utils.h278 Iter tmp(static_cast<Iter&>(*this));
280 return tmp;
/art/test/004-ThreadStress/src/
H A DMain.java295 Set<Operation> tmp = new HashSet<>(map.keySet());
296 for (Operation op : tmp) {

Completed in 1411 milliseconds

12