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

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

Completed in 198 milliseconds