Home
last modified time | relevance | path

Searched refs:UUIDSize (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/GSYM/
H A DHeader.cpp28 OS << " UUIDSize = " << HEX8(H.UUIDSize) << '\n'; in operator <<()
34 for (uint8_t I = 0; I < H.UUIDSize; ++I) in operator <<()
58 if (UUIDSize > GSYM_MAX_UUID_SIZE) in checkForError()
60 "invalid UUID size %u", UUIDSize); in checkForError()
74 H.UUIDSize = Data.getU8(&Offset); in decode()
92 O.writeU8(UUIDSize); in encode()
103 LHS.AddrOffSize == RHS.AddrOffSize && LHS.UUIDSize == RHS.UUIDSize && in operator ==()
108 memcmp(LHS.UUID, RHS.UUID, LHS.UUIDSize) == 0; in operator ==()
H A DGsymCreator.cpp98 Hdr.UUIDSize = static_cast<uint8_t>(UUID.size()); in encode()
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/GSYM/
H A DHeader.h58 uint8_t UUIDSize; member