Searched refs:TSize (Results 1 – 5 of 5) sorted by relevance
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Support/ |
| H A D | SmallVector.cpp | 115 void *NewEltsReplace = llvm::safe_malloc(NewCapacity * TSize); in replaceAllocation() 117 memcpy(NewEltsReplace, NewElts, VSize * TSize); in replaceAllocation() 125 size_t TSize, in mallocForGrow() argument 130 void *NewElts = llvm::safe_malloc(NewCapacity * TSize); in mallocForGrow() 132 NewElts = replaceAllocation(NewElts, TSize, NewCapacity); in mallocForGrow() 139 size_t TSize) { in grow_pod() argument 143 NewElts = llvm::safe_malloc(NewCapacity * TSize); in grow_pod() 145 NewElts = replaceAllocation(NewElts, TSize, NewCapacity); in grow_pod() 148 memcpy(NewElts, this->BeginX, size() * TSize); in grow_pod() 151 NewElts = llvm::safe_realloc(this->BeginX, NewCapacity * TSize); in grow_pod() [all …]
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Analysis/ |
| H A D | Local.cpp | 67 TypeSize TSize = GTI.getSequentialElementStride(DL); in emitGEPOffset() local 68 if (TSize != TypeSize::getFixed(1)) { in emitGEPOffset() 69 Value *Scale = Builder->CreateTypeSize(IntIdxTy->getScalarType(), TSize); in emitGEPOffset()
|
| H A D | InlineCost.cpp | 2822 for (unsigned TIdx = 0, TSize = TI->getNumSuccessors(); TIdx != TSize; in analyze() local
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/ADT/ |
| H A D | SmallVector.h | 69 void *mallocForGrow(void *FirstEl, size_t MinSize, size_t TSize, 75 void grow_pod(void *FirstEl, size_t MinSize, size_t TSize); 87 void *replaceAllocation(void *NewElts, size_t TSize, size_t NewCapacity, 150 void grow_pod(size_t MinSize, size_t TSize) { in grow_pod() argument 151 Base::grow_pod(getFirstEl(), MinSize, TSize); in grow_pod()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/AST/ |
| H A D | ExprConstant.cpp | 9707 uint64_t TSize = Info.Ctx.getTypeSizeInChars(T).getQuantity(); in VisitBuiltinCallExpr() local 9708 if (TSize == 0) in VisitBuiltinCallExpr() 9713 llvm::APInt::udivrem(OrigN, TSize, N, Remainder); in VisitBuiltinCallExpr() 9717 << (unsigned)TSize; in VisitBuiltinCallExpr() 9734 uint64_t NBytes = NElems * TSize; in VisitBuiltinCallExpr()
|