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

/art/runtime/
H A Dleb128.h31 int cur = *(ptr++); local
32 result = (result & 0x7f) | ((cur & 0x7f) << 7);
33 if (cur > 0x7f) {
34 cur = *(ptr++);
35 result |= (cur & 0x7f) << 14;
36 if (cur > 0x7f) {
37 cur = *(ptr++);
38 result |= (cur & 0x7f) << 21;
39 if (cur > 0x7f) {
40 // Note: We don't check to see if cur i
69 int cur = *(ptr++); local
[all...]
H A Ddisassembler_mips.cc269 for (const uint8_t* cur = begin; cur < end; cur += 4) {
270 DumpMips(os, cur);
H A Ddisassembler_x86.cc36 for (const uint8_t* cur = begin; cur < end; cur += length) {
37 length = DumpInstruction(os, cur);
H A Dinstrumentation.cc411 InstrumentationListener* cur = *it; local
414 cur->MethodEntered(thread, this_object, method, dex_pc);
425 InstrumentationListener* cur = *it; local
428 cur->MethodExited(thread, this_object, method, dex_pc, return_value);
H A Dthread.cc1132 for (StackIndirectReferenceTable* cur = top_sirt_; cur; cur = cur->GetLink()) {
1133 count += cur->NumberOfReferences();
1140 for (StackIndirectReferenceTable* cur = top_sirt_; cur; cur = cur->GetLink()) {
1141 if (cur
[all...]
H A Ddisassembler_arm.cc44 for (const uint8_t* cur = begin; cur < end; cur += 4) {
45 DumpArm(os, cur);
51 for (const uint8_t* cur = begin; cur < end;) {
52 cur += DumpThumb16(os, cur);
H A Ddebugger.cc3440 for (It cur = spaces.begin(), end = spaces.end(); cur != end; ++cur) {
3441 if ((*cur)->IsDlMallocSpace()) {
3442 (*cur)->AsDlMallocSpace()->Walk(HeapChunkContext::HeapChunkCallback, &context);
/art/compiler/
H A Dleb128_encoder.h45 void InsertBack(It cur, It end) { argument
46 for (; cur != end; ++cur) {
47 PushBack(*cur);
/art/runtime/mirror/
H A Dart_method.cc164 for (It cur = table.PcToDexBegin(), end = table.PcToDexEnd(); cur != end; ++cur) {
165 if (cur.NativePcOffset() == sought_offset) {
166 return cur.DexPc();
171 for (It2 cur = table.DexToPcBegin(), end = table.DexToPcEnd(); cur != end; ++cur) {
172 if (cur.NativePcOffset() == sought_offset) {
173 return cur
[all...]
H A Dobject.cc92 for (const Class* cur = c; cur != NULL; cur = cur->GetSuperClass()) {
93 ObjectArray<ArtField>* fields = cur->GetIFields();
95 size_t num_ref_ifields = cur->NumReferenceInstanceFields();
/art/compiler/utils/
H A Dassembler.h178 SlowPath* cur = slow_path_; local
179 for ( ; cur->next_ != NULL ; cur = cur->next_) {}
180 cur->next_ = slowpath;
185 SlowPath* cur = slow_path_; local
188 for ( ; cur != NULL ; cur = next) {
189 cur->Emit(sp_asm);
190 next = cur
[all...]
/art/oatdump/
H A Doatdump.cc485 for (It cur = table.PcToDexBegin(), end = table.PcToDexEnd(); cur != end; ++cur) {
486 indent_os << StringPrintf("0x%04x -> 0x%04x\n", cur.NativePcOffset(), cur.DexPc());
493 for (It cur = table.DexToPcBegin(), end = table.DexToPcEnd(); cur != end; ++cur) {
494 indent_os << StringPrintf("0x%04x -> 0x%04x\n", cur.NativePcOffset(), cur
[all...]
/art/runtime/gc/space/
H A Dlarge_object_space.cc183 AllocationHeader* cur = reinterpret_cast<AllocationHeader*>(pos); local
184 if (!cur->IsFree()) return cur;
/art/runtime/gc/collector/
H A Dmark_sweep.cc1306 const ArtField* cur = fields->Get(i); local
1307 if (cur->GetOffset().Int32Value() == offset.Int32Value()) {
1308 LOG(WARNING) << "Field referencing the alloc space was " << PrettyField(cur);
/art/compiler/dex/quick/
H A Dcodegen_util.cc1027 for (uint16_t cur : raw_vmap_table) {
1028 vmap_encoder.PushBack(cur);
/art/runtime/gc/
H A Dheap.cc1568 const mirror::ArtField* cur = fields->Get(i); variable
1569 if (cur->GetOffset().Int32Value() == offset.Int32Value()) {
1571 << PrettyField(cur); variable

Completed in 3339 milliseconds