Searched defs:ret (Results 1 - 25 of 31) sorted by relevance

12

/art/runtime/gc/space/
H A Dbump_pointer_space-inl.h29 mirror::Object* ret = AllocNonvirtual(num_bytes); local
30 if (LIKELY(ret != nullptr)) {
36 return ret;
76 mirror::Object* ret = AllocNonvirtualWithoutAccounting(num_bytes); local
77 if (ret != nullptr) {
81 return ret;
/art/compiler/optimizing/
H A Dregister_allocator_test.cc317 HReturn* ret = return_block->GetLastInstruction()->AsReturn(); local
318 ASSERT_EQ(phi_interval->GetRegister(), ret->InputAt(0)->GetLiveInterval()->GetRegister());
H A Dcode_generator_arm.cc741 void LocationsBuilderARM::VisitReturnVoid(HReturnVoid* ret) { argument
742 ret->SetLocations(nullptr);
745 void InstructionCodeGeneratorARM::VisitReturnVoid(HReturnVoid* ret) { argument
749 void LocationsBuilderARM::VisitReturn(HReturn* ret) { argument
750 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(ret);
751 switch (ret->InputAt(0)->GetType()) {
767 LOG(FATAL) << "Unimplemented return type " << ret->InputAt(0)->GetType();
770 ret->SetLocations(locations);
773 void InstructionCodeGeneratorARM::VisitReturn(HReturn* ret) { argument
775 switch (ret
[all...]
H A Dcode_generator_x86.cc686 void LocationsBuilderX86::VisitReturnVoid(HReturnVoid* ret) { argument
687 ret->SetLocations(nullptr);
690 void InstructionCodeGeneratorX86::VisitReturnVoid(HReturnVoid* ret) { argument
692 __ ret();
695 void LocationsBuilderX86::VisitReturn(HReturn* ret) { argument
696 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(ret);
697 switch (ret->InputAt(0)->GetType()) {
713 LOG(FATAL) << "Unimplemented return type " << ret->InputAt(0)->GetType();
715 ret->SetLocations(locations);
718 void InstructionCodeGeneratorX86::VisitReturn(HReturn* ret) { argument
[all...]
H A Dcode_generator_x86_64.cc597 void LocationsBuilderX86_64::VisitReturnVoid(HReturnVoid* ret) { argument
598 ret->SetLocations(nullptr);
601 void InstructionCodeGeneratorX86_64::VisitReturnVoid(HReturnVoid* ret) { argument
603 __ ret();
606 void LocationsBuilderX86_64::VisitReturn(HReturn* ret) { argument
607 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(ret);
608 switch (ret->InputAt(0)->GetType()) {
620 LOG(FATAL) << "Unimplemented return type " << ret->InputAt(0)->GetType();
622 ret->SetLocations(locations);
625 void InstructionCodeGeneratorX86_64::VisitReturn(HReturn* ret) { argument
[all...]
/art/runtime/base/
H A Dstringpiece.cc29 int ret = std::min(length_ - pos, n); local
30 memcpy(buf, ptr_ + pos, ret);
31 return ret;
H A Dtiming_logger.cc167 TimingLogger::TimingData ret; local
168 ret.data_.resize(timings_.size());
175 ret.data_[open_idx].exclusive_time += time;
176 DCHECK_EQ(ret.data_[open_idx].total_time, 0U);
177 ret.data_[open_idx].total_time += time;
184 ret.data_[open_stack.back()].exclusive_time -= time;
192 return ret; // No need to fear, C++11 move semantics are here.
/art/compiler/
H A Dcompiled_method.cc209 CompiledMethod* ret = alloc.allocate(1); local
210 alloc.construct(ret, driver, instruction_set, quick_code, frame_size_in_bytes, core_spill_mask,
212 return ret;
222 CompiledMethod* ret = alloc.allocate(1); local
223 alloc.construct(ret, driver, instruction_set, quick_code, frame_size_in_bytes, core_spill_mask,
225 return ret;
H A Delf_patcher.cc135 uintptr_t ret = reinterpret_cast<uintptr_t>(oat_header_) + off; local
137 CHECK_GE(ret, reinterpret_cast<uintptr_t>(elf_file_->Begin()));
138 CHECK_LT(ret, reinterpret_cast<uintptr_t>(elf_file_->End()));
139 return reinterpret_cast<uint32_t*>(ret);
H A Delf_writer_quick.cc649 std::vector<Elf32_Dyn> ret; local
653 ret.push_back(
656 ret.push_back({it->tag_, {it->off_}});
659 ret.push_back({DT_STRSZ, {strsz}});
660 ret.push_back({DT_SONAME, {soname}});
661 ret.push_back({DT_NULL, {0}});
662 return ret;
666 std::vector<Elf32_Sym> ret; local
670 ret.push_back(undef_sym);
686 ret
[all...]
/art/compiler/utils/
H A Dswap_space.cc122 void* ret = old_chunk.ptr; local
130 return ret;
H A Darena_allocator.cc165 Arena* ret = nullptr; local
169 ret = free_arenas_;
173 if (ret == nullptr) {
174 ret = new Arena(size);
176 ret->Reset();
177 return ret;
238 uint8_t* ret = ptr_; local
241 for (uint8_t* ptr = ret; ptr < ptr_; ++ptr) {
244 VALGRIND_MAKE_MEM_NOACCESS(ret + bytes, rounded_bytes - bytes);
245 return ret;
[all...]
H A Ddedupe_set.h149 StoreKey* ret = allocator_.allocate(1); local
150 allocator_.construct(ret, key.begin(), key.end(), allocator_);
151 return ret;
H A Darena_allocator.h181 uint8_t* ret = ptr_; variable
183 return ret;
/art/runtime/gc/
H A Dheap-inl.h202 mirror::Object* ret; local
207 ret = bump_pointer_space_->AllocNonvirtual(alloc_size);
208 if (LIKELY(ret != nullptr)) {
217 ret = rosalloc_space_->Alloc(self, alloc_size, bytes_allocated, usable_size);
220 ret = rosalloc_space_->AllocNonvirtual(self, alloc_size, bytes_allocated, usable_size);
227 ret = dlmalloc_space_->Alloc(self, alloc_size, bytes_allocated, usable_size);
230 ret = dlmalloc_space_->AllocNonvirtual(self, alloc_size, bytes_allocated, usable_size);
235 ret = non_moving_space_->Alloc(self, alloc_size, bytes_allocated, usable_size);
239 ret = large_object_space_->Alloc(self, alloc_size, bytes_allocated, usable_size);
243 DCHECK(ret
[all...]
/art/runtime/
H A Dthread-inl.h172 mirror::Object* ret = reinterpret_cast<mirror::Object*>(tlsPtr_.thread_local_pos); local
174 return ret;
H A Dinstruction_set.h275 TwoWordReturn ret; local
276 ret.lo = 0;
277 return ret;
282 TwoWordReturn ret; local
283 ret.lo = lo;
284 ret.hi = hi;
285 return ret;
H A Doat_file.cc75 std::unique_ptr<OatFile> ret; local
82 ret.reset(OpenDlopen(filename, location, requested_base, error_msg));
95 ret.reset(OpenElfFile(file.get(), location, requested_base, oat_file_begin, false, executable,
102 return ret.release();
/art/runtime/jdwp/
H A Djdwp_adb.cc225 int ret = connect(control_sock_, &control_addr_.controlAddrPlain, control_addr_len_); local
226 if (!ret) {
237 ret = TEMP_FAILURE_RETRY(send(control_sock_, buff, 4, 0));
238 if (ret >= 0) {
/art/compiler/dex/quick/mips/
H A Dtarget_mips.cc503 LIR *ret = OpReg(kOpBlx, r_tgt); local
506 return ret;
/art/runtime/gc/collector/
H A Dmark_compact.cc451 mirror::Object* ret = local
453 DCHECK(ret != nullptr);
454 return ret;
/art/patchoat/
H A Dpatchoat.cc1281 bool ret; local
1284 ret = PatchOat::Patch(input_oat.get(), input_image_location, base_delta,
1290 ret = ret && FinishFile(output_image.get(), ret);
1291 ret = ret && FinishFile(output_oat.get(), ret);
1294 ret = PatchOat::Patch(input_oat.get(), base_delta, output_oat.get(), &timings,
1297 ret
[all...]
/art/compiler/dex/
H A Dmir_graph.cc1220 char* ret; local
1340 ret = static_cast<char*>(arena_->Alloc(length, kArenaAllocDFInfo));
1341 strncpy(ret, str.c_str(), length);
1342 return ret;
/art/compiler/dex/quick/arm/
H A Dint_arm.cc1127 bool ret = false; local
1133 ret = true;
1139 return ret;
/art/compiler/dex/quick/arm64/
H A Dint_arm64.cc976 bool ret = false; local
982 ret = true;
988 return ret;

Completed in 332 milliseconds

12