Searched refs:ZoneHashMap (Results 1 – 6 of 6) sorted by relevance
/external/v8/src/ |
D | interface.cc | 46 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()
|
D | interface.h | 131 ZoneHashMap* exports_; // Module exports and their types (allocated lazily)
|
D | zone.h | 243 typedef TemplateHashMapImpl<ZoneListAllocationPolicy> ZoneHashMap; typedef
|
D | scopes.cc | 60 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()
|
D | scopes.h | 41 class VariableMap: public ZoneHashMap {
|
D | ast.cc | 246 ZoneHashMap table(Literal::Match); in CalculateEmitStore()
|