Home
last modified time | relevance | path

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

/freebsd-12-stable/contrib/llvm-project/llvm/lib/Support/
Dregcomp.c218 static char othercase(int);
842 ci = othercase(i); in p_bracket()
1029 othercase(int ch) in othercase() function
1054 assert(othercase(ch) != ch); /* p_bracket() would recurse */ in bothcases()
1074 if ((p->g->cflags&REG_ICASE) && isalpha((uch)ch) && othercase(ch) != ch) in ordinary()
/freebsd-12-stable/contrib/nvi/regex/
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-12-stable/lib/libc/regex/
Dregcomp.c142 static wint_t othercase(wint_t ch);
1335 othercase(wint_t ch) function
1361 assert(othercase(ch) != ch); /* p_bracket() would recurse */
1384 if ((p->g->cflags&REG_ICASE) && iswalpha(ch) && othercase(ch) != ch)