Lines Matching refs:cache_entry
725 HashMap::Entry* cache_entry = entries_.Lookup(thing, Hash(thing)); in Map() local
726 if (cache_entry == NULL) return HeapEntry::kNoEntry; in Map()
727 return static_cast<int>(reinterpret_cast<intptr_t>(cache_entry->value)); in Map()
732 HashMap::Entry* cache_entry = entries_.LookupOrInsert(thing, Hash(thing)); in Pair() local
733 DCHECK(cache_entry->value == NULL); in Pair()
734 cache_entry->value = reinterpret_cast<void*>(static_cast<intptr_t>(entry)); in Pair()
764 HashMap::Entry* cache_entry = in GetTag() local
766 return cache_entry != NULL in GetTag()
767 ? reinterpret_cast<const char*>(cache_entry->value) in GetTag()
775 HashMap::Entry* cache_entry = in SetTag() local
777 cache_entry->value = const_cast<char*>(tag); in SetTag()
2769 HashMap::Entry* cache_entry = in GetStringId() local
2771 if (cache_entry->value == NULL) { in GetStringId()
2772 cache_entry->value = reinterpret_cast<void*>(next_string_id_++); in GetStringId()
2774 return static_cast<int>(reinterpret_cast<intptr_t>(cache_entry->value)); in GetStringId()