Searched refs:othercase (Results 1 - 3 of 3) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/
H A Dregcomp.c218 static char othercase(int);
842 ci = othercase(i);
1026 - othercase - return the case counterpart of an alphabetic
1029 othercase(int ch) function
1054 assert(othercase(ch) != ch); /* p_bracket() would recurse */
1074 if ((p->g->cflags&REG_ICASE) && isalpha((uch)ch) && othercase(ch) != ch)
/freebsd-11-stable/contrib/nvi/regex/
H A Dregcomp.c93 static char othercase(int ch);
730 ci = othercase(i);
915 - othercase - return the case counterpart of an alphabetic
918 othercase(int ch) function
941 assert(othercase(ch) != ch); /* p_bracket() would recurse */
963 if ((p->g->cflags&REG_ICASE) && isalpha(ch) && othercase(ch) != ch)
/freebsd-11-stable/lib/libc/regex/
H A Dregcomp.c130 static wint_t othercase(wint_t ch);
1076 - othercase - return the case counterpart of an alphabetic
1077 == static wint_t othercase(wint_t ch);
1080 othercase(wint_t ch) function
1106 assert(othercase(ch) != ch); /* p_bracket() would recurse */
1129 if ((p->g->cflags&REG_ICASE) && iswalpha(ch) && othercase(ch) != ch)

Completed in 66 milliseconds