HomeSort by: relevance | last modified time | path
    Searched defs:TOLOWER (Results 1 - 25 of 33) sorted by relevancy

1 2

  /src/external/bsd/openldap/dist/include/ac/
ctype.h 25 #undef TOLOWER
29 # define TOLOWER(c) (isupper(c) ? tolower(c) : (c))
32 # define TOLOWER(c) tolower(c)
  /src/external/gpl2/xcvs/dist/lib/
strncasecmp.c 30 #define TOLOWER(Ch) (isupper (Ch) ? tolower (Ch) : (Ch))
49 c1 = TOLOWER (*p1);
50 c2 = TOLOWER (*p2);
strcasecmp.c 36 #define TOLOWER(Ch) (isupper (Ch) ? tolower (Ch) : (Ch))
88 c1 = TOLOWER (*p1);
89 c2 = TOLOWER (*p2);
strftime.c 244 # define TOLOWER(Ch, L) __towlower_l (Ch, L)
247 # define TOLOWER(Ch, L) towlower (Ch)
253 # define TOLOWER(Ch, L) __tolower_l (Ch, L)
256 # define TOLOWER(Ch, L) tolower (Ch)
260 # define TOLOWER(Ch, L) (isupper (Ch) ? tolower (Ch) : (Ch))
274 dest[len] = TOLOWER ((UCHAR_T) src[len], loc);
  /src/external/gpl2/diffutils/dist/lib/
strcasecmp.c 37 #define TOLOWER(Ch) (isupper (Ch) ? tolower (Ch) : (Ch))
56 c1 = TOLOWER (*p1);
57 c2 = TOLOWER (*p2);
strftime.c 311 # define TOLOWER(Ch) towlower (Ch)
315 # define TOLOWER(Ch) tolower (Ch)
318 # define TOLOWER(Ch) (isupper (Ch) ? tolower (Ch) : (Ch))
337 dest[len] = TOLOWER ((UCHAR_T) src[len]);
  /src/external/gpl2/gettext/dist/gettext-tools/libgrep/
m-common.c 41 #define TOLOWER(C) (ISUPPER(C) ? tolower(C) : (C))
53 ckwset->trans[i] = TOLOWER (i);
regex.c 216 # define TOLOWER(c) _tolower(c)
218 # define TOLOWER(c) tolower(c)
8052 preg->translate[i] = ISUPPER (i) ? TOLOWER (i) : i;
  /src/external/gpl2/groff/dist/src/libs/libgroff/
strcasecmp.c 37 #define TOLOWER(Ch) (isupper (Ch) ? tolower (Ch) : (Ch))
56 c1 = TOLOWER (*p1);
57 c2 = TOLOWER (*p2);
  /src/external/gpl2/texinfo/dist/lib/
strcasecmp.c 37 #define TOLOWER(Ch) (isupper (Ch) ? tolower (Ch) : (Ch))
56 c1 = TOLOWER (*p1);
57 c2 = TOLOWER (*p2);
  /src/external/bsd/nvi/dist/common/
multibyte.h 59 #define TOLOWER towlower
92 #define TOLOWER tolower
  /src/external/mpl/bind/dist/tests/bench/
ascii.c 62 #define TOLOWER(c) ((c) + ('a' - 'A') * (((c) >= 'A') ^ ((c) > 'Z')))
67 *a = TOLOWER(*b);
74 if (TOLOWER(*a) != TOLOWER(*b)) {
  /src/external/gpl2/grep/dist/src/
system.h 192 #define TOLOWER(C) (ISUPPER(C) ? tolower(C) : (C))
  /src/external/gpl3/binutils/dist/include/
safe-ctype.h 113 #define TOLOWER(c) _sch_tolower[(c) & 0xff]
147 #undef tolower macro
148 #define tolower(c) do_not_use_tolower_with_safe_ctype macro
  /src/external/gpl3/binutils.old/dist/include/
safe-ctype.h 113 #define TOLOWER(c) _sch_tolower[(c) & 0xff]
147 #undef tolower macro
148 #define tolower(c) do_not_use_tolower_with_safe_ctype macro
  /src/external/gpl3/gcc/dist/include/
safe-ctype.h 113 #define TOLOWER(c) _sch_tolower[(c) & 0xff]
147 #undef tolower macro
148 #define tolower(c) do_not_use_tolower_with_safe_ctype macro
  /src/external/gpl3/gcc.old/dist/include/
safe-ctype.h 113 #define TOLOWER(c) _sch_tolower[(c) & 0xff]
147 #undef tolower macro
148 #define tolower(c) do_not_use_tolower_with_safe_ctype macro
  /src/external/gpl3/gdb.old/dist/include/
safe-ctype.h 113 #define TOLOWER(c) _sch_tolower[(c) & 0xff]
147 #undef tolower macro
148 #define tolower(c) do_not_use_tolower_with_safe_ctype macro
  /src/external/gpl3/gdb/dist/include/
safe-ctype.h 113 #define TOLOWER(c) _sch_tolower[(c) & 0xff]
147 #undef tolower macro
148 #define tolower(c) do_not_use_tolower_with_safe_ctype macro
  /src/external/gpl2/diffutils/dist/src/
system.h 267 # define TOLOWER(c) tolower (c)
270 # define _tolower(c) tolower (c)
272 # define TOLOWER(c) (CTYPE_DOMAIN (c) && isupper (c) ? _tolower (c) : (c))
  /src/external/bsd/elftosb/dist/common/
options.cpp 40 // I need a portable version of "tolower" that does NOT modify
43 #define TOLOWER(c) (isupper(c) ? tolower(c) : c)
339 if (TOLOWER(src[i]) != TOLOWER(attempt[i])) return NO_MATCH ;
657 } else if (ignore_case && (TOLOWER(opt) == TOLOWER(optchar))) {
  /src/external/gpl3/gcc/dist/libquadmath/strtod/
strtod_l.c 51 # define TOLOWER(Ch) __towlower_l ((Ch), loc)
63 # define TOLOWER(Ch) tolower ((unsigned char)Ch)
669 || ({ CHAR_TYPE lo = TOLOWER (*cp);
706 if (c == L_('0') && TOLOWER (cp[1]) == L_('x'))
749 CHAR_TYPE lowc = TOLOWER (c);
767 || ({ CHAR_TYPE lo = TOLOWER (cp[decimal_len]);
794 && ({ CHAR_TYPE lo = TOLOWER (c);
882 (base == 16 && ({ CHAR_TYPE lo = TOLOWER (c);
897 lowc = TOLOWER (c)
    [all...]
  /src/external/gpl3/gcc.old/dist/libquadmath/strtod/
strtod_l.c 51 # define TOLOWER(Ch) __towlower_l ((Ch), loc)
63 # define TOLOWER(Ch) tolower (Ch)
669 || ({ CHAR_TYPE lo = TOLOWER (*cp);
706 if (c == L_('0') && TOLOWER (cp[1]) == L_('x'))
749 CHAR_TYPE lowc = TOLOWER (c);
767 || ({ CHAR_TYPE lo = TOLOWER (cp[decimal_len]);
794 && ({ CHAR_TYPE lo = TOLOWER (c);
882 (base == 16 && ({ CHAR_TYPE lo = TOLOWER (c);
897 lowc = TOLOWER (c)
    [all...]
  /src/external/ibm-public/postfix/dist/src/util/
sys_defs.h 1794 #define TOLOWER(c) (ISUPPER(c) ? tolower((unsigned char)(c)) : (c))
  /src/sys/external/bsd/ipf/netinet/
ip_compat.h 711 #define TOLOWER(x) tolower((u_char)(x))

Completed in 49 milliseconds

1 2