Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/Support/
H A Dregcomp.c218 static char othercase(int);
844 ci = othercase(i); in p_bracket()
1031 othercase(int ch) in othercase() function
1056 assert(othercase(ch) != ch); /* p_bracket() would recurse */ in bothcases()
1076 if ((p->g->cflags&REG_ICASE) && isalpha((uch)ch) && othercase(ch) != ch) in ordinary()
/freebsd/contrib/nvi/regex/
H A Dregcomp.c93 static char othercase(int ch);
730 ci = othercase(i); in p_bracket()
918 othercase(int ch) in othercase() function
941 assert(othercase(ch) != ch); /* p_bracket() would recurse */ in bothcases()
963 if ((p->g->cflags&REG_ICASE) && isalpha(ch) && othercase(ch) != ch) in ordinary()
/freebsd/lib/libc/regex/
H A Dregcomp.c134 static wint_t othercase(wint_t ch);
1361 othercase(wint_t ch) function
1387 assert(othercase(ch) != ch); /* p_bracket() would recurse */
1410 if ((p->g->cflags&REG_ICASE) && iswalpha(ch) && othercase(ch) != ch)