Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/lib/Support/
H A DNativeFormatting.cpp65 if (Len < MinDigits && Style != IntegerStyle::Number) { in write_unsigned_impl()
66 for (size_t I = Len; I < MinDigits; ++I) in write_unsigned_impl()
85 write_unsigned_impl(S, N, MinDigits, Style, IsNegative); in write_unsigned()
89 static void write_signed(raw_ostream &S, T N, size_t MinDigits, in write_signed() argument
101 write_unsigned(S, UN, MinDigits, Style, true); in write_signed()
106 write_unsigned(S, N, MinDigits, Style); in write_integer()
111 write_signed(S, N, MinDigits, Style); in write_integer()
116 write_unsigned(S, N, MinDigits, Style); in write_integer()
121 write_signed(S, N, MinDigits, Style); in write_integer()
126 write_unsigned(S, N, MinDigits, Style); in write_integer()
[all …]
/freebsd-12.1/contrib/llvm/include/llvm/Support/
H A DNativeFormatting.h30 void write_integer(raw_ostream &S, unsigned int N, size_t MinDigits,
32 void write_integer(raw_ostream &S, int N, size_t MinDigits, IntegerStyle Style);
33 void write_integer(raw_ostream &S, unsigned long N, size_t MinDigits,
35 void write_integer(raw_ostream &S, long N, size_t MinDigits,
37 void write_integer(raw_ostream &S, unsigned long long N, size_t MinDigits,
39 void write_integer(raw_ostream &S, long long N, size_t MinDigits,