/external/swiftshader/third_party/LLVM/lib/Support/ |
D | StringMap.cpp | 19 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/ |
D | StringMap.cpp | 31 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/ |
D | StringMap.cpp | 34 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/ |
D | StringMap.cpp | 33 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/ |
D | Utility.h | 174 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/ |
D | LowerTypeTests.cpp | 503 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/ |
D | LowerTypeTests.cpp | 769 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/ |
D | StringMap.h | 80 StringMapImpl(unsigned InitSize, unsigned ItemSize);
|
/external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/ |
D | StringMap.h | 76 StringMapImpl(unsigned InitSize, unsigned ItemSize);
|
/external/llvm/include/llvm/ADT/ |
D | StringMap.h | 69 StringMapImpl(unsigned InitSize, unsigned ItemSize);
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ADT/ |
D | StringMap.h | 74 StringMapImpl(unsigned InitSize, unsigned ItemSize);
|
/external/llvm/lib/Transforms/InstCombine/ |
D | InstCombineLoadStoreAlloca.cpp | 673 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/ |
D | InstCombineLoadStoreAlloca.cpp | 852 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/ |
D | ItaniumDemangle.cpp | 4939 size_t InitSize) { in initializeOutputStream() argument 4942 Buf = static_cast<char *>(std::malloc(InitSize)); in initializeOutputStream() 4945 BufferSize = InitSize; in initializeOutputStream()
|