Home
last modified time | relevance | path

Searched refs:NBytes (Results 1 – 6 of 6) sorted by relevance

/freebsd-14.2/contrib/llvm-project/llvm/lib/Demangle/
H A DItaniumDemangle.cpp308 void* allocateMassive(size_t NBytes) { in allocateMassive() argument
309 NBytes += sizeof(BlockMeta); in allocateMassive()
310 BlockMeta* NewMeta = reinterpret_cast<BlockMeta*>(std::malloc(NBytes)); in allocateMassive()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Sema/
H A DOverload.h1081 unsigned NBytes = sizeof(T) * N; in slabAllocate() local
1082 if (NBytes > NumInlineBytes - NumInlineBytesUsed) in slabAllocate()
1088 NumInlineBytesUsed += NBytes; in slabAllocate()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DSimplifyLibCalls.cpp448 if (NBytes) { in memChrToCharCompare()
449 Value *Zero = ConstantInt::get(NBytes->getType(), 0); in memChrToCharCompare()
450 Value *And = B.CreateICmpNE(NBytes, Zero); in memChrToCharCompare()
540 Value *Size = ConstantInt::get(SizeTTy, NBytes); in optimizeStrRChr()
760 uint64_t NBytes; in optimizeStrLCpy() local
762 NBytes = SizeC->getZExtValue(); in optimizeStrLCpy()
768 if (NBytes <= 1) { in optimizeStrLCpy()
769 if (NBytes == 1) in optimizeStrLCpy()
787 bool NulTerm = SrcLen < NBytes; in optimizeStrLCpy()
792 NBytes = SrcLen + 1; in optimizeStrLCpy()
[all …]
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUSubtarget.cpp573 unsigned NBytes = in getImplicitArgNumBytes() local
576 NBytes); in getImplicitArgNumBytes()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Analysis/
H A DConstantFolding.cpp653 uint64_t NBytes = InitSize - Offset; in ReadByteArrayFromGlobal() local
654 if (NBytes > UINT16_MAX) in ReadByteArrayFromGlobal()
661 SmallVector<unsigned char, 256> RawBytes(static_cast<size_t>(NBytes)); in ReadByteArrayFromGlobal()
664 if (!ReadDataFromGlobal(Init, Offset, CurPtr, NBytes, DL)) in ReadByteArrayFromGlobal()
/freebsd-14.2/contrib/llvm-project/clang/lib/AST/
H A DExprConstant.cpp9734 uint64_t NBytes = NElems * TSize; in VisitBuiltinCallExpr() local
9741 if (DestOffset >= SrcOffset && DestOffset - SrcOffset < NBytes) { in VisitBuiltinCallExpr()
9753 SrcOffset - DestOffset < NBytes) { in VisitBuiltinCallExpr()