HomeSort by: relevance | last modified time | path
    Searched refs:uppercase (Results 1 - 25 of 84) sorted by relevancy

1 2 3 4

  /src/external/ibm-public/postfix/dist/src/util/
uppercase.c 1 /* $NetBSD: uppercase.c,v 1.1.1.1 2009/06/23 10:09:01 tron Exp $ */
5 /* uppercase 3
7 /* map lowercase characters to uppercase
11 /* char *uppercase(buf)
14 /* uppercase() replaces lowercase characters in its null-terminated
15 /* input by their uppercase equivalent.
36 char *uppercase(char *string) function
stringops.h 29 extern char *uppercase(char *);
  /src/external/lgpl3/gmp/dist/tests/cxx/
t-ostream.cc 91 { "0", "0X0", ios::hex | ios::showbase | ios::uppercase },
111 { "123", "7B", ios::hex | ios::uppercase },
113 { "123", "0X7B", ios::hex | ios::showbase | ios::uppercase },
115 { "-123", "-0X7B", ios::hex | ios::showbase | ios::uppercase },
118 { "123", "173", ios::oct | ios::uppercase },
120 { "123", "0173", ios::oct | ios::showbase | ios::uppercase },
122 { "-123", "-0173", ios::oct | ios::showbase | ios::uppercase },
190 { "0", "0X0", ios::hex | ios::showbase | ios::uppercase },
193 { "5/8", "0X5/0X8", ios::hex | ios::showbase | ios::uppercase },
202 { "123/0", " 0X7B/0X0", ios::hex | ios::showbase | ios::uppercase, 10 }
    [all...]
  /src/external/lgpl3/gmp/dist/cxx/
osfuns.cc 63 p->base = (o.flags() & ios::uppercase ? -16 : 16);
67 p->expfmt = (o.flags() & ios::uppercase ? "E%c%02d" : "e%c%02d");
  /src/usr.sbin/btdevctl/
btdevctl.c 58 static char *uppercase(const char *);
127 service = uppercase(optarg);
221 uppercase(const char *arg) function
  /src/external/gpl3/gcc/dist/libstdc++-v3/src/c++98/
locale_facets.cc 91 *__fptr++ = (__flags & ios_base::uppercase) ? 'E' : 'e';
94 *__fptr++ = (__flags & ios_base::uppercase) ? 'A' : 'a';
97 *__fptr++ = (__flags & ios_base::uppercase) ? 'G' : 'g';
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/src/c++98/
locale_facets.cc 91 *__fptr++ = (__flags & ios_base::uppercase) ? 'E' : 'e';
94 *__fptr++ = (__flags & ios_base::uppercase) ? 'A' : 'a';
97 *__fptr++ = (__flags & ios_base::uppercase) ? 'G' : 'g';
  /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
189 width, pad_with_zero, uppercase);
  /src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/
sanitizer_printf.cpp 43 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 */);
188 bool uppercase = (*cur == 'X'); local
190 width, pad_with_zero, uppercase);
  /src/external/gpl3/gcc.old/dist/libsanitizer/sanitizer_common/
sanitizer_printf.cpp 43 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 */);
188 bool uppercase = (*cur == 'X'); local
190 width, pad_with_zero, uppercase);
  /src/external/bsd/jemalloc/dist/src/
malloc_io.c 56 static char *u2s(uintmax_t x, unsigned base, bool uppercase, char *s,
63 static char *x2s(uintmax_t x, bool alt_form, bool uppercase, char *s,
233 u2s(uintmax_t x, unsigned base, bool uppercase, char *s, size_t *slen_p) {
247 const char *digits = (uppercase)
258 const char *digits = (uppercase)
314 x2s(uintmax_t x, bool alt_form, bool uppercase, char *s, size_t *slen_p) {
315 s = u2s(x, 16, uppercase, s, slen_p);
319 memcpy(s, uppercase ? "0X" : "0x", 2);
  /src/external/bsd/jemalloc.old/dist/src/
malloc_io.c 58 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,
235 u2s(uintmax_t x, unsigned base, bool uppercase, char *s, size_t *slen_p) {
249 const char *digits = (uppercase)
260 const char *digits = (uppercase)
316 x2s(uintmax_t x, bool alt_form, bool uppercase, char *s, size_t *slen_p) {
317 s = u2s(x, 16, uppercase, s, slen_p);
321 memcpy(s, uppercase ? "0X" : "0x", 2);
  /src/crypto/external/apache2/openssl/dist/include/openssl/
core.h 198 #pragma names uppercase, truncated
  /src/crypto/external/bsd/openssl/dist/include/openssl/
core.h 196 # pragma names uppercase,truncated
  /src/usr.bin/make/unit-tests/
depsrc.mk 4 # uppercase letters) in dependency declarations, such as '.PHONY'.
var-op-expand.mk 217 LATER= uppercase-value
219 .if ${INDIRECT:tl} != "uppercase-replaced"
279 LATER= uppercase-value
282 .if ${indirect} != "uppercase-replaced ok uppercase-sysv"
  /src/external/lgpl3/mpfr/dist/src/
vasprintf.c 1063 int uppercase; local
1068 uppercase = spec.spec == 'A';
1076 str[1] = uppercase ? 'X' : 'x';
1169 if (uppercase)
1260 exp_fmt[0] = uppercase ? 'P' : 'p';
1285 const int uppercase = spec.spec == 'E' || spec.spec == 'G'; local
1387 exp_fmt[0] = uppercase ? 'E' : 'e';
1705 int uppercase; local
1727 uppercase = spec.spec == 'A' || spec.spec == 'E' || spec.spec == 'F'
1747 strcpy (str, uppercase ? MPFR_NAN_STRING_UC : MPFR_NAN_STRING_LC)
    [all...]
  /src/external/apache2/argon2/dist/phc-winner-argon2/src/
argon2.c 26 const char *argon2_type2string(argon2_type type, int uppercase) {
29 return uppercase ? "Argon2d" : "argon2d";
31 return uppercase ? "Argon2i" : "argon2i";
33 return uppercase ? "Argon2id" : "argon2id";
  /src/external/gpl2/groff/dist/src/preproc/refer/
ref.h 128 void uppercase(const char *ptr, const char *end, string &result);
  /src/external/bsd/less/dist/
main.c 360 * If uppercase is true, the first string must begin with an uppercase
363 public int sprefix(char *ps, char *s, int uppercase)
372 if (uppercase)
opttbl.c 803 int uppercase; local
821 * Try normal match first (uppercase == 0),
823 * try uppercase match (uppercase == 1).
825 for (uppercase = 0; uppercase <= 1; uppercase++)
827 len = sprefix(optname, oname->oname, uppercase);
  /src/external/gpl3/gdb/dist/sim/common/
cgen.sh 44 uppercase='ABCDEFGHIJKLMNOPQRSTUVWXYZ'
45 ARCH=`echo ${arch} | tr "${lowercase}" "${uppercase}"`
46 CPU=`echo ${cpu} | tr "${lowercase}" "${uppercase}"`
47 PREFIX=`echo ${prefix} | tr "${lowercase}" "${uppercase}"`
  /src/external/gpl3/gdb.old/dist/sim/common/
cgen.sh 44 uppercase='ABCDEFGHIJKLMNOPQRSTUVWXYZ'
45 ARCH=`echo ${arch} | tr "${lowercase}" "${uppercase}"`
46 CPU=`echo ${cpu} | tr "${lowercase}" "${uppercase}"`
47 PREFIX=`echo ${prefix} | tr "${lowercase}" "${uppercase}"`
  /src/external/gpl3/binutils/dist/opcodes/
cgen.sh 67 # $ARCH is the same argument but in all uppercase.
71 uppercase='ABCDEFGHIJKLMNOPQRSTUVWXYZ'
72 ARCH=`echo ${arch} | tr "${lowercase}" "${uppercase}"`
  /src/external/gpl3/binutils.old/dist/opcodes/
cgen.sh 67 # $ARCH is the same argument but in all uppercase.
71 uppercase='ABCDEFGHIJKLMNOPQRSTUVWXYZ'
72 ARCH=`echo ${arch} | tr "${lowercase}" "${uppercase}"`

Completed in 88 milliseconds

1 2 3 4