/external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/ |
D | SmallVector.cpp | 44 size_t TSize) { in grow_pod() argument 55 NewElts = safe_malloc(NewCapacity * TSize); in grow_pod() 58 memcpy(NewElts, this->BeginX, size() * TSize); in grow_pod() 61 NewElts = safe_realloc(this->BeginX, NewCapacity * TSize); in grow_pod()
|
/external/swiftshader/third_party/LLVM/lib/Support/ |
D | SmallVector.cpp | 19 void SmallVectorBase::grow_pod(size_t MinSizeInBytes, size_t TSize) { in grow_pod() argument 21 size_t NewCapacityInBytes = 2 * capacity_in_bytes() + TSize; // Always grow. in grow_pod()
|
/external/llvm/lib/Support/ |
D | SmallVector.cpp | 20 size_t TSize) { in grow_pod() argument 22 size_t NewCapacityInBytes = 2 * capacity_in_bytes() + TSize; // Always grow. in grow_pod()
|
/external/swiftshader/third_party/llvm-subzero/lib/Support/ |
D | SmallVector.cpp | 20 size_t TSize) { in grow_pod() argument 22 size_t NewCapacityInBytes = 2 * capacity_in_bytes() + TSize; // Always grow. in grow_pod()
|
/external/llvm/include/llvm/ADT/ |
D | SmallVector.h | 44 void grow_pod(void *FirstEl, size_t MinSizeInBytes, size_t TSize); 80 void grow_pod(size_t MinSizeInBytes, size_t TSize) { in grow_pod() argument 81 SmallVectorBase::grow_pod(&FirstEl, MinSizeInBytes, TSize); in grow_pod()
|
/external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/ |
D | SmallVector.h | 47 void grow_pod(void *FirstEl, size_t MinSizeInBytes, size_t TSize); 81 void grow_pod(size_t MinSizeInBytes, size_t TSize) { in grow_pod() argument 82 SmallVectorBase::grow_pod(&FirstEl, MinSizeInBytes, TSize); in grow_pod()
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ADT/ |
D | SmallVector.h | 50 void grow_pod(void *FirstEl, size_t MinCapacity, size_t TSize); 98 void grow_pod(size_t MinCapacity, size_t TSize) { in grow_pod() argument 99 SmallVectorBase::grow_pod(getFirstEl(), MinCapacity, TSize); in grow_pod()
|
/external/llvm/lib/Analysis/ |
D | InlineCost.cpp | 1379 for (unsigned TIdx = 0, TSize = TI->getNumSuccessors(); TIdx != TSize; in analyzeCall() local
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Analysis/ |
D | InlineCost.cpp | 1850 for (unsigned TIdx = 0, TSize = TI->getNumSuccessors(); TIdx != TSize; in analyzeCall() local
|
/external/swiftshader/third_party/LLVM/include/llvm/ADT/ |
D | SmallVector.h | 83 void grow_pod(size_t MinSizeInBytes, size_t TSize);
|
/external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/ |
D | SelectionDAGBuilder.cpp | 2029 APInt TSize(First.getBitWidth(), 0); in handleJTSwitchCase() local 2031 TSize += I->size(); in handleJTSwitchCase() 2033 if (!areJTsAllowed(TLI) || TSize.ult(4)) in handleJTSwitchCase() 2041 uint64_t IntTSize = TSize.getLimitedValue(UINT64_MAX/10); in handleJTSwitchCase() 2047 << "Range: " << Range << ". Size: " << TSize << ".\n\n"); in handleJTSwitchCase() 2143 APInt TSize(First.getBitWidth(), 0); in handleBTSplitSwitchCase() local 2146 TSize += I->size(); in handleBTSplitSwitchCase() 2149 APInt RSize = TSize-LSize; in handleBTSplitSwitchCase()
|