Searched defs:HexNumber (Results 1 - 1 of 1) sorted by relevance

/external/llvm/tools/llvm-readobj/
H A DStreamWriter.h32 struct HexNumber { struct in namespace:llvm
37 HexNumber(int8_t Value) : Value(static_cast<uint8_t >(Value)) { } function in struct:llvm::HexNumber
38 HexNumber(int16_t Value) : Value(static_cast<uint16_t>(Value)) { } function in struct:llvm::HexNumber
39 HexNumber(int32_t Value) : Value(static_cast<uint32_t>(Value)) { } function in struct:llvm::HexNumber
40 HexNumber(int64_t Value) : Value(static_cast<uint64_t>(Value)) { } function in struct:llvm::HexNumber
41 HexNumber(uint8_t Value) : Value(Value) { } function in struct:llvm::HexNumber
42 HexNumber(uint16_t Value) : Value(Value) { } function in struct:llvm::HexNumber
43 HexNumber(uint32_t Value) : Value(Value) { } function in struct:llvm::HexNumber
44 HexNumber(uint64_t Value) : Value(Value) { } function in struct:llvm::HexNumber
48 raw_ostream &operator<<(raw_ostream &OS, const HexNumber
[all...]

Completed in 432 milliseconds