Searched refs:TOLOWER (Results 1 - 25 of 43) sorted by relevance

12

/freebsd-11-stable/contrib/binutils/libiberty/
H A Dfilename_cmp.c58 int c1 = TOLOWER (*s1);
59 int c2 = TOLOWER (*s2);
H A Dfnmatch.c73 #define FOLD(c) ((flags & FNM_CASEFOLD) ? TOLOWER (c) : (c))
/freebsd-11-stable/usr.bin/locate/locate/
H A Dlocate.h63 define TOLOWER(ch) tolower(ch)
67 #define TOLOWER(ch) (myctype[ch])
H A Dfastfind.c187 table[TOLOWER(*patend)] = 1;
292 || TOLOWER(*s) == cc
299 && TOLOWER(*q) != *p
H A Dutil.c211 *p = TOLOWER(*p);
/freebsd-11-stable/contrib/groff/src/libs/libgroff/
H A Dstrcasecmp.c35 #define TOLOWER(Ch) (isupper (Ch) ? tolower (Ch) : (Ch)) macro
54 c1 = TOLOWER (*p1);
55 c2 = TOLOWER (*p2);
/freebsd-11-stable/contrib/gcc/
H A Dgenopinit.c302 if (TOLOWER (*p) != *q)
369 putchar (TOLOWER (*np));
373 putchar (TOLOWER (*np));
/freebsd-11-stable/contrib/nvi/common/
H A Dmultibyte.h55 #define TOLOWER towlower macro
89 #define TOLOWER tolower macro
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/
H A Dkmp_str.h30 #define TOLOWER(c) ((((c) >= 'A') && ((c) <= 'Z')) ? ((c) + 'a' - 'A') : (c)) macro
H A Dkmp_str.cpp263 char first = TOLOWER(fname->dir[0]); // look for drive.
462 if (TOLOWER(target[i]) != TOLOWER(data[i])) {
/freebsd-11-stable/contrib/gcclibs/include/
H A Dsafe-ctype.h117 #define TOLOWER(c) _sch_tolower[(c) & 0xff] macro
/freebsd-11-stable/contrib/gcclibs/libiberty/
H A Dfnmatch.c73 #define FOLD(c) ((flags & FNM_CASEFOLD) ? TOLOWER (c) : (c))
/freebsd-11-stable/contrib/gdb/include/
H A Dsafe-ctype.h117 #define TOLOWER(c) _sch_tolower[(c) & 0xff] macro
/freebsd-11-stable/contrib/binutils/include/
H A Dsafe-ctype.h117 #define TOLOWER(c) _sch_tolower[(c) & 0xff] macro
/freebsd-11-stable/contrib/binutils/opcodes/
H A Dcgen-opc.c70 || (ISALPHA (*p) && (TOLOWER (*p) == TOLOWER (*n)))))
223 hash = (hash * 97) + (unsigned char) TOLOWER (*name);
H A Dmep-asm.c1069 *rx++ = TOLOWER (c);
1103 *rx++ = TOLOWER (c);
1185 while (*p && TOLOWER (*p) == TOLOWER (*str))
1221 if (TOLOWER (*str) == TOLOWER (CGEN_SYNTAX_CHAR (* syn)))
/freebsd-11-stable/contrib/ipfilter/lib/
H A Dipft_tx.c192 if (!ISALPHA(c) || (TOLOWER(c) != 'o' && TOLOWER(c) != 'i')) {
203 *out = (TOLOWER(c) == 'o') ? 1 : 0;
/freebsd-11-stable/gnu/usr.bin/grep/
H A Dsystem.h190 #define TOLOWER(C) (ISUPPER(C) ? tolower(C) : (C)) macro
/freebsd-11-stable/contrib/nvi/ex/
H A Dex_usage.c70 ap->bp[0] = TOLOWER(ap->bp[0]);
/freebsd-11-stable/contrib/nvi/vi/
H A Dv_ulcase.c161 *p = TOLOWER(ch);
/freebsd-11-stable/contrib/diff/lib/
H A Dstrftime.c227 # define TOLOWER(Ch, L) __towlower_l (Ch, L) macro
230 # define TOLOWER(Ch, L) towlower (Ch) macro
236 # define TOLOWER(Ch, L) __tolower_l (Ch, L) macro
239 # define TOLOWER(Ch, L) tolower (Ch) macro
243 # define TOLOWER(Ch, L) (isupper (Ch) ? tolower (Ch) : (Ch)) macro
257 dest[len] = TOLOWER ((UCHAR_T) src[len], loc);
/freebsd-11-stable/contrib/binutils/gas/
H A Dmacro.c675 name.ptr[idx] = TOLOWER (name.ptr[idx]);
1214 *cs = TOLOWER (*cs);
1270 copy[i] = TOLOWER (name[i]);
H A Dhash.c481 command = TOLOWER (command); /* Ecch! */
H A Dexpr.c811 expressionP->X_add_number = - TOLOWER (c);
933 expressionP->X_add_number = - TOLOWER (c);
/freebsd-11-stable/contrib/binutils/ld/
H A Dldfile.c526 *name = TOLOWER (*name);

Completed in 288 milliseconds

12