Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DFormat.h166 uint64_t HexValue;
177 : HexValue(HV), DecValue(DV), Width(W), Hex(H), Upper(U),
/freebsd/contrib/ntp/util/
H A Dtg2.c598 int HexValue; local
1600 HexValue = isdigit(AsciiValue) ? AsciiValue - '0' : (AsciiValue - 'A')+10;
1614 if ((HexValue & arg) != 0)
1655 if ((HexValue & arg) != 0)
1695 if ((HexValue & arg) != 0)
1728 if ((HexValue & arg) != 0)
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/MCTargetDesc/
H A DAArch64InstPrinter.cpp2019 std::make_unsigned_t<T> HexValue = Value;
2022 markup(O, Markup::Immediate) << '#' << formatHex((uint64_t)HexValue); in printImm8OptLsl()
2029 *CommentStream << '=' << formatDec(HexValue) << '\n'; in printImm8OptLsl()
2004 std::make_unsigned_t<T> HexValue = Value; printImmSVE() local
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A Draw_ostream.cpp392 llvm::write_hex(*this, FN.HexValue, Style, FN.Width); in operator <<()