Home
last modified time | relevance | path

Searched refs:InitSize (Results 1 – 14 of 14) 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-7.0/llvm/lib/Support/
DStringMap.cpp34 StringMapImpl::StringMapImpl(unsigned InitSize, unsigned itemSize) { in StringMapImpl() argument
38 if (InitSize) { in StringMapImpl()
42 init(getMinBucketToReserveForEntries(InitSize)); in StringMapImpl()
53 void StringMapImpl::init(unsigned InitSize) { in init() argument
54 assert((InitSize & (InitSize-1)) == 0 && in init()
57 unsigned NewNumBuckets = 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/libcxxabi/src/demangle/
DUtility.h174 size_t InitSize) { in initializeOutputStream() argument
177 Buf = static_cast<char *>(std::malloc(InitSize)); in initializeOutputStream()
180 BufferSize = InitSize; in initializeOutputStream()
/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-7.0/llvm/lib/Transforms/IPO/
DLowerTypeTests.cpp769 uint64_t InitSize = DL.getTypeAllocSize(GV->getValueType()); in buildBitSetsFromGlobalVariables() local
772 uint64_t Padding = NextPowerOf2(InitSize - 1) - InitSize; in buildBitSetsFromGlobalVariables()
779 Padding = alignTo(InitSize, 32) - 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/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ADT/
DStringMap.h74 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()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/InstCombine/
DInstCombineLoadStoreAlloca.cpp852 uint64_t InitSize = DL.getTypeAllocSize(GV->getValueType()); in isObjectSizeLessThanOrEq() local
853 if (InitSize > MaxSize) in isObjectSizeLessThanOrEq()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Demangle/
DItaniumDemangle.cpp4939 size_t InitSize) { in initializeOutputStream() argument
4942 Buf = static_cast<char *>(std::malloc(InitSize)); in initializeOutputStream()
4945 BufferSize = InitSize; in initializeOutputStream()