Home
last modified time | relevance | path

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

/external/v8/src/
Dinterface.cc46 ZoneHashMap* map = Chase()->exports_; in Lookup()
48 ZoneHashMap::Entry* p = map->Lookup(name.location(), name->Hash(), false); in Lookup()
87 ZoneHashMap** map = &Chase()->exports_; in DoAdd()
88 if (*map == NULL) *map = new ZoneHashMap(Match, 8); in DoAdd()
90 ZoneHashMap::Entry* p = (*map)->Lookup(name, hash, !IsFrozen()); in DoAdd()
166 ZoneHashMap* map = that->exports_; in DoUnify()
168 for (ZoneHashMap::Entry* p = map->Start(); p != NULL; p = map->Next(p)) { in DoUnify()
206 ZoneHashMap* map = Chase()->exports_; in Print()
214 for (ZoneHashMap::Entry* p = map->Start(); p != NULL; p = map->Next(p)) { in Print()
Dinterface.h131 ZoneHashMap* exports_; // Module exports and their types (allocated lazily)
Dzone.h243 typedef TemplateHashMapImpl<ZoneListAllocationPolicy> ZoneHashMap; typedef
Dscopes.cc60 VariableMap::VariableMap() : ZoneHashMap(Match, 8) {} in VariableMap()
72 Entry* p = ZoneHashMap::Lookup(name.location(), name->Hash(), true); in Declare()
89 Entry* p = ZoneHashMap::Lookup(name.location(), name->Hash(), false); in Lookup()
Dscopes.h41 class VariableMap: public ZoneHashMap {
Dast.cc246 ZoneHashMap table(Literal::Match); in CalculateEmitStore()