Searched refs:StringMapImpl (Results 1 – 2 of 2) sorted by relevance
46 uint32_t StringMapImpl::hash(StringRef Key) { return xxh3_64bits(Key); } in hash()48 StringMapImpl::StringMapImpl(unsigned InitSize, unsigned itemSize) { in StringMapImpl() function in StringMapImpl67 void StringMapImpl::init(unsigned InitSize) { in init()86 unsigned StringMapImpl::LookupBucketFor(StringRef Name, in LookupBucketFor()147 int StringMapImpl::FindKey(StringRef Key, uint32_t FullHashValue) const { in FindKey()193 void StringMapImpl::RemoveKey(StringMapEntryBase *V) { in RemoveKey()202 StringMapEntryBase *StringMapImpl::RemoveKey(StringRef Key) { in RemoveKey()218 unsigned StringMapImpl::RehashTable(unsigned BucketNo) { in RehashTable()
32 class StringMapImpl {44 explicit StringMapImpl(unsigned itemSize) : ItemSize(itemSize) {} in StringMapImpl() function45 StringMapImpl(StringMapImpl &&RHS) in StringMapImpl() function55 StringMapImpl(unsigned InitSize, unsigned ItemSize);56 ~StringMapImpl() { free(TheTable); } in ~StringMapImpl()113 void swap(StringMapImpl &Other) { in swap()127 : public StringMapImpl,134 StringMap() : StringMapImpl(static_cast<unsigned>(sizeof(MapEntryTy))) {} in StringMap()137 : StringMapImpl(InitialSize, static_cast<unsigned>(sizeof(MapEntryTy))) {} in StringMap()140 : StringMapImpl(static_cast<unsigned>(sizeof(MapEntryTy))), AllocTy(A) {} in StringMap()[all …]