Searched refs:ZoneHashMap (Results 1 – 8 of 8) sorted by relevance
/external/v8/src/ |
D | interface.cc | 14 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 …]
|
D | interface.h | 128 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)
|
D | hydrogen-bce.h | 16 class BoundsCheckTable : private ZoneHashMap {
|
D | hydrogen-bce.cc | 303 : ZoneHashMap(BoundsCheckKeyMatch, ZoneHashMap::kDefaultHashMapCapacity, in BoundsCheckTable()
|
D | zone.h | 245 typedef TemplateHashMapImpl<ZoneAllocationPolicy> ZoneHashMap; typedef
|
D | scopes.cc | 28 : 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()
|
D | scopes.h | 18 class VariableMap: public ZoneHashMap {
|
D | ast.cc | 224 ZoneHashMap table(Literal::Match, ZoneHashMap::kDefaultHashMapCapacity, in CalculateEmitStore()
|