Home
last modified time | relevance | path

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

/external/swiftshader/third_party/LLVM/lib/Support/
DStringMap.cpp19 StringMapImpl::StringMapImpl(unsigned InitSize, unsigned itemSize) { in StringMapImpl() argument
23 if (InitSize) { in StringMapImpl()
24 init(InitSize); in StringMapImpl()
35 void StringMapImpl::init(unsigned InitSize) { in init() argument
36 assert((InitSize & (InitSize-1)) == 0 && in init()
38 NumBuckets = InitSize ? InitSize : 16; in init()
/external/llvm/lib/Support/
DStringMap.cpp31 StringMapImpl::StringMapImpl(unsigned InitSize, unsigned itemSize) { in StringMapImpl() argument
35 if (InitSize) { in StringMapImpl()
39 init(getMinBucketToReserveForEntries(InitSize)); in StringMapImpl()
50 void StringMapImpl::init(unsigned InitSize) { in init() argument
51 assert((InitSize & (InitSize-1)) == 0 && in init()
53 NumBuckets = InitSize ? InitSize : 16; in init()
/external/swiftshader/third_party/llvm-subzero/lib/Support/
DStringMap.cpp33 StringMapImpl::StringMapImpl(unsigned InitSize, unsigned itemSize) { in StringMapImpl() argument
37 if (InitSize) { in StringMapImpl()
41 init(getMinBucketToReserveForEntries(InitSize)); in StringMapImpl()
52 void StringMapImpl::init(unsigned InitSize) { in init() argument
53 assert((InitSize & (InitSize-1)) == 0 && in init()
55 NumBuckets = InitSize ? InitSize : 16; in init()
/external/llvm/lib/Transforms/IPO/
DLowerTypeTests.cpp503 uint64_t InitSize = DL.getTypeAllocSize(G->getValueType()); in buildBitSetsFromGlobalVariables() local
506 uint64_t Padding = NextPowerOf2(InitSize - 1) - InitSize; in buildBitSetsFromGlobalVariables()
511 Padding = alignTo(InitSize, 128) - InitSize; in buildBitSetsFromGlobalVariables()
/external/swiftshader/third_party/LLVM/include/llvm/ADT/
DStringMap.h80 StringMapImpl(unsigned InitSize, unsigned ItemSize);
/external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
DStringMap.h76 StringMapImpl(unsigned InitSize, unsigned ItemSize);
/external/llvm/include/llvm/ADT/
DStringMap.h69 StringMapImpl(unsigned InitSize, unsigned ItemSize);
/external/llvm/lib/Transforms/InstCombine/
DInstCombineLoadStoreAlloca.cpp673 uint64_t InitSize = DL.getTypeAllocSize(GV->getValueType()); in isObjectSizeLessThanOrEq() local
674 if (InitSize > MaxSize) in isObjectSizeLessThanOrEq()