Home
last modified time | relevance | path

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

/external/swiftshader/third_party/LLVM/lib/Support/
Dregcomp.c82 static char othercase(int);
678 ci = othercase(i); in p_bracket()
865 othercase(int ch) in othercase() function
890 assert(othercase(ch) != ch); /* p_bracket() would recurse */ in bothcases()
910 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/pcre/dist2/src/
Dpcre2_dfa_match.c2075 unsigned int othercase; in internal_dfa_match() local
2077 othercase = fcc[c]; in internal_dfa_match()
2079 othercase = UCD_OTHERCASE(c); in internal_dfa_match()
2080 if (d == othercase) { ADD_NEW(state_offset + dlen + 1, 0); } in internal_dfa_match()
Dpcre2_compile.c2736 uint32_t c, othercase, next; in get_othercase_range() local
2750 if ((othercase = UCD_OTHERCASE(c)) != c) break; in get_othercase_range()
2759 *ocptr = othercase; in get_othercase_range()
2760 next = othercase + 1; in get_othercase_range()
Dpcre2_match.c3525 uint32_t othercase; in match() local
3527 (othercase = UCD_OTHERCASE(fc)) != fc) in match()
3528 oclength = PRIV(ord2utf)(othercase, occhars); in match()
Dpcre2_jit_compile.c3490 PCRE2_UCHAR othercase[8]; in scan_prefix() local
3492 PCRE2_UCHAR othercase[2]; in scan_prefix() local
3494 PCRE2_UCHAR othercase[1]; in scan_prefix() local
3827 if ((int)PRIV(ord2utf)(char_othercase(common, chr), othercase) != len) in scan_prefix()
3834 othercase[0] = TABLE_GET(chr, common->fcc, chr); in scan_prefix()
3840 othercase[0] = 0; /* Stops compiler warning - PH */ in scan_prefix()
3847 oc = othercase; in scan_prefix()