Lines Matching refs:other_cases

5494 const sljit_u32 *other_cases;  in compile_xclass_matchingpath()  local
5540 other_cases = PRIV(ucd_caseless_sets) + cc[1]; in compile_xclass_matchingpath()
5541 while (*other_cases != NOTACHAR) in compile_xclass_matchingpath()
5543 if (*other_cases > max) max = *other_cases; in compile_xclass_matchingpath()
5544 if (*other_cases < min) min = *other_cases; in compile_xclass_matchingpath()
5545 other_cases++; in compile_xclass_matchingpath()
5877 other_cases = PRIV(ucd_caseless_sets) + cc[1]; in compile_xclass_matchingpath()
5881 …SLJIT_ASSERT(other_cases[0] != NOTACHAR && other_cases[1] != NOTACHAR && other_cases[2] != NOTACHA… in compile_xclass_matchingpath()
5882 SLJIT_ASSERT(other_cases[0] < other_cases[1] && other_cases[1] < other_cases[2]); in compile_xclass_matchingpath()
5885 if (is_powerof2(other_cases[1] ^ other_cases[0])) in compile_xclass_matchingpath()
5888 OP2(SLJIT_OR, TMP2, 0, TMP1, 0, SLJIT_IMM, other_cases[1] ^ other_cases[0]); in compile_xclass_matchingpath()
5892 OP2(SLJIT_OR, TMP2, 0, TMP2, 0, SLJIT_IMM, other_cases[1] ^ other_cases[0]); in compile_xclass_matchingpath()
5894 OP2(SLJIT_SUB | SLJIT_SET_E, SLJIT_UNUSED, 0, TMP2, 0, SLJIT_IMM, other_cases[1]); in compile_xclass_matchingpath()
5896 other_cases += 2; in compile_xclass_matchingpath()
5898 else if (is_powerof2(other_cases[2] ^ other_cases[1])) in compile_xclass_matchingpath()
5901 OP2(SLJIT_OR, TMP2, 0, TMP1, 0, SLJIT_IMM, other_cases[2] ^ other_cases[1]); in compile_xclass_matchingpath()
5905 OP2(SLJIT_OR, TMP2, 0, TMP2, 0, SLJIT_IMM, other_cases[1] ^ other_cases[0]); in compile_xclass_matchingpath()
5907 OP2(SLJIT_SUB | SLJIT_SET_E, SLJIT_UNUSED, 0, TMP2, 0, SLJIT_IMM, other_cases[2]); in compile_xclass_matchingpath()
5910 …OP2(SLJIT_SUB | SLJIT_SET_E, SLJIT_UNUSED, 0, TMP1, 0, SLJIT_IMM, (sljit_sw)(other_cases[0] - char… in compile_xclass_matchingpath()
5911 …OP_FLAGS(SLJIT_OR | ((other_cases[3] == NOTACHAR) ? SLJIT_SET_E : 0), TMP2, 0, TMP2, 0, SLJIT_EQUA… in compile_xclass_matchingpath()
5913 other_cases += 3; in compile_xclass_matchingpath()
5917 …OP2(SLJIT_SUB | SLJIT_SET_E, SLJIT_UNUSED, 0, TMP1, 0, SLJIT_IMM, (sljit_sw)(*other_cases++ - char… in compile_xclass_matchingpath()
5921 while (*other_cases != NOTACHAR) in compile_xclass_matchingpath()
5923 …OP2(SLJIT_SUB | SLJIT_SET_E, SLJIT_UNUSED, 0, TMP1, 0, SLJIT_IMM, (sljit_sw)(*other_cases++ - char… in compile_xclass_matchingpath()
5924 …OP_FLAGS(SLJIT_OR | ((*other_cases == NOTACHAR) ? SLJIT_SET_E : 0), TMP2, 0, TMP2, 0, SLJIT_EQUAL); in compile_xclass_matchingpath()