Lines Matching refs:cache_entry
546 base::HashMap::Entry* cache_entry = entries_.Lookup(thing, Hash(thing)); in Map() local
547 if (cache_entry == nullptr) return HeapEntry::kNoEntry; in Map()
548 return static_cast<int>(reinterpret_cast<intptr_t>(cache_entry->value)); in Map()
553 base::HashMap::Entry* cache_entry = in Pair() local
555 DCHECK_NULL(cache_entry->value); in Pair()
556 cache_entry->value = reinterpret_cast<void*>(static_cast<intptr_t>(entry)); in Pair()
582 base::HashMap::Entry* cache_entry = in GetTag() local
584 return cache_entry != nullptr in GetTag()
585 ? reinterpret_cast<const char*>(cache_entry->value) in GetTag()
593 base::HashMap::Entry* cache_entry = in SetTag() local
595 cache_entry->value = const_cast<char*>(tag); in SetTag()
2693 base::HashMap::Entry* cache_entry = in GetStringId() local
2695 if (cache_entry->value == nullptr) { in GetStringId()
2696 cache_entry->value = reinterpret_cast<void*>(next_string_id_++); in GetStringId()
2698 return static_cast<int>(reinterpret_cast<intptr_t>(cache_entry->value)); in GetStringId()