Home
last modified time | relevance | path

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

/external/llvm-project/llvm/lib/Target/X86/MCTargetDesc/
DX86AsmBackend.cpp200 unsigned &RemainingSize) const;
203 unsigned &RemainingSize) const;
206 unsigned &RemainingSize) const;
858 unsigned &RemainingSize) const { in padInstructionViaPrefix()
872 const unsigned MaxPossiblePad = std::min(15 - OldSize, RemainingSize); in padInstructionViaPrefix()
906 RemainingSize -= PrefixBytesToAdd; in padInstructionViaPrefix()
912 unsigned &RemainingSize) const { in padInstructionViaRelaxation()
929 if (Delta > RemainingSize) in padInstructionViaRelaxation()
934 RemainingSize -= Delta; in padInstructionViaRelaxation()
940 unsigned &RemainingSize) const { in padInstructionEncoding()
[all …]
/external/pigweed/pw_protobuf/
Dencoder.cc34 std::span varint_buf = buffer_.last(RemainingSize()); in WriteVarint()
55 if (size > RemainingSize()) { in WriteRawBytes()
86 if (sizeof(SizeType) > RemainingSize()) { in Push()
/external/llvm-project/llvm/include/llvm/Object/
DELFTypes.h634 size_t RemainingSize = 0u;
652 RemainingSize -= NoteSize;
653 if (RemainingSize == 0u) {
658 } else if (sizeof(*Nhdr) > RemainingSize)
662 if (Nhdr->getSize() > RemainingSize)
672 : RemainingSize(Size), Err(&Err) {
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Object/
DELFTypes.h629 size_t RemainingSize = 0u;
647 RemainingSize -= NoteSize;
648 if (RemainingSize == 0u) {
653 } else if (sizeof(*Nhdr) > RemainingSize)
657 if (Nhdr->getSize() > RemainingSize)
667 : RemainingSize(Size), Err(&Err) {
/external/llvm-project/clang-tools-extra/clang-move/
DMove.cpp419 auto RemainingSize = CurrentNamespaces.end() - CurrentIt; in createInsertedReplacements() local
420 for (auto It = CurrentNamespaces.rbegin(); RemainingSize > 0; in createInsertedReplacements()
421 --RemainingSize, ++It) { in createInsertedReplacements()
/external/clang/lib/CodeGen/
DCGExprCXX.cpp933 auto *RemainingSize = AllocSizeWithoutCookie; in EmitNewArrayInitializer() local
937 RemainingSize->getType(), in EmitNewArrayInitializer()
940 RemainingSize = Builder.CreateSub(RemainingSize, InitializedSize); in EmitNewArrayInitializer()
944 Builder.CreateMemSet(CurPtr, Builder.getInt8(0), RemainingSize, false); in EmitNewArrayInitializer()
/external/pigweed/pw_protobuf/public/pw_protobuf/
Dencoder.h251 size_t RemainingSize() const { return buffer_.size() - EncodedSize(); } in RemainingSize() function
/external/llvm-project/clang/lib/CodeGen/
DCGExprCXX.cpp1013 auto *RemainingSize = AllocSizeWithoutCookie; in EmitNewArrayInitializer() local
1017 RemainingSize->getType(), in EmitNewArrayInitializer()
1020 RemainingSize = Builder.CreateSub(RemainingSize, InitializedSize); in EmitNewArrayInitializer()
1024 Builder.CreateMemSet(CurPtr, Builder.getInt8(0), RemainingSize, false); in EmitNewArrayInitializer()