Entry 679 src/arm/simulator-arm.cc v8::internal::HashMap::Entry* entry = i_cache->Lookup(page,
Entry 201 src/arm/stub-cache-arm.cc ASSERT(sizeof(Entry) == 12);
Entry 1966 src/bootstrapper.cc i::HashMap::Entry* entry = map_.Lookup(extension, Hash(extension), false);
Entry 83 src/d8.h i::HashMap::Entry* answer = hash_map_.Lookup(
Entry 91 src/d8.h i::HashMap::Entry* answer = hash_map_.Lookup(
Entry 108 src/d8.h i::HashMap::Entry* entry_;
Entry 604 src/debug.cc HashMap::Entry* entry =
Entry 627 src/debug.cc for (HashMap::Entry* entry = Start(); entry != NULL; entry = Next(entry)) {
Entry 650 src/debug.cc for (HashMap::Entry* entry = Start(); entry != NULL; entry = Next(entry)) {
Entry 2052 src/gdb-jit.cc HashMap::Entry* e = GetEntries()->Lookup(code, HashForCodeObject(code), true);
Entry 2131 src/gdb-jit.cc HashMap::Entry* e = GetEntries()->Lookup(code,
Entry 2152 src/gdb-jit.cc HashMap::Entry* e = GetEntries()->Lookup(code, HashForCodeObject(code), true);
Entry 70 src/hashmap.h Entry* Lookup(void* key, uint32_t hash, bool insert,
Entry 97 src/hashmap.h Entry* Start() const;
Entry 98 src/hashmap.h Entry* Next(Entry* p) const;
Entry 102 src/hashmap.h Entry* map_;
Entry 106 src/hashmap.h Entry* map_end() const { return map_ + capacity_; }
Entry 107 src/hashmap.h Entry* Probe(void* key, uint32_t hash);
Entry 129 src/hashmap.h typename TemplateHashMapImpl<AllocationPolicy>::Entry*
Entry 133 src/hashmap.h Entry* p = Probe(key, hash);
Entry 162 src/hashmap.h Entry* p = Probe(key, hash);
Entry 186 src/hashmap.h Entry* q = p; // Start at the entry to remove.
Entry 202 src/hashmap.h Entry* r = map_ + (q->hash & (capacity_ - 1));
Entry 224 src/hashmap.h const Entry* end = map_end();
Entry 225 src/hashmap.h for (Entry* p = map_; p < end; p++) {
Entry 233 src/hashmap.h typename TemplateHashMapImpl<AllocationPolicy>::Entry*
Entry 240 src/hashmap.h typename TemplateHashMapImpl<AllocationPolicy>::Entry*
Entry 241 src/hashmap.h TemplateHashMapImpl<AllocationPolicy>::Next(Entry* p) const {
Entry 242 src/hashmap.h const Entry* end = map_end();
Entry 254 src/hashmap.h typename TemplateHashMapImpl<AllocationPolicy>::Entry*
Entry 259 src/hashmap.h Entry* p = map_ + (hash & (capacity_ - 1));
Entry 260 src/hashmap.h const Entry* end = map_end();
Entry 279 src/hashmap.h map_ = reinterpret_cast<Entry*>(allocator.New(capacity * sizeof(Entry)));
Entry 291 src/hashmap.h Entry* map = map_;
Entry 298 src/hashmap.h for (Entry* p = map; n > 0; p++) {
Entry 333 src/hashmap.h typename TemplateHashMapImpl<AllocationPolicy>::Entry* entry) :
Entry 337 src/hashmap.h typename TemplateHashMapImpl<AllocationPolicy>::Entry* entry_;
Entry 45 src/heap-inl.h emergency_stack_->Add(Entry(target, size));
Entry 63 src/heap-inl.h emergency_stack_->Add(Entry(target, size));
Entry 1169 src/heap.cc emergency_stack_ = new List<Entry>(2 * entries_count);
Entry 1174 src/heap.cc emergency_stack_->Add(Entry(obj, size));
Entry 339 src/heap.h Entry e = emergency_stack_->RemoveLast();
Entry 370 src/heap.h Entry(HeapObject* obj, int size) : obj_(obj), size_(size) { }
Entry 375 src/heap.h List<Entry>* emergency_stack_;
Entry 203 src/ia32/stub-cache-ia32.cc ASSERT(sizeof(Entry) == 12);
Entry 49 src/interface.cc ZoneHashMap::Entry* p = map->Lookup(name.location(), name->Hash(), false,
Entry 96 src/interface.cc ZoneHashMap::Entry* p = (*map)->Lookup(name, hash, !IsFrozen(), allocator);
Entry 182 src/interface.cc for (ZoneHashMap::Entry* p = map->Start(); p != NULL; p = map->Next(p)) {
Entry 239 src/interface.cc for (ZoneHashMap::Entry* p = map->Start(); p != NULL; p = map->Next(p)) {
Entry 172 src/interface.h ZoneHashMap::Entry* entry_;
Entry 5469 src/jsregexp.cc loc.set_value(Entry(current.from(), current.to(),
Entry 5477 src/jsregexp.cc Entry* entry = &loc.value();
Entry 5495 src/jsregexp.cc loc.set_value(Entry(right.from(),
Entry 5504 src/jsregexp.cc Entry* entry = &loc.value();
Entry 5511 src/jsregexp.cc ins.set_value(Entry(current.from(),
Entry 5522 src/jsregexp.cc ins.set_value(Entry(current.to() + 1,
Entry 5542 src/jsregexp.cc ins.set_value(Entry(current.from(),
Entry 5555 src/jsregexp.cc Entry* entry = &loc.value();
Entry 327 src/jsregexp.h class Entry {
Entry 329 src/jsregexp.h Entry() : from_(0), to_(0), out_set_(NULL) { }
Entry 330 src/jsregexp.h Entry(uc16 from, uc16 to, OutSet* out_set)
Entry 348 src/jsregexp.h typedef Entry Value;
Entry 350 src/jsregexp.h static const Entry NoValue() { return Value(); }
Entry 379 src/log.cc for (HashMap::Entry* p = impl_.Start(); p != NULL; p = impl_.Next(p)) {
Entry 385 src/log.cc HashMap::Entry* entry = FindOrCreateEntry(code_address);
Entry 392 src/log.cc HashMap::Entry* entry = FindEntry(code_address);
Entry 397 src/log.cc HashMap::Entry* entry = FindEntry(code_address);
Entry 406 src/log.cc HashMap::Entry* from_entry = FindEntry(from);
Entry 410 src/log.cc HashMap::Entry* to_entry = FindOrCreateEntry(to);
Entry 431 src/log.cc HashMap::Entry* FindOrCreateEntry(Address code_address) {
Entry 435 src/log.cc HashMap::Entry* FindEntry(Address code_address) {
Entry 826 src/mips/simulator-mips.cc v8::internal::HashMap::Entry* entry = i_cache->Lookup(page,
Entry 190 src/mips/stub-cache-mips.cc ASSERT(sizeof(Entry) == 12);
Entry 2672 src/objects.h class Entry {
Entry 2674 src/objects.h inline explicit Entry(DescriptorArray* descs, int index) :
Entry 4022 src/parser.cc HashMap::Entry* entry = props_.Lookup(literal, literal->Hash(), true);
Entry 126 src/preparse-data.cc HashMap::Entry* entry = symbol_table_.Lookup(&key, hash, true);
Entry 1670 src/preparser.cc i::HashMap::Entry* entry = map_.Lookup(encoding, hash, true);
Entry 101 src/profile-generator.cc for (HashMap::Entry* p = names_.Start();
Entry 130 src/profile-generator.cc HashMap::Entry* cache_entry = names_.Lookup(str, hash, true);
Entry 174 src/profile-generator.cc size += sizeof(HashMap::Entry) * names_.capacity();
Entry 175 src/profile-generator.cc for (HashMap::Entry* p = names_.Start(); p != NULL; p = names_.Next(p)) {
Entry 227 src/profile-generator.cc HashMap::Entry* map_entry =
Entry 235 src/profile-generator.cc HashMap::Entry* map_entry =
Entry 267 src/profile-generator.cc for (HashMap::Entry* p = children_.Start();
Entry 660 src/profile-generator.cc HashMap::Entry* entry =
Entry 691 src/profile-generator.cc HashMap::Entry* entry = profiles_uids_.Lookup(reinterpret_cast<void*>(uid),
Entry 719 src/profile-generator.cc for (HashMap::Entry* p = profiles_uids_.Start();
Entry 1314 src/profile-generator.cc HashMap::Entry* to_entry = entries_map_.Lookup(to, AddressHash(to), true);
Entry 1329 src/profile-generator.cc HashMap::Entry* entry = entries_map_.Lookup(addr, AddressHash(addr), false);
Entry 1341 src/profile-generator.cc HashMap::Entry* entry = entries_map_.Lookup(addr, AddressHash(addr), true);
Entry 1434 src/profile-generator.cc HashMap::Entry* entry = entries_map_.Lookup(
Entry 1468 src/profile-generator.cc sizeof(HashMap::Entry) * entries_map_.capacity() +
Entry 1505 src/profile-generator.cc HashMap::Entry* entry =
Entry 1516 src/profile-generator.cc HashMap::Entry* entry = snapshots_uids_.Lookup(reinterpret_cast<void*>(uid),
Entry 1560 src/profile-generator.cc size += sizeof(HashMap::Entry) * snapshots_uids_.capacity();
Entry 1575 src/profile-generator.cc HashMap::Entry* cache_entry = entries_.Lookup(thing, Hash(thing), false);
Entry 1582 src/profile-generator.cc HashMap::Entry* cache_entry = entries_.Lookup(thing, Hash(thing), true);
Entry 1614 src/profile-generator.cc HashMap::Entry* cache_entry =
Entry 1625 src/profile-generator.cc HashMap::Entry* cache_entry =
Entry 2790 src/profile-generator.cc for (HashMap::Entry* p = objects_by_info_.Start();
Entry 2800 src/profile-generator.cc for (HashMap::Entry* p = native_groups_.Start();
Entry 2869 src/profile-generator.cc HashMap::Entry* entry =
Entry 2886 src/profile-generator.cc for (HashMap::Entry* p = objects_by_info_.Start();
Entry 2938 src/profile-generator.cc HashMap::Entry* entry = native_groups_.Lookup(const_cast<char*>(label_copy),
Entry 2981 src/profile-generator.cc for (HashMap::Entry* entry = native_groups_.Start();
Entry 3326 src/profile-generator.cc HashMap::Entry* cache_entry = strings_.Lookup(
Entry 3544 src/profile-generator.cc List<HashMap::Entry*> sorted_strings;
Entry 3572 src/profile-generator.cc for (HashMap::Entry* p = map->Start(); p != NULL; p = map->Next(p))
Entry 1085 src/profile-generator.h void SortHashMap(HashMap* map, List<HashMap::Entry*>* sorted_entries);
Entry 75 src/scopes.cc Entry* p = ZoneHashMap::Lookup(name.location(), name->Hash(), true,
Entry 93 src/scopes.cc Entry* p = ZoneHashMap::Lookup(name.location(), name->Hash(), false,
Entry 612 src/scopes.cc for (VariableMap::Entry* p = variables_.Start();
Entry 820 src/scopes.cc for (VariableMap::Entry* p = map->Start(); p != NULL; p = map->Next(p)) {
Entry 1259 src/scopes.cc for (VariableMap::Entry* p = variables_.Start();
Entry 545 src/serialize.cc HashMap::Entry* entry =
Entry 554 src/serialize.cc HashMap::Entry* entry = encodings_.Lookup(key, Hash(key), true);
Entry 427 src/serialize.h HashMap::Entry* entry =
Entry 2642 src/spaces.cc HashMap::Entry* entry = chunk_map_.Lookup(reinterpret_cast<void*>(key),
Entry 2675 src/spaces.cc HashMap::Entry* e = chunk_map_.Lookup(reinterpret_cast<void*>(key),
Entry 80 src/stub-cache.cc Entry* primary = entry(primary_, primary_offset);
Entry 90 src/stub-cache.cc Entry* secondary = entry(secondary_, secondary_offset);
Entry 965 src/stub-cache.cc Entry* primary_entry = entry(primary_, primary_offset);
Entry 303 src/stub-cache.h StubCache::Entry* first_entry(StubCache::Table table) {
Entry 376 src/stub-cache.h static Entry* entry(Entry* table, int offset) {
Entry 378 src/stub-cache.h return reinterpret_cast<Entry*>(
Entry 387 src/stub-cache.h Entry primary_[kPrimaryTableSize];
Entry 388 src/stub-cache.h Entry secondary_[kSecondaryTableSize];
Entry 56 src/x64/stub-cache-x64.cc ASSERT_EQ(24, sizeof(StubCache::Entry));
Entry 175 src/x64/stub-cache-x64.cc ASSERT(sizeof(Entry) == 24);
Entry 50 test/cctest/test-hashmap.cc HashMap::Entry* p = map_.Lookup(reinterpret_cast<void*>(x), hash_(x), true);
Entry 62 test/cctest/test-hashmap.cc HashMap::Entry* p =
Entry 76 test/cctest/test-hashmap.cc for (HashMap::Entry* p = map_.Start(); p != NULL; p = map_.Next(p)) {
Entry 46 test/cctest/test-heap-profiler.cc i::HashMap::Entry* entry = visited.Lookup(