Lines Matching refs:oc
534 } oc; member
3477 unsigned int c, oc, bit; in char_get_othercase_bit() local
3493 oc = common->fcc[c]; in char_get_othercase_bit()
3495 oc = UCD_OTHERCASE(c); in char_get_othercase_bit()
3500 oc = TABLE_GET(c, common->fcc, c); in char_get_othercase_bit()
3504 oc = TABLE_GET(c, common->fcc, c); in char_get_othercase_bit()
3507 SLJIT_ASSERT(c != oc); in char_get_othercase_bit()
3509 bit = c ^ oc; in char_get_othercase_bit()
5373 PCRE2_SPTR alternative, cc_save, oc; in scan_prefix() local
5742 oc = othercase; in scan_prefix()
5752 add_prefix_char(*oc, chars, len == 0); in scan_prefix()
5758 oc++; in scan_prefix()
6152 PCRE2_UCHAR oc; in fast_forward_first_char() local
6154 oc = first_char; in fast_forward_first_char()
6157 oc = TABLE_GET(first_char, common->fcc, first_char); in fast_forward_first_char()
6160 oc = UCD_OTHERCASE(first_char); in fast_forward_first_char()
6164 fast_forward_first_char2(common, first_char, oc, 0); in fast_forward_first_char()
6423 sljit_u32 oc, bit; in search_requested_char() local
6436 oc = req_char; in search_requested_char()
6439 oc = TABLE_GET(req_char, common->fcc, req_char); in search_requested_char()
6442 oc = UCD_OTHERCASE(req_char); in search_requested_char()
6449 not_found = fast_requested_char_simd(common, req_char, oc); in search_requested_char()
6459 if (req_char == oc) in search_requested_char()
6463 bit = req_char ^ oc; in search_requested_char()
6472 found_oc = CMP(SLJIT_EQUAL, TMP2, 0, SLJIT_IMM, oc); in search_requested_char()
7309 context->oc.asuchars[context->ucharptr] = othercasebit; in byte_sequence_compare()
7314 context->oc.asuchars[context->ucharptr] = 0; in byte_sequence_compare()
7337 if (context->oc.asint != 0) in byte_sequence_compare()
7338 OP2(SLJIT_OR, context->sourcereg, 0, context->sourcereg, 0, SLJIT_IMM, context->oc.asint); in byte_sequence_compare()
7339 …cks, CMP(SLJIT_NOT_EQUAL, context->sourcereg, 0, SLJIT_IMM, context->c.asint | context->oc.asint)); in byte_sequence_compare()
7343 if (context->oc.asushort != 0) in byte_sequence_compare()
7344 … OP2(SLJIT_OR, context->sourcereg, 0, context->sourcereg, 0, SLJIT_IMM, context->oc.asushort); in byte_sequence_compare()
7345 …MP(SLJIT_NOT_EQUAL, context->sourcereg, 0, SLJIT_IMM, context->c.asushort | context->oc.asushort)); in byte_sequence_compare()
7350 if (context->oc.asbyte != 0) in byte_sequence_compare()
7351 OP2(SLJIT_OR, context->sourcereg, 0, context->sourcereg, 0, SLJIT_IMM, context->oc.asbyte); in byte_sequence_compare()
7352 …s, CMP(SLJIT_NOT_EQUAL, context->sourcereg, 0, SLJIT_IMM, context->c.asbyte | context->oc.asbyte)); in byte_sequence_compare()
8501 unsigned int c, oc, bit; in compile_char1_matchingpath() local
8754 oc = char_othercase(common, c); in compile_char1_matchingpath()
8755 read_char(common, c < oc ? c : oc, c > oc ? c : oc, NULL, 0); in compile_char1_matchingpath()
8757 SLJIT_ASSERT(!is_powerof2(c ^ oc)); in compile_char1_matchingpath()
8761 OP2(SLJIT_SUB | SLJIT_SET_Z, SLJIT_UNUSED, 0, TMP1, 0, SLJIT_IMM, oc); in compile_char1_matchingpath()
8768 add_jump(compiler, backtracks, CMP(SLJIT_NOT_EQUAL, TMP1, 0, SLJIT_IMM, oc)); in compile_char1_matchingpath()
8820 oc = char_othercase(common, c); in compile_char1_matchingpath()
8821 read_char(common, c < oc ? c : oc, c > oc ? c : oc, backtracks, READ_CHAR_UPDATE_STR_PTR); in compile_char1_matchingpath()
8822 bit = c ^ oc; in compile_char1_matchingpath()
8831 add_jump(compiler, backtracks, CMP(SLJIT_EQUAL, TMP1, 0, SLJIT_IMM, oc)); in compile_char1_matchingpath()