Home
last modified time | relevance | path

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

/external/swiftshader/third_party/llvm-10.0/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()
/external/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()
/external/llvm/lib/Support/
Dregcomp.c90 static char othercase(int);
714 ci = othercase(i); in p_bracket()
901 othercase(int ch) in othercase() function
926 assert(othercase(ch) != ch); /* p_bracket() would recurse */ in bothcases()
946 if ((p->g->cflags&REG_ICASE) && isalpha((uch)ch) && othercase(ch) != ch) in ordinary()
/external/swiftshader/third_party/llvm-subzero/lib/Support/
Dregcomp.c90 static char othercase(int);
714 ci = othercase(i); in p_bracket()
901 othercase(int ch) in othercase() function
926 assert(othercase(ch) != ch); /* p_bracket() would recurse */ in bothcases()
946 if ((p->g->cflags&REG_ICASE) && isalpha((uch)ch) && othercase(ch) != ch) in ordinary()
/external/libcups/vcnet/regex/
Dregcomp.ih19 static char othercase(int ch);
Dregcomp.c619 ci = othercase(i);
820 othercase(ch) in othercase() function
847 assert(othercase(ch) != ch); /* p_bracket() would recurse */
870 if ((p->g->cflags&REG_ICASE) && isalpha(ch) && othercase(ch) != ch)
/external/pcre/dist2/src/
Dpcre2_dfa_match.c2198 unsigned int othercase; in internal_dfa_match() local
2200 othercase = fcc[c]; in internal_dfa_match()
2202 othercase = UCD_OTHERCASE(c); in internal_dfa_match()
2203 if (d == othercase) { ADD_NEW(state_offset + dlen + 1, 0); } in internal_dfa_match()
Dpcre2_compile.c4829 uint32_t c, othercase, next; in get_othercase_range() local
4843 if ((othercase = UCD_OTHERCASE(c)) != c) break; in get_othercase_range()
4852 *ocptr = othercase; in get_othercase_range()
4853 next = othercase + 1; in get_othercase_range()
Dpcre2_match.c1221 uint32_t othercase; in match() local
1224 (othercase = UCD_OTHERCASE(fc)) != fc) in match()
1225 Loclength = PRIV(ord2utf)(othercase, Foccu); in match()
Dpcre2_jit_compile.c5375 PCRE2_UCHAR othercase[4]; in scan_prefix() local
5377 PCRE2_UCHAR othercase[2]; in scan_prefix() local
5379 PCRE2_UCHAR othercase[1]; in scan_prefix() local
5717 if ((int)PRIV(ord2utf)(char_othercase(common, chr), othercase) != len) in scan_prefix()
5726 othercase[0] = UCD_OTHERCASE(chr); in scan_prefix()
5729 othercase[0] = TABLE_GET(chr, common->fcc, chr); in scan_prefix()
5735 othercase[0] = 0; /* Stops compiler warning - PH */ in scan_prefix()
5742 oc = othercase; in scan_prefix()