Home | History | Annotate | Download | only in profiler

Lines Matching refs:cache_entry

705   base::HashMap::Entry* cache_entry = entries_.Lookup(thing, Hash(thing));
706 if (cache_entry == NULL) return HeapEntry::kNoEntry;
707 return static_cast<int>(reinterpret_cast<intptr_t>(cache_entry->value));
712 base::HashMap::Entry* cache_entry =
714 DCHECK(cache_entry->value == NULL);
715 cache_entry->value = reinterpret_cast<void*>(static_cast<intptr_t>(entry));
741 base::HashMap::Entry* cache_entry =
743 return cache_entry != NULL
744 ? reinterpret_cast<const char*>(cache_entry->value)
752 base::HashMap::Entry* cache_entry =
754 cache_entry->value = const_cast<char*>(tag);
2736 base::HashMap::Entry* cache_entry =
2738 if (cache_entry->value == NULL) {
2739 cache_entry->value = reinterpret_cast<void*>(next_string_id_++);
2741 return static_cast<int>(reinterpret_cast<intptr_t>(cache_entry->value));