Home
last modified time | relevance | path

Searched refs:RemainingSize (Results 1 – 3 of 3) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/X86/MCTargetDesc/
H A DX86AsmBackend.cpp200 unsigned &RemainingSize) const;
203 unsigned &RemainingSize) const;
206 unsigned &RemainingSize) const;
867 unsigned &RemainingSize) const { in padInstructionViaPrefix()
881 const unsigned MaxPossiblePad = std::min(15 - OldSize, RemainingSize); in padInstructionViaPrefix()
915 RemainingSize -= PrefixBytesToAdd; in padInstructionViaPrefix()
921 unsigned &RemainingSize) const { in padInstructionViaRelaxation()
938 if (Delta > RemainingSize) in padInstructionViaRelaxation()
943 RemainingSize -= Delta; in padInstructionViaRelaxation()
949 unsigned &RemainingSize) const { in padInstructionEncoding()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Object/
H A DELFTypes.h669 size_t RemainingSize = 0u;
687 RemainingSize -= NoteSize;
688 if (RemainingSize == 0u) {
693 } else if (sizeof(*Nhdr) > RemainingSize)
697 if (Nhdr->getSize() > RemainingSize)
707 : RemainingSize(Size), Err(&Err) {
/netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DCGExprCXX.cpp1015 auto *RemainingSize = AllocSizeWithoutCookie; in EmitNewArrayInitializer() local
1019 RemainingSize->getType(), in EmitNewArrayInitializer()
1022 RemainingSize = Builder.CreateSub(RemainingSize, InitializedSize); in EmitNewArrayInitializer()
1026 Builder.CreateMemSet(CurPtr, Builder.getInt8(0), RemainingSize, false); in EmitNewArrayInitializer()