Home
last modified time | relevance | path

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

/external/v8/src/
Dinterface.cc14 ZoneHashMap* map = Chase()->exports_; in Lookup()
17 ZoneHashMap::Entry* p = map->Lookup(name.location(), name->Hash(), false, in Lookup()
58 ZoneHashMap** map = &Chase()->exports_; in DoAdd()
62 *map = new(zone->New(sizeof(ZoneHashMap))) in DoAdd()
63 ZoneHashMap(ZoneHashMap::PointersMatch, in DoAdd()
64 ZoneHashMap::kDefaultHashMapCapacity, allocator); in DoAdd()
67 ZoneHashMap::Entry* p = in DoAdd()
154 ZoneHashMap* map = that->exports_; in DoUnify()
156 for (ZoneHashMap::Entry* p = map->Start(); p != NULL; p = map->Next(p)) { in DoUnify()
196 ZoneHashMap* map = Chase()->exports_; in Print()
[all …]
Dinterface.h128 ZoneHashMap* exports = Chase()->exports_; in Length()
163 explicit Iterator(const ZoneHashMap* exports) in Iterator()
166 const ZoneHashMap* exports_;
167 ZoneHashMap::Entry* entry_;
191 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.h245 typedef TemplateHashMapImpl<ZoneAllocationPolicy> ZoneHashMap; typedef
Dscopes.cc28 : ZoneHashMap(ZoneHashMap::PointersMatch, 8, ZoneAllocationPolicy(zone)), in VariableMap()
42 Entry* p = ZoneHashMap::Lookup(const_cast<AstRawString*>(name), name->hash(), in Declare()
56 Entry* p = ZoneHashMap::Lookup(const_cast<AstRawString*>(name), name->hash(), in Lookup()
Dscopes.h18 class VariableMap: public ZoneHashMap {
Dast.cc224 ZoneHashMap table(Literal::Match, ZoneHashMap::kDefaultHashMapCapacity, in CalculateEmitStore()