HomeSort by relevance Sort by last modified time
    Searched refs:cur_entry (Results 1 - 4 of 4) sorted by null

  /art/runtime/verifier/
reg_type_cache.cc 222 RegType* cur_entry = entries_[i]; local
223 if (cur_entry->klass_.Read() == klass && MatchingPrecisionForClass(cur_entry, precise)) {
224 return *cur_entry;
331 RegType* cur_entry = entries_[i]; local
332 if (cur_entry->IsUnresolvedMergedReference()) {
334 (down_cast<UnresolvedMergedType*>(cur_entry))->GetMergedTypes();
336 return *cur_entry;
354 RegType* cur_entry = entries_[i]; local
355 if (cur_entry->IsUnresolvedSuperClass())
375 RegType* cur_entry = entries_[i]; local
386 RegType* cur_entry = entries_[i]; local
406 RegType* cur_entry = entries_[i]; local
418 RegType* cur_entry = entries_[i]; local
428 RegType* cur_entry = entries_[i]; local
484 RegType* cur_entry = entries_[i]; local
494 RegType* cur_entry = entries_[i]; local
507 RegType* cur_entry = entries_[i]; local
526 RegType* cur_entry = entries_[i]; local
544 RegType* cur_entry = entries_[i]; local
584 RegType* cur_entry = entries_[i]; local
    [all...]
  /external/qemu/hw/nvram/
fw_cfg.c 51 uint16_t cur_entry; member in struct:FWCfgState
57 int arch = !!(s->cur_entry & FW_CFG_ARCH_LOCAL);
58 FWCfgEntry *e = &s->entries[arch][s->cur_entry & FW_CFG_ENTRY_MASK];
62 if (s->cur_entry & FW_CFG_WRITE_CHANNEL && s->cur_offset < e->len) {
77 s->cur_entry = FW_CFG_INVALID;
80 s->cur_entry = key;
91 int arch = !!(s->cur_entry & FW_CFG_ARCH_LOCAL);
92 FWCfgEntry *e = &s->entries[arch][s->cur_entry & FW_CFG_ENTRY_MASK];
95 if (s->cur_entry == FW_CFG_INVALID || !e->data || s->cur_offset >= e->len)
172 qemu_put_be16s(f, &s->cur_entry);
    [all...]
  /external/compiler-rt/lib/tsan/rtl/
tsan_symbolize.cc 121 ReportStack *cur_entry = NewReportStackEntry(addr_frames[i]); local
122 CHECK(cur_entry);
125 top = cur_entry;
127 bottom->next = cur_entry;
128 bottom = cur_entry;
  /device/generic/goldfish/camera/
EmulatedCameraFactory.cpp 364 char* cur_entry = camera_list; local
365 while (cur_entry != NULL && *cur_entry != '\0' && index < num) {
368 char* next_entry = strchr(cur_entry, '\n');
375 char* name_start = strstr(cur_entry, lListNameToken);
376 char* dim_start = strstr(cur_entry, lListDimsToken);
377 char* dir_start = strstr(cur_entry, lListDirToken);
414 ALOGW("%s: Bad camera information: %s", __FUNCTION__, cur_entry);
417 cur_entry = next_entry;

Completed in 441 milliseconds