Home
last modified time | relevance | path

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

/external/llvm/include/llvm/Support/
DFormat.h144 int64_t DecValue; variable
154 : HexValue(HV), DecValue(DV), Width(W), Hex(H), Upper(U), in FormattedNumber()
/external/llvm/lib/Support/
Draw_ostream.cpp432 if (FN.DecValue == 0) { in operator <<()
439 bool Neg = (FN.DecValue < 0); in operator <<()
440 uint64_t N = Neg ? -static_cast<uint64_t>(FN.DecValue) : FN.DecValue; in operator <<()