Lines Matching refs:oc

537   } oc;  member
3551 unsigned int c, oc, bit; in char_get_othercase_bit() local
3567 oc = common->fcc[c]; in char_get_othercase_bit()
3569 oc = UCD_OTHERCASE(c); in char_get_othercase_bit()
3574 oc = TABLE_GET(c, common->fcc, c); in char_get_othercase_bit()
3578 oc = TABLE_GET(c, common->fcc, c); in char_get_othercase_bit()
3581 SLJIT_ASSERT(c != oc); in char_get_othercase_bit()
3583 bit = c ^ oc; in char_get_othercase_bit()
5447 PCRE2_SPTR alternative, cc_save, oc; in scan_prefix() local
5816 oc = othercase; in scan_prefix()
5826 add_prefix_char(*oc, chars, len == 0); in scan_prefix()
5832 oc++; in scan_prefix()
6226 PCRE2_UCHAR oc; in fast_forward_first_char() local
6228 oc = first_char; in fast_forward_first_char()
6231 oc = TABLE_GET(first_char, common->fcc, first_char); in fast_forward_first_char()
6234 oc = UCD_OTHERCASE(first_char); in fast_forward_first_char()
6238 fast_forward_first_char2(common, first_char, oc, 0); in fast_forward_first_char()
6497 sljit_u32 oc, bit; in search_requested_char() local
6510 oc = req_char; in search_requested_char()
6513 oc = TABLE_GET(req_char, common->fcc, req_char); in search_requested_char()
6516 oc = UCD_OTHERCASE(req_char); in search_requested_char()
6523 not_found = fast_requested_char_simd(common, req_char, oc); in search_requested_char()
6533 if (req_char == oc) in search_requested_char()
6537 bit = req_char ^ oc; in search_requested_char()
6546 found_oc = CMP(SLJIT_EQUAL, TMP2, 0, SLJIT_IMM, oc); in search_requested_char()
7383 context->oc.asuchars[context->ucharptr] = othercasebit; in byte_sequence_compare()
7388 context->oc.asuchars[context->ucharptr] = 0; in byte_sequence_compare()
7411 if (context->oc.asint != 0) in byte_sequence_compare()
7412 OP2(SLJIT_OR, context->sourcereg, 0, context->sourcereg, 0, SLJIT_IMM, context->oc.asint); in byte_sequence_compare()
7413 …cks, CMP(SLJIT_NOT_EQUAL, context->sourcereg, 0, SLJIT_IMM, context->c.asint | context->oc.asint)); in byte_sequence_compare()
7417 if (context->oc.asushort != 0) in byte_sequence_compare()
7418 … OP2(SLJIT_OR, context->sourcereg, 0, context->sourcereg, 0, SLJIT_IMM, context->oc.asushort); in byte_sequence_compare()
7419 …MP(SLJIT_NOT_EQUAL, context->sourcereg, 0, SLJIT_IMM, context->c.asushort | context->oc.asushort)); in byte_sequence_compare()
7424 if (context->oc.asbyte != 0) in byte_sequence_compare()
7425 OP2(SLJIT_OR, context->sourcereg, 0, context->sourcereg, 0, SLJIT_IMM, context->oc.asbyte); in byte_sequence_compare()
7426 …s, CMP(SLJIT_NOT_EQUAL, context->sourcereg, 0, SLJIT_IMM, context->c.asbyte | context->oc.asbyte)); in byte_sequence_compare()
8732 unsigned int c, oc, bit; in compile_char1_matchingpath() local
8985 oc = char_othercase(common, c); in compile_char1_matchingpath()
8986 read_char(common, c < oc ? c : oc, c > oc ? c : oc, NULL, 0); in compile_char1_matchingpath()
8988 SLJIT_ASSERT(!is_powerof2(c ^ oc)); in compile_char1_matchingpath()
8992 OP2U(SLJIT_SUB | SLJIT_SET_Z, TMP1, 0, SLJIT_IMM, oc); in compile_char1_matchingpath()
8999 add_jump(compiler, backtracks, CMP(SLJIT_NOT_EQUAL, TMP1, 0, SLJIT_IMM, oc)); in compile_char1_matchingpath()
9051 oc = char_othercase(common, c); in compile_char1_matchingpath()
9052 read_char(common, c < oc ? c : oc, c > oc ? c : oc, backtracks, READ_CHAR_UPDATE_STR_PTR); in compile_char1_matchingpath()
9053 bit = c ^ oc; in compile_char1_matchingpath()
9062 add_jump(compiler, backtracks, CMP(SLJIT_EQUAL, TMP1, 0, SLJIT_IMM, oc)); in compile_char1_matchingpath()