Home
last modified time | relevance | path

Searched refs:cur (Results 1 – 16 of 16) sorted by relevance

/art/runtime/
Dleb128.h31 int cur = *(ptr++); in DecodeUnsignedLeb128() local
32 result = (result & 0x7f) | ((cur & 0x7f) << 7); in DecodeUnsignedLeb128()
33 if (cur > 0x7f) { in DecodeUnsignedLeb128()
34 cur = *(ptr++); in DecodeUnsignedLeb128()
35 result |= (cur & 0x7f) << 14; in DecodeUnsignedLeb128()
36 if (cur > 0x7f) { in DecodeUnsignedLeb128()
37 cur = *(ptr++); in DecodeUnsignedLeb128()
38 result |= (cur & 0x7f) << 21; in DecodeUnsignedLeb128()
39 if (cur > 0x7f) { in DecodeUnsignedLeb128()
42 cur = *(ptr++); in DecodeUnsignedLeb128()
[all …]
Ddisassembler_mips.cc269 for (const uint8_t* cur = begin; cur < end; cur += 4) { in Dump() local
270 DumpMips(os, cur); in Dump()
Ddisassembler_arm.cc44 for (const uint8_t* cur = begin; cur < end; cur += 4) { in Dump() local
45 DumpArm(os, cur); in Dump()
51 for (const uint8_t* cur = begin; cur < end;) { in Dump() local
52 cur += DumpThumb16(os, cur); in Dump()
Ddisassembler_x86.cc36 for (const uint8_t* cur = begin; cur < end; cur += length) { in Dump() local
37 length = DumpInstruction(os, cur); in Dump()
Dthread.cc1132 for (StackIndirectReferenceTable* cur = top_sirt_; cur; cur = cur->GetLink()) { in NumSirtReferences() local
1133 count += cur->NumberOfReferences(); in NumSirtReferences()
1140 for (StackIndirectReferenceTable* cur = top_sirt_; cur; cur = cur->GetLink()) { in SirtContains() local
1141 if (cur->Contains(sirt_entry)) { in SirtContains()
1150 for (StackIndirectReferenceTable* cur = top_sirt_; cur; cur = cur->GetLink()) { in SirtVisitRoots() local
1151 size_t num_refs = cur->NumberOfReferences(); in SirtVisitRoots()
1153 mirror::Object* object = cur->GetReference(j); in SirtVisitRoots()
Dinstrumentation.cc411 InstrumentationListener* cur = *it; in MethodEnterEventImpl() local
414 cur->MethodEntered(thread, this_object, method, dex_pc); in MethodEnterEventImpl()
425 InstrumentationListener* cur = *it; in MethodExitEventImpl() local
428 cur->MethodExited(thread, this_object, method, dex_pc, return_value); in MethodExitEventImpl()
Ddebugger.cc3440 for (It cur = spaces.begin(), end = spaces.end(); cur != end; ++cur) { in DdmSendHeapSegments() local
3441 if ((*cur)->IsDlMallocSpace()) { in DdmSendHeapSegments()
3442 (*cur)->AsDlMallocSpace()->Walk(HeapChunkContext::HeapChunkCallback, &context); in DdmSendHeapSegments()
/art/runtime/mirror/
Dart_method.cc164 for (It cur = table.PcToDexBegin(), end = table.PcToDexEnd(); cur != end; ++cur) { in ToDexPc() local
165 if (cur.NativePcOffset() == sought_offset) { in ToDexPc()
166 return cur.DexPc(); in ToDexPc()
171 for (It2 cur = table.DexToPcBegin(), end = table.DexToPcEnd(); cur != end; ++cur) { in ToDexPc() local
172 if (cur.NativePcOffset() == sought_offset) { in ToDexPc()
173 return cur.DexPc(); in ToDexPc()
194 for (It cur = table.DexToPcBegin(), end = table.DexToPcEnd(); cur != end; ++cur) { in ToNativePc() local
195 if (cur.DexPc() == dex_pc) { in ToNativePc()
197 return reinterpret_cast<uintptr_t>(code) + cur.NativePcOffset(); in ToNativePc()
202 for (It2 cur = table.PcToDexBegin(), end = table.PcToDexEnd(); cur != end; ++cur) { in ToNativePc() local
[all …]
Dobject.cc92 for (const Class* cur = c; cur != NULL; cur = cur->GetSuperClass()) { in CheckFieldAssignmentImpl() local
93 ObjectArray<ArtField>* fields = cur->GetIFields(); in CheckFieldAssignmentImpl()
95 size_t num_ref_ifields = cur->NumReferenceInstanceFields(); in CheckFieldAssignmentImpl()
/art/compiler/
Dleb128_encoder.h45 void InsertBack(It cur, It end) { in InsertBack() argument
46 for (; cur != end; ++cur) { in InsertBack()
47 PushBack(*cur); in InsertBack()
/art/compiler/utils/
Dassembler.h178 SlowPath* cur = slow_path_; in EnqueueSlowPath() local
179 for ( ; cur->next_ != NULL ; cur = cur->next_) {} in EnqueueSlowPath()
180 cur->next_ = slowpath; in EnqueueSlowPath()
185 SlowPath* cur = slow_path_; in EmitSlowPaths() local
188 for ( ; cur != NULL ; cur = next) { in EmitSlowPaths()
189 cur->Emit(sp_asm); in EmitSlowPaths()
190 next = cur->next_; in EmitSlowPaths()
191 delete cur; in EmitSlowPaths() local
/art/oatdump/
Doatdump.cc485 for (It cur = table.PcToDexBegin(), end = table.PcToDexEnd(); cur != end; ++cur) { in DumpMappingTable() local
486 indent_os << StringPrintf("0x%04x -> 0x%04x\n", cur.NativePcOffset(), cur.DexPc()); in DumpMappingTable()
493 for (It cur = table.DexToPcBegin(), end = table.DexToPcEnd(); cur != end; ++cur) { in DumpMappingTable() local
494 indent_os << StringPrintf("0x%04x -> 0x%04x\n", cur.NativePcOffset(), cur.DexPc()); in DumpMappingTable()
506 for (It cur = table.PcToDexBegin(), end = table.PcToDexEnd(); cur != end; ++cur) { in DumpMappingAtOffset() local
507 if (offset == cur.NativePcOffset()) { in DumpMappingAtOffset()
508 os << StringPrintf("suspend point dex PC: 0x%04x\n", cur.DexPc()); in DumpMappingAtOffset()
509 return cur.DexPc(); in DumpMappingAtOffset()
514 for (It cur = table.DexToPcBegin(), end = table.DexToPcEnd(); cur != end; ++cur) { in DumpMappingAtOffset() local
515 if (offset == cur.NativePcOffset()) { in DumpMappingAtOffset()
[all …]
/art/runtime/gc/space/
Dlarge_object_space.cc183 AllocationHeader* cur = reinterpret_cast<AllocationHeader*>(pos); in GetNextNonFree() local
184 if (!cur->IsFree()) return cur; in GetNextNonFree()
/art/runtime/gc/collector/
Dmark_sweep.cc1306 const ArtField* cur = fields->Get(i); in CheckReference() local
1307 if (cur->GetOffset().Int32Value() == offset.Int32Value()) { in CheckReference()
1308 LOG(WARNING) << "Field referencing the alloc space was " << PrettyField(cur); in CheckReference()
/art/compiler/dex/quick/
Dcodegen_util.cc1027 for (uint16_t cur : raw_vmap_table) { in GetCompiledMethod() local
1028 vmap_encoder.PushBack(cur); in GetCompiledMethod()
/art/runtime/gc/
Dheap.cc1568 const mirror::ArtField* cur = fields->Get(i); in operator ()() local
1569 if (cur->GetOffset().Int32Value() == offset.Int32Value()) { in operator ()()
1571 << PrettyField(cur); in operator ()()