Home
last modified time | relevance | path

Searched refs:PayloadLength (Results 1 – 5 of 5) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DGOFFEmitter.cpp71 SetBufferSize(GOFF::PayloadLength); in GOFFOstream()
80 if (size_t Gap = (RemainingSize % GOFF::PayloadLength)) in makeNewRecord()
81 RemainingSize += GOFF::PayloadLength - Gap; in makeNewRecord()
110 size_t Bytes = RemainingSize % GOFF::PayloadLength; in bytesToNextPhysicalRecord()
111 return Bytes ? Bytes : GOFF::PayloadLength; in bytesToNextPhysicalRecord()
146 if (!(RemainingSize % GOFF::PayloadLength)) { in write_impl()
220 GW.makeNewRecord(GOFF::RT_HDR, GOFF::PayloadLength); in writeHeader()
246 GW.makeNewRecord(GOFF::RT_END, GOFF::PayloadLength); in writeEnd()
/freebsd/sys/contrib/edk2/Include/Protocol/
H A DIp6.h401 UINT16 PayloadLength; member
/freebsd/contrib/llvm-project/llvm/include/llvm/BinaryFormat/
H A DGOFF.h30 constexpr uint8_t PayloadLength = 77; variable
/freebsd/contrib/llvm-project/llvm/lib/Object/
H A DGOFFObjectFile.cpp608 DataLength -= SliceLength, Slice += GOFF::PayloadLength) { in getContinuousData()
617 SliceLength = std::min(DataLength, (uint16_t)GOFF::PayloadLength); in getContinuousData()
/freebsd/contrib/llvm-project/llvm/lib/MC/
H A DGOFFObjectWriter.cpp61 static constexpr uint8_t BufferSize = GOFF::PayloadLength;