Searched refs:tolower (Results 1 - 25 of 39) sorted by relevance

12

/barrelfish-master/include/cxx/
H A Dctype.h28 int tolower(int c);
54 #undef tolower macro
/barrelfish-master/lib/acpica/source/components/utilities/
H A Dutnonansi.c160 *String = (char) tolower ((int) *String);
227 c1 = tolower ((int) *String1);
228 c2 = tolower ((int) *String2);
398 if ((*String == '0') && (tolower ((int) *(String + 1)) == 'x'))
626 if (tolower ((int) *(++String)) == 'x')
653 tolower ((int) *(++String)) == 'x')
H A Dutclib.c157 * FUNCTION: tolower
677 if (tolower (*(++String)) == 'x')
712 tolower (*(++String)) == 'x')
821 * FUNCTION: tolower
832 tolower ( function
/barrelfish-master/lib/acpica/source/tools/acpidump/
H A Dapfiles.c247 Filename[0] = (char) tolower ((int) Filename[0]);
248 Filename[1] = (char) tolower ((int) Filename[1]);
249 Filename[2] = (char) tolower ((int) Filename[2]);
250 Filename[3] = (char) tolower ((int) Filename[3]);
/barrelfish-master/include/sys/
H A Dctype.h54 #define tolower(c) ((c) + 0x20 * (((c) >= 'A') && ((c) <= 'Z'))) macro
/barrelfish-master/lib/libc/locale/
H A Disctype.c193 #undef tolower macro
195 tolower(int c) function
H A DMakefile.inc17 tolower.c toupper.c utf8.c wcrtomb.c wcsnrtombs.c \
45 setlocale.3 toascii.3 tolower.3 toupper.3 towlower.3 towupper.3 \
/barrelfish-master/lib/pcre/
H A Dpcre_maketables.c94 for (i = 0; i < 256; i++) *p++ = tolower(i);
98 for (i = 0; i < 256; i++) *p++ = islower(i)? toupper(i) : tolower(i);
/barrelfish-master/include/
H A Dctype.h60 int tolower(int);
99 #define tolower(c) __sbtolower(c) macro
106 * tolower() and toupper() respectively, minus extra checking to ensure that
108 * implement these macros with the same error checking as tolower() and
/barrelfish-master/lib/lua/src/
H A Dlctype.h90 #define ltolower(c) (tolower(c))
/barrelfish-master/lib/acpica/source/include/
H A Dacclib.h232 tolower (
/barrelfish-master/lib/acpica/source/tools/acpisrc/
H A Dascase.c206 SubString1[i] = (char) tolower ((int) SubString1[i]);
433 *TokenStart = (char) tolower ((int) *TokenStart);
468 *TokenStart = (char) tolower ((int) *TokenStart);
534 SubBuffer[1] = (char) tolower ((int) SubBuffer[1]);
630 *SubBuffer = (char) tolower ((int) *SubBuffer);
/barrelfish-master/lib/libc/net/
H A Dnslexer.l88 p[i] = tolower((unsigned char)p[i]);
/barrelfish-master/usr/eclipseclp/lib_tcl/widget/
H A Dutil-expand.tcl116 set tmp [best_match [string tolower [lsort $m]] \
117 [string tolower [file tail $str]]]
H A Dutil-string.tcl36 return [string toupper [string index $str 0]][string tolower \
H A DTOUR.tcl60 set TOUR($n) [frame .tab.[string tolower $n]]
/barrelfish-master/lib/libc/nameser/
H A Dns_ttl.c92 *p = tolower(ch);
/barrelfish-master/lib/libc/gen/
H A Dreadpassphrase.c136 ch = (char)tolower((unsigned char)ch);
/barrelfish-master/include/cxx/support/xlocale/
H A D__posix_l_fallback.h123 return ::tolower(c);
/barrelfish-master/lib/acpica/source/components/debugger/
H A Ddbinput.c456 if (tolower ((int) *Command) != tolower ((int) *Invocation))
/barrelfish-master/lib/libc/inet/
H A Dinet_net_pton.c81 ch = tolower(ch);
/barrelfish-master/lib/openssl-1.0.0d/crypto/x509v3/
H A Dv3_utl.c416 if(isupper(ch)) ch = tolower(ch);
417 if(isupper(cl)) cl = tolower(cl);
/barrelfish-master/lib/vis/
H A Dunvis.c86 #define xtod(c) (isdigit(c) ? (c - '0') : ((tolower(c) - 'a') + 10))
/barrelfish-master/lib/openssl-1.0.0d/crypto/asn1/
H A Dasn_mime.c806 c = tolower(c);
816 c = tolower(c);
840 c = tolower(c);
H A Dx_name.c419 * isspace() and tolower() functions.
467 *to++ = tolower(*from++);

Completed in 202 milliseconds

12