Searched defs:hex_value (Results 1 – 4 of 4) sorted by relevance
16 template <> struct hex_value<'0'> { static constexpr limb_type value = 0; }; struct17 template <> struct hex_value<'1'> { static constexpr limb_type value = 1; }; argument18 template <> struct hex_value<'2'> { static constexpr limb_type value = 2; }; argument19 template <> struct hex_value<'3'> { static constexpr limb_type value = 3; }; argument20 template <> struct hex_value<'4'> { static constexpr limb_type value = 4; }; argument21 template <> struct hex_value<'5'> { static constexpr limb_type value = 5; }; argument22 template <> struct hex_value<'6'> { static constexpr limb_type value = 6; }; struct23 template <> struct hex_value<'7'> { static constexpr limb_type value = 7; }; struct24 template <> struct hex_value<'8'> { static constexpr limb_type value = 8; }; argument25 template <> struct hex_value<'9'> { static constexpr limb_type value = 9; }; struct[all …]
86 int hex_value; in print_insn_spu() local
396 #define hex_value(c) ((unsigned int) _hex_value[(unsigned char) (c)]) macro