Home | History | Annotate | Download | only in src

Lines Matching refs:cache_entry

129   HashMap::Entry* cache_entry = names_.Lookup(str, hash, true);
130 if (cache_entry->value == NULL) {
132 cache_entry->value = str;
136 return reinterpret_cast<const char*>(cache_entry->value);
1533 HashMap::Entry* cache_entry = entries_.Lookup(thing, Hash(thing), false);
1534 if (cache_entry != NULL) {
1535 EntryInfo* entry_info = reinterpret_cast<EntryInfo*>(cache_entry->value);
1545 HashMap::Entry* cache_entry = entries_.Lookup(thing, Hash(thing), true);
1546 ASSERT(cache_entry->value == NULL);
1547 cache_entry->value = new EntryInfo(entry, allocator);
1587 HashMap::Entry* cache_entry =
1589 return cache_entry != NULL;
1596 HashMap::Entry* cache_entry =
1598 if (cache_entry->value == NULL) {
1599 cache_entry->value = HeapEntriesMap::kHeapEntryPlaceholder;
2850 HashMap::Entry* cache_entry = nodes_.Lookup(entry, ObjectHash(entry), true);
2851 if (cache_entry->value == NULL) {
2852 cache_entry->value = reinterpret_cast<void*>(next_node_id_++);
2854 return static_cast<int>(reinterpret_cast<intptr_t>(cache_entry->value));
2859 HashMap::Entry* cache_entry = strings_.Lookup(
2861 if (cache_entry->value == NULL) {
2862 cache_entry->value = reinterpret_cast<void*>(next_string_id_++);
2864 return static_cast<int>(reinterpret_cast<intptr_t>(cache_entry->value));