Home
last modified time | relevance | path

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

/src/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DGOFFEmitter.cpp72 SetBufferSize(GOFF::PayloadLength); in GOFFOstream()
81 if (size_t Gap = (RemainingSize % GOFF::PayloadLength)) in makeNewRecord()
82 RemainingSize += GOFF::PayloadLength - Gap; in makeNewRecord()
111 size_t Bytes = RemainingSize % GOFF::PayloadLength; in bytesToNextPhysicalRecord()
112 return Bytes ? Bytes : GOFF::PayloadLength; in bytesToNextPhysicalRecord()
147 if (!(RemainingSize % GOFF::PayloadLength)) { in write_impl()
221 GW.makeNewRecord(GOFF::RT_HDR, GOFF::PayloadLength); in writeHeader()
249 GW.makeNewRecord(GOFF::RT_END, GOFF::PayloadLength); in writeEnd()
/src/contrib/llvm-project/llvm/include/llvm/BinaryFormat/
H A DGOFF.h30 constexpr uint8_t PayloadLength = 77; variable
/src/sys/contrib/edk2/Include/Protocol/
H A DIp6.h401 UINT16 PayloadLength; member
/src/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()