Home | History | Annotate | Download | only in src

Lines Matching refs:cache_entry

718   HashMap::Entry* cache_entry = entries_.Lookup(thing, Hash(thing), false);
719 if (cache_entry == NULL) return HeapEntry::kNoEntry;
720 return static_cast<int>(reinterpret_cast<intptr_t>(cache_entry->value));
725 HashMap::Entry* cache_entry = entries_.Lookup(thing, Hash(thing), true);
726 ASSERT(cache_entry->value == NULL);
727 cache_entry->value = reinterpret_cast<void*>(static_cast<intptr_t>(entry));
757 HashMap::Entry* cache_entry =
759 return cache_entry != NULL
760 ? reinterpret_cast<const char*>(cache_entry->value)
768 HashMap::Entry* cache_entry =
770 cache_entry->value = const_cast<char*>(tag);
2803 HashMap::Entry* cache_entry = strings_.Lookup(
2805 if (cache_entry->value == NULL) {
2806 cache_entry->value = reinterpret_cast<void*>(next_string_id_++);
2808 cache_entry->value));