Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DMinidumpYAML.cpp45 template <typename EndianType> struct HexType;
46 template <> struct HexType<support::ulittle16_t> { using type = yaml::Hex16; }; struct
47 template <> struct HexType<support::ulittle32_t> { using type = yaml::Hex32; }; struct
48 template <> struct HexType<support::ulittle64_t> { using type = yaml::Hex64; }; argument
55 mapRequiredAs<typename HexType<EndianType>::type>(IO, Key, Val); in mapRequiredHex()
64 mapOptionalAs<typename HexType<EndianType>::type>(IO, Key, Val, Default); in mapOptionalHex()