Searched refs:InitSize (Results 1 - 5 of 5) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/
H A DStringMap.cpp33 StringMapImpl::StringMapImpl(unsigned InitSize, unsigned itemSize) { argument
37 if (InitSize) {
39 // buckets. To guarantee that "InitSize" number of entries can be inserted
41 init(getMinBucketToReserveForEntries(InitSize));
52 void StringMapImpl::init(unsigned InitSize) { argument
53 assert((InitSize & (InitSize-1)) == 0 &&
56 unsigned NewNumBuckets = InitSize ? InitSize : 16;
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Demangle/
H A DUtility.h175 size_t InitSize) {
178 Buf = static_cast<char *>(std::malloc(InitSize));
181 BufferSize = InitSize;
174 initializeOutputStream(char *Buf, size_t *N, OutputStream &S, size_t InitSize) argument
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DLowerTypeTests.cpp844 uint64_t InitSize = DL.getTypeAllocSize(GV->getValueType()); local
845 CurOffset = GVOffset + InitSize;
848 DesiredPadding = NextPowerOf2(InitSize - 1) - InitSize;
855 DesiredPadding = alignTo(InitSize, 32) - InitSize;
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/
H A DStringMap.h73 StringMapImpl(unsigned InitSize, unsigned ItemSize);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineLoadStoreAlloca.cpp820 uint64_t InitSize = DL.getTypeAllocSize(GV->getValueType());
821 if (InitSize > MaxSize)

Completed in 137 milliseconds