Home
last modified time | relevance | path

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

/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/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/llvm/lib/Analysis/IPA/
DInlineCost.cpp1215 for (unsigned TIdx = 0, TSize = TI->getNumSuccessors(); TIdx != TSize; in analyzeCall() local
/external/llvm/lib/CodeGen/SelectionDAG/
DSelectionDAGBuilder.cpp2281 APInt TSize(First.getBitWidth(), 0); in handleJTSwitchCase() local
2283 TSize += I->size(); in handleJTSwitchCase()
2286 if (!areJTsAllowed(TLI) || TSize.ult(TLI.getMinimumJumpTableEntries())) in handleJTSwitchCase()
2294 uint64_t IntTSize = TSize.getLimitedValue(UINT64_MAX/10); in handleJTSwitchCase()
2300 << "Range: " << Range << ". Size: " << TSize << ".\n\n"); in handleJTSwitchCase()
2394 APInt TSize(First.getBitWidth(), 0); in handleBTSplitSwitchCase() local
2397 TSize += I->size(); in handleBTSplitSwitchCase()
2400 APInt RSize = TSize-LSize; in handleBTSplitSwitchCase()