Home | History | Annotate | Download | only in profiler

Lines Matching refs:cache_entry

710   base::HashMap::Entry* cache_entry = entries_.Lookup(thing, Hash(thing));
711 if (cache_entry == NULL) return HeapEntry::kNoEntry;
712 return static_cast<int>(reinterpret_cast<intptr_t>(cache_entry->value));
717 base::HashMap::Entry* cache_entry =
719 DCHECK(cache_entry->value == NULL);
720 cache_entry->value = reinterpret_cast<void*>(static_cast<intptr_t>(entry));
746 base::HashMap::Entry* cache_entry =
748 return cache_entry != NULL
749 ? reinterpret_cast<const char*>(cache_entry->value)
757 base::HashMap::Entry* cache_entry =
759 cache_entry->value = const_cast<char*>(tag);
2713 base::HashMap::Entry* cache_entry =
2715 if (cache_entry->value == NULL) {
2716 cache_entry->value = reinterpret_cast<void*>(next_string_id_++);
2718 return static_cast<int>(reinterpret_cast<intptr_t>(cache_entry->value));