Searched refs:uppercase (Results 1 - 15 of 15) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_printf.cpp43 bool negative, bool uppercase) {
76 digit = (digit < 10) ? '0' + digit : (uppercase ? 'A' : 'a') + digit - 10;
84 bool uppercase) {
86 pad_with_zero, false /* negative */, uppercase);
94 false /* uppercase */);
124 true /* pad_with_zero */, false /* uppercase */);
186 bool uppercase = (*cur == 'X'); local
188 width, pad_with_zero, uppercase);
41 AppendNumber(char **buff, const char *buff_end, u64 absolute_value, u8 base, u8 minimal_num_length, bool pad_with_zero, bool negative, bool uppercase) argument
82 AppendUnsigned(char **buff, const char *buff_end, u64 num, u8 base, u8 minimal_num_length, bool pad_with_zero, bool uppercase) argument
/freebsd-13-stable/contrib/bmake/unit-tests/
H A Ddepsrc.mk4 # uppercase letters) in dependency declarations, such as .PHONY.
H A Dvarmod-match.mk12 # Only keep words that start with an uppercase letter.
17 # Only keep words that start with a character other than an uppercase letter.
H A Dvarmod-indirect.mk5 # uppercase or lowercase, as well as for fairly advanced modifiers that first
/freebsd-13-stable/contrib/jemalloc/src/
H A Dmalloc_io.c58 static char *u2s(uintmax_t x, unsigned base, bool uppercase, char *s,
65 static char *x2s(uintmax_t x, bool alt_form, bool uppercase, char *s,
249 u2s(uintmax_t x, unsigned base, bool uppercase, char *s, size_t *slen_p) { argument
263 const char *digits = (uppercase)
274 const char *digits = (uppercase)
330 x2s(uintmax_t x, bool alt_form, bool uppercase, char *s, size_t *slen_p) { argument
331 s = u2s(x, 16, uppercase, s, slen_p);
335 memcpy(s, uppercase ? "0X" : "0x", 2);
/freebsd-13-stable/contrib/less/
H A Dmain.c366 * If uppercase is true, the first string must begin with an uppercase
370 sprefix(ps, s, uppercase)
373 int uppercase;
382 if (uppercase)
H A Dopttbl.c644 int uppercase; local
662 * Try normal match first (uppercase == 0),
664 * try uppercase match (uppercase == 1).
666 for (uppercase = 0; uppercase <= 1; uppercase++)
668 len = sprefix(optname, oname->oname, uppercase);
H A Dfuncs.h4 public int sprefix LESSPARAMS ((char *ps, char *s, int uppercase));
/freebsd-13-stable/contrib/llvm-project/llvm/lib/TextAPI/MachO/
H A DInterfaceFile.cpp94 Stream << std::setfill('0') << std::setw(2) << std::uppercase << std::hex
/freebsd-13-stable/contrib/wpa/src/utils/
H A Dcommon.c317 size_t len, int uppercase)
325 ret = os_snprintf(pos, end - pos, uppercase ? "%02X" : "%02x",
316 _wpa_snprintf_hex(char *buf, size_t buf_size, const u8 *data, size_t len, int uppercase) argument
/freebsd-13-stable/crypto/openssl/
H A DNOTES.PERL112 Note: on VMS, you must quote any argument that contains uppercase
/freebsd-13-stable/contrib/llvm-project/libcxx/src/
H A Dios.cpp107 const ios_base::fmtflags ios_base::uppercase; member in class:ios_base
H A Dlocale.cpp4424 if (__flags & ios_base::uppercase)
4445 bool uppercase = (__flags & ios_base::uppercase) != 0; local
4457 if (uppercase)
4464 if (uppercase)
4471 if (uppercase)
4478 if (uppercase)
/freebsd-13-stable/contrib/googletest/googletest/src/
H A Dgtest.cc2018 ss << std::hex << std::uppercase << value;
2025 ss << std::setfill('0') << std::setw(2) << std::hex << std::uppercase
/freebsd-13-stable/contrib/bsnmp/tests/
H A Dcatch.hpp15138 << std::uppercase << std::hex << std::setfill('0') << std::setw(2)

Completed in 158 milliseconds