HomeSort by: relevance | last modified time | path
    Searched defs:uppercase (Results 1 - 2 of 2) sorted by relevancy

  /src/usr.sbin/btdevctl/
btdevctl.c 58 static char *uppercase(const char *);
127 service = uppercase(optarg);
221 uppercase(const char *arg) function in typeref:typename:char *
  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
sanitizer_printf.cc 44 bool negative, bool uppercase) {
77 digit = (digit < 10) ? '0' + digit : (uppercase ? 'A' : 'a') + digit - 10;
85 bool uppercase) {
87 pad_with_zero, false /* negative */, uppercase);
95 false /* uppercase */);
125 true /* pad_with_zero */, false /* uppercase */);
187 bool uppercase = (*cur == 'X'); local in function:__sanitizer::VSNPrintf
189 width, pad_with_zero, uppercase);

Completed in 13 milliseconds