Home
last modified time | relevance | path

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

/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/swiftshader/third_party/llvm-7.0/llvm/lib/Support/
Dregcomp.c217 static char othercase(int);
841 ci = othercase(i); in p_bracket()
1028 othercase(int ch) in othercase() function
1053 assert(othercase(ch) != ch); /* p_bracket() would recurse */ in bothcases()
1073 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/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/pcre/dist2/src/
Dpcre2_dfa_match.c2184 unsigned int othercase; in internal_dfa_match() local
2186 othercase = fcc[c]; in internal_dfa_match()
2188 othercase = UCD_OTHERCASE(c); in internal_dfa_match()
2189 if (d == othercase) { ADD_NEW(state_offset + dlen + 1, 0); } in internal_dfa_match()
Dpcre2_compile.c4459 uint32_t c, othercase, next; in get_othercase_range() local
4473 if ((othercase = UCD_OTHERCASE(c)) != c) break; in get_othercase_range()
4482 *ocptr = othercase; in get_othercase_range()
4483 next = othercase + 1; in get_othercase_range()
Dpcre2_match.c1152 uint32_t othercase; in match() local
1155 (othercase = UCD_OTHERCASE(fc)) != fc) in match()
1156 Loclength = PRIV(ord2utf)(othercase, Foccu); in match()
Dpcre2_jit_compile.c3881 PCRE2_UCHAR othercase[4]; in scan_prefix() local
3883 PCRE2_UCHAR othercase[2]; in scan_prefix() local
3885 PCRE2_UCHAR othercase[1]; in scan_prefix() local
4221 if ((int)PRIV(ord2utf)(char_othercase(common, chr), othercase) != len) in scan_prefix()
4228 othercase[0] = TABLE_GET(chr, common->fcc, chr); in scan_prefix()
4234 othercase[0] = 0; /* Stops compiler warning - PH */ in scan_prefix()
4241 oc = othercase; in scan_prefix()