Home
last modified time | relevance | path

Searched refs:TSize (Results 1 – 11 of 11) sorted by relevance

/external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/
DSmallVector.cpp44 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/
DSmallVector.cpp19 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/
DSmallVector.cpp20 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/
DSmallVector.cpp20 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/
DSmallVector.h44 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/
DSmallVector.h47 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/
DSmallVector.h50 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/
DInlineCost.cpp1379 for (unsigned TIdx = 0, TSize = TI->getNumSuccessors(); TIdx != TSize; in analyzeCall() local
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Analysis/
DInlineCost.cpp1850 for (unsigned TIdx = 0, TSize = TI->getNumSuccessors(); TIdx != TSize; in analyzeCall() local
/external/swiftshader/third_party/LLVM/include/llvm/ADT/
DSmallVector.h83 void grow_pod(size_t MinSizeInBytes, size_t TSize);
/external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/
DSelectionDAGBuilder.cpp2029 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()