Home
last modified time | relevance | path

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

/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/
HDSmallVector.cpp43 size_t TSize) { in grow_pod() argument
54 NewElts = safe_malloc(NewCapacity * TSize); in grow_pod()
57 memcpy(NewElts, this->BeginX, size() * TSize); in grow_pod()
60 NewElts = safe_realloc(this->BeginX, NewCapacity * TSize); in grow_pod()
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/
HDSmallVector.h49 void grow_pod(void *FirstEl, size_t MinCapacity, size_t TSize);
97 void grow_pod(size_t MinCapacity, size_t TSize) { in grow_pod() argument
98 SmallVectorBase::grow_pod(getFirstEl(), MinCapacity, TSize); in grow_pod()
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/
HDInlineCost.cpp2024 for (unsigned TIdx = 0, TSize = TI->getNumSuccessors(); TIdx != TSize; in analyze() local
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/
HDExprConstant.cpp8518 uint64_t TSize = Info.Ctx.getTypeSizeInChars(T).getQuantity(); in VisitBuiltinCallExpr() local
8522 llvm::APInt::udivrem(OrigN, TSize, N, Remainder); in VisitBuiltinCallExpr()
8526 << (unsigned)TSize; in VisitBuiltinCallExpr()
8543 uint64_t NBytes = NElems * TSize; in VisitBuiltinCallExpr()