Home
last modified time | relevance | path

Searched refs:ZoneHashMap (Results 1 – 8 of 8) sorted by relevance

/external/chromium_org/v8/src/
Dinterface.cc23 ZoneHashMap* map = Chase()->exports_; in Lookup()
26 ZoneHashMap::Entry* p = map->Lookup(name.location(), name->Hash(), false, in Lookup()
66 ZoneHashMap** map = &Chase()->exports_; in DoAdd()
70 *map = new(zone->New(sizeof(ZoneHashMap))) in DoAdd()
71 ZoneHashMap(Match, ZoneHashMap::kDefaultHashMapCapacity, allocator); in DoAdd()
74 ZoneHashMap::Entry* p = (*map)->Lookup(name, hash, !IsFrozen(), allocator); in DoAdd()
160 ZoneHashMap* map = that->exports_; in DoUnify()
162 for (ZoneHashMap::Entry* p = map->Start(); p != NULL; p = map->Next(p)) { in DoUnify()
202 ZoneHashMap* map = Chase()->exports_; in Print()
210 for (ZoneHashMap::Entry* p = map->Start(); p != NULL; p = map->Next(p)) { in Print()
Dinterface.h126 ZoneHashMap* exports = Chase()->exports_; in Length()
161 explicit Iterator(const ZoneHashMap* exports) in Iterator()
164 const ZoneHashMap* exports_;
165 ZoneHashMap::Entry* entry_;
189 ZoneHashMap* exports_; // Module exports and their types (allocated lazily)
Dhydrogen-bce.h16 class BoundsCheckTable : private ZoneHashMap {
Dhydrogen-bce.cc303 : ZoneHashMap(BoundsCheckKeyMatch, ZoneHashMap::kDefaultHashMapCapacity, in BoundsCheckTable()
Dzone.h239 typedef TemplateHashMapImpl<ZoneAllocationPolicy> ZoneHashMap; typedef
Dscopes.h18 class VariableMap: public ZoneHashMap {
Dscopes.cc37 : ZoneHashMap(Match, 8, ZoneAllocationPolicy(zone)), in VariableMap()
50 Entry* p = ZoneHashMap::Lookup(name.location(), name->Hash(), true, in Declare()
68 Entry* p = ZoneHashMap::Lookup(name.location(), name->Hash(), false, in Lookup()
Dast.cc231 ZoneHashMap table(Literal::Match, ZoneHashMap::kDefaultHashMapCapacity, in CalculateEmitStore()