Lines Matching refs:other_cases

4797 const pcre_uint32 *other_cases;  in compile_xclass_matchingpath()  local
4842 other_cases = PRIV(ucd_caseless_sets) + cc[1]; in compile_xclass_matchingpath()
4843 while (*other_cases != NOTACHAR) in compile_xclass_matchingpath()
4845 if (*other_cases > max) max = *other_cases; in compile_xclass_matchingpath()
4846 if (*other_cases < min) min = *other_cases; in compile_xclass_matchingpath()
4847 other_cases++; in compile_xclass_matchingpath()
5138 other_cases = PRIV(ucd_caseless_sets) + cc[1]; in compile_xclass_matchingpath()
5142 …SLJIT_ASSERT(other_cases[0] != NOTACHAR && other_cases[1] != NOTACHAR && other_cases[2] != NOTACHA… in compile_xclass_matchingpath()
5143 SLJIT_ASSERT(other_cases[0] < other_cases[1] && other_cases[1] < other_cases[2]); in compile_xclass_matchingpath()
5146 if (is_powerof2(other_cases[1] ^ other_cases[0])) in compile_xclass_matchingpath()
5149 OP2(SLJIT_OR, TMP2, 0, TMP1, 0, SLJIT_IMM, other_cases[1] ^ other_cases[0]); in compile_xclass_matchingpath()
5153 OP2(SLJIT_OR, TMP2, 0, TMP2, 0, SLJIT_IMM, other_cases[1] ^ other_cases[0]); in compile_xclass_matchingpath()
5155 OP2(SLJIT_SUB | SLJIT_SET_E, SLJIT_UNUSED, 0, TMP2, 0, SLJIT_IMM, other_cases[1]); in compile_xclass_matchingpath()
5157 other_cases += 2; in compile_xclass_matchingpath()
5159 else if (is_powerof2(other_cases[2] ^ other_cases[1])) in compile_xclass_matchingpath()
5162 OP2(SLJIT_OR, TMP2, 0, TMP1, 0, SLJIT_IMM, other_cases[2] ^ other_cases[1]); in compile_xclass_matchingpath()
5166 OP2(SLJIT_OR, TMP2, 0, TMP2, 0, SLJIT_IMM, other_cases[1] ^ other_cases[0]); in compile_xclass_matchingpath()
5168 OP2(SLJIT_SUB | SLJIT_SET_E, SLJIT_UNUSED, 0, TMP2, 0, SLJIT_IMM, other_cases[2]); in compile_xclass_matchingpath()
5171 …OP2(SLJIT_SUB | SLJIT_SET_E, SLJIT_UNUSED, 0, TMP1, 0, SLJIT_IMM, (sljit_sw)(other_cases[0] - char… in compile_xclass_matchingpath()
5172 …OP_FLAGS(SLJIT_OR | ((other_cases[3] == NOTACHAR) ? SLJIT_SET_E : 0), TMP2, 0, TMP2, 0, SLJIT_EQUA… in compile_xclass_matchingpath()
5174 other_cases += 3; in compile_xclass_matchingpath()
5178 …OP2(SLJIT_SUB | SLJIT_SET_E, SLJIT_UNUSED, 0, TMP1, 0, SLJIT_IMM, (sljit_sw)(*other_cases++ - char… in compile_xclass_matchingpath()
5182 while (*other_cases != NOTACHAR) in compile_xclass_matchingpath()
5184 …OP2(SLJIT_SUB | SLJIT_SET_E, SLJIT_UNUSED, 0, TMP1, 0, SLJIT_IMM, (sljit_sw)(*other_cases++ - char… in compile_xclass_matchingpath()
5185 …OP_FLAGS(SLJIT_OR | ((*other_cases == NOTACHAR) ? SLJIT_SET_E : 0), TMP2, 0, TMP2, 0, SLJIT_EQUAL); in compile_xclass_matchingpath()