Home | History | Annotate | Download | only in dist

Lines Matching defs:oc

468   } oc;
2363 unsigned int c, oc, bit;
2373 oc = common->fcc[c];
2377 oc = UCD_OTHERCASE(c);
2379 oc = c;
2386 oc = TABLE_GET(c, common->fcc, c);
2390 oc = TABLE_GET(c, common->fcc, c);
2393 SLJIT_ASSERT(c != oc);
2395 bit = c ^ oc;
2400 /* Since c != oc, they must have at least 1 bit difference. */
3191 pcre_uchar *alternative, *cc_save, *oc;
3458 oc = othercase;
3471 add_prefix_byte((pcre_uint8)*oc, bytes);
3472 mask = *cc ^ *oc;
3500 oc++;
3777 pcre_uchar oc, bit;
3790 oc = first_char;
3793 oc = TABLE_GET(first_char, common->fcc, first_char);
3796 oc = UCD_OTHERCASE(first_char);
3799 if (first_char == oc)
3803 bit = first_char ^ oc;
3813 OP2(SLJIT_SUB | SLJIT_SET_E, SLJIT_UNUSED, 0, TMP1, 0, SLJIT_IMM, oc);
4004 pcre_uint32 oc, bit;
4021 oc = req_char;
4024 oc = TABLE_GET(req_char, common->fcc, req_char);
4027 oc = UCD_OTHERCASE(req_char);
4030 if (req_char == oc)
4034 bit = req_char ^ oc;
4043 foundoc = CMP(SLJIT_C_EQUAL, TMP2, 0, SLJIT_IMM, oc);
4628 context->oc.asuchars[context->ucharptr] = othercasebit;
4633 context->oc.asuchars[context->ucharptr] = 0;
4656 if (context->oc.asint != 0)
4657 OP2(SLJIT_OR, context->sourcereg, 0, context->sourcereg, 0, SLJIT_IMM, context->oc.asint);
4658 add_jump(compiler, backtracks, CMP(SLJIT_C_NOT_EQUAL, context->sourcereg, 0, SLJIT_IMM, context->c.asint | context->oc.asint));
4662 if (context->oc.asushort != 0)
4663 OP2(SLJIT_OR, context->sourcereg, 0, context->sourcereg, 0, SLJIT_IMM, context->oc.asushort);
4664 add_jump(compiler, backtracks, CMP(SLJIT_C_NOT_EQUAL, context->sourcereg, 0, SLJIT_IMM, context->c.asushort | context->oc.asushort));
4669 if (context->oc.asbyte != 0)
4670 OP2(SLJIT_OR, context->sourcereg, 0, context->sourcereg, 0, SLJIT_IMM, context->oc.asbyte);
4671 add_jump(compiler, backtracks, CMP(SLJIT_C_NOT_EQUAL, context->sourcereg, 0, SLJIT_IMM, context->c.asbyte | context->oc.asbyte));
5237 unsigned int c, oc, bit;
5648 oc = char_othercase(common, c);
5649 read_char_range(common, c < oc ? c : oc, c > oc ? c : oc, FALSE);
5650 bit = c ^ oc;
5658 add_jump(compiler, backtracks, CMP(SLJIT_C_NOT_EQUAL, TMP1, 0, SLJIT_IMM, oc));
5707 oc = char_othercase(common, c);
5708 read_char_range(common, c < oc ? c : oc, c > oc ? c : oc, TRUE);
5709 bit = c ^ oc;
5718 add_jump(compiler, backtracks, CMP(SLJIT_C_EQUAL, TMP1, 0, SLJIT_IMM, oc));