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

/art/runtime/gc/
H A Dreference_queue.cc92 mirror::Reference* cur = list_; local
94 while (cur != nullptr) {
95 mirror::Reference* pending_next = cur->GetPendingNext();
97 if (cur->IsFinalizerReferenceInstance()) {
98 os << " Zombie=" << cur->AsFinalizerReference()->GetZombie();
101 cur = pending_next;
H A Dheap.cc2583 mirror::ArtField* cur = fields->Get(i); variable
2584 if (cur->GetOffset().Int32Value() == offset.Int32Value()) {
2586 << PrettyField(cur); variable
/art/runtime/
H A Dleb128.h32 int cur = *(ptr++); local
33 result = (result & 0x7f) | ((cur & 0x7f) << 7);
34 if (cur > 0x7f) {
35 cur = *(ptr++);
36 result |= (cur & 0x7f) << 14;
37 if (cur > 0x7f) {
38 cur = *(ptr++);
39 result |= (cur & 0x7f) << 21;
40 if (cur > 0x7f) {
41 // Note: We don't check to see if cur i
70 int cur = *(ptr++); local
162 InsertBackUnsigned(It cur, It end) argument
181 InsertBackSigned(It cur, It end) argument
[all...]
H A Dinstrumentation.cc943 InstrumentationListener* cur = *it; local
946 cur->MethodEntered(thread, this_object, method, dex_pc);
957 InstrumentationListener* cur = *it; local
960 cur->MethodExited(thread, this_object, method, dex_pc, return_value);
/art/compiler/utils/
H A Dassembler.h216 SlowPath* cur = slow_path_; local
217 for ( ; cur->next_ != NULL ; cur = cur->next_) {}
218 cur->next_ = slowpath;
223 SlowPath* cur = slow_path_; local
226 for ( ; cur != NULL ; cur = next) {
227 cur->Emit(sp_asm);
228 next = cur
[all...]
/art/compiler/
H A Delf_writer_quick.cc34 static constexpr Elf32_Word NextOffset(const Elf32_Shdr& cur, const Elf32_Shdr& prev) { argument
35 return RoundUp(prev.sh_size + prev.sh_offset, cur.sh_addralign);

Completed in 401 milliseconds