Home
last modified time | relevance | path

Searched refs:RecordContentLength (Results 1 – 2 of 2) sorted by relevance

/src/contrib/llvm-project/llvm/lib/MC/
H A DGOFFObjectWriter.cpp96 char Buffer[GOFF::RecordContentLength];
102 size_t Bytes = RemainingSize % GOFF::RecordContentLength; in bytesToNextPhysicalRecord()
103 return Bytes ? Bytes : GOFF::RecordContentLength; in bytesToNextPhysicalRecord()
162 Gap = (RemainingSize % GOFF::RecordContentLength); in newRecord()
164 Gap = GOFF::RecordContentLength - Gap; in newRecord()
197 if (!(RemainingSize % GOFF::RecordContentLength)) { in write_impl()
/src/contrib/llvm-project/llvm/include/llvm/BinaryFormat/
H A DGOFF.h31 constexpr uint8_t RecordContentLength = RecordLength - RecordPrefixLength; variable