Home
last modified time | relevance | path

Searched refs:othercase (Results 1 - 7 of 7) sorted by relevance

/third_party/pcre2/pcre2/maint/
H A Ducptest.c366 unsigned int othercase = UCD_OTHERCASE(c); in print_prop() local
474 if (is_just_one && othercase != c) in print_prop()
476 printf(", U+%04X", othercase); in print_prop()
483 if (d != othercase && d != c) printf(", U+%04X", d); in print_prop()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/lib/Support/
H A Dregcomp.c90 static char othercase(int);
714 ci = othercase(i); in p_bracket()
898 - othercase - return the case counterpart of an alphabetic
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()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
H A Dregcomp.c218 static char othercase(int);
842 ci = othercase(i); in p_bracket()
1026 - othercase - return the case counterpart of an alphabetic
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()
/third_party/pcre2/pcre2/src/
H A Dpcre2_dfa_match.c2255 unsigned int othercase; in internal_dfa_match() local
2257 othercase = fcc[c]; in internal_dfa_match()
2259 othercase = UCD_OTHERCASE(c); in internal_dfa_match()
2260 if (d == othercase) { ADD_NEW(state_offset + dlen + 1, 0); } in internal_dfa_match()
H A Dpcre2_match.c1238 uint32_t othercase; in match() local
1241 (othercase = UCD_OTHERCASE(fc)) != fc) in match()
1242 Loclength = PRIV(ord2utf)(othercase, Foccu); in match()
H A Dpcre2_compile.c4913 * Get othercase range *
4924 ocptr where to put start of othercase range
4925 odptr where to put end of othercase range
4937 uint32_t c, othercase, next; in get_othercase_range() local
4951 if ((othercase = UCD_OTHERCASE(c)) != c) break; in get_othercase_range()
4960 *ocptr = othercase; in get_othercase_range()
4961 next = othercase + 1; in get_othercase_range()
4969 *odptr = next - 1; /* End of othercase range */ in get_othercase_range()
H A Dpcre2_jit_compile.c3514 /* Detects if the character has an othercase. */ in char_has_othercase()
3540 /* Returns with the othercase. */ in char_othercase()
3550 /* Detects if the character and its othercase has only 1 bit difference. */ in char_get_othercase_bit()
5449 PCRE2_UCHAR othercase[4]; in scan_prefix() local
5451 PCRE2_UCHAR othercase[2]; in scan_prefix() local
5453 PCRE2_UCHAR othercase[1]; in scan_prefix() local
5791 if ((int)PRIV(ord2utf)(char_othercase(common, chr), othercase) != len) in scan_prefix()
5800 othercase[0] = UCD_OTHERCASE(chr); in scan_prefix()
5803 othercase[0] = TABLE_GET(chr, common->fcc, chr); in scan_prefix()
5809 othercase[ in scan_prefix()
[all...]

Completed in 37 milliseconds