Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/include/llvm/Support/
H A DBCD.h26 inline int64_t decodePackedBCD(const uint8_t *Ptr, size_t ByteLen,
28 assert(ByteLen >= 1 && ByteLen <= 9 && "Invalid BCD number");
30 size_t RunLen = ByteLen - static_cast<unsigned>(IsSigned);
36 uint8_t DecodedByteValue = (Ptr[ByteLen - 1] >> 4) & 0x0f;
37 uint8_t Sign = Ptr[ByteLen - 1] & 0x0f;
/openbsd-src/gnu/llvm/llvm/lib/DebugInfo/PDB/Native/
H A DLinePrinter.cpp139 uint64_t ByteLen = 0; member
163 CurrentRun->ByteLen += Used; in computeBlockRuns()
173 if (Offset < R.ByteLen) in findRun()
175 Offset -= R.ByteLen; in findRun()
233 assert(FoundRun.ByteLen >= RunOffset); in formatMsfStreamData()
234 uint64_t Len = FoundRun.ByteLen - RunOffset; in formatMsfStreamData()