Searched refs:NBytes (Results 1 – 6 of 6) sorted by relevance
| /freebsd/contrib/llvm-project/llvm/lib/Demangle/ |
| H A D | ItaniumDemangle.cpp | 308 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/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
| H A D | AMDGPUSubtarget.cpp | 349 unsigned NBytes = in getImplicitArgNumBytes() local 352 NBytes); in getImplicitArgNumBytes()
|
| /freebsd/contrib/llvm-project/clang/include/clang/Sema/ |
| H A D | Overload.h | 1298 unsigned NBytes = sizeof(T) * N; in slabAllocate() local 1299 if (NBytes > NumInlineBytes - NumInlineBytesUsed) in slabAllocate() 1305 NumInlineBytesUsed += NBytes; in slabAllocate()
|
| /freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
| H A D | SimplifyLibCalls.cpp | 453 static Value* memChrToCharCompare(CallInst *CI, Value *NBytes, in memChrToCharCompare() argument 465 if (NBytes) { in memChrToCharCompare() 466 Value *Zero = ConstantInt::get(NBytes->getType(), 0); in memChrToCharCompare() 467 Value *And = B.CreateICmpNE(NBytes, Zero); in memChrToCharCompare() 556 uint64_t NBytes = Str.size() + 1; // Include the terminating nul. in optimizeStrRChr() local 557 Value *Size = ConstantInt::get(SizeTTy, NBytes); in optimizeStrRChr() 765 uint64_t NBytes; in optimizeStrLCpy() local 767 NBytes = SizeC->getZExtValue(); in optimizeStrLCpy() 773 if (NBytes <= 1) { in optimizeStrLCpy() 774 if (NBytes == 1) in optimizeStrLCpy() [all …]
|
| /freebsd/contrib/llvm-project/llvm/lib/Analysis/ |
| H A D | ConstantFolding.cpp | 668 uint64_t NBytes = InitSize - Offset; in ReadByteArrayFromGlobal() local 669 if (NBytes > UINT16_MAX) in ReadByteArrayFromGlobal() 676 SmallVector<unsigned char, 256> RawBytes(static_cast<size_t>(NBytes)); in ReadByteArrayFromGlobal() 679 if (!ReadDataFromGlobal(Init, Offset, CurPtr, NBytes, DL)) in ReadByteArrayFromGlobal()
|
| /freebsd/contrib/llvm-project/clang/lib/AST/ |
| H A D | ExprConstant.cpp | 10254 uint64_t NBytes = NElems * TSize; in VisitBuiltinCallExpr() local 10261 if (DestOffset >= SrcOffset && DestOffset - SrcOffset < NBytes) { in VisitBuiltinCallExpr() 10273 SrcOffset - DestOffset < NBytes) { in VisitBuiltinCallExpr()
|