Home
last modified time | relevance | path

Searched refs:StringMapImpl (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DStringMap.cpp46 uint32_t StringMapImpl::hash(StringRef Key) { return xxh3_64bits(Key); } in hash()
48 StringMapImpl::StringMapImpl(unsigned InitSize, unsigned itemSize) { in StringMapImpl() function in StringMapImpl
67 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()
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DStringMap.h32 class StringMapImpl {
44 explicit StringMapImpl(unsigned itemSize) : ItemSize(itemSize) {} in StringMapImpl() function
45 StringMapImpl(StringMapImpl &&RHS) in StringMapImpl() function
55 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 …]