Lines Matching defs:found
367 /* \K is found in the pattern. */
369 /* (*SKIP:arg) is found in the pattern. */
371 /* (*THEN) is found in the pattern. */
3776 struct sljit_jump *found;
3800 found = CMP(SLJIT_C_EQUAL, TMP1, 0, SLJIT_IMM, first_char);
3807 found = CMP(SLJIT_C_EQUAL, TMP2, 0, SLJIT_IMM, first_char | bit);
3815 found = JUMP(SLJIT_C_NOT_ZERO);
3821 JUMPHERE(found);
3923 struct sljit_jump *found = NULL;
3956 found = JUMP(SLJIT_C_NOT_ZERO);
3985 if (found != NULL)
3986 JUMPHERE(found);
4001 struct sljit_jump *found;
4031 found = CMP(SLJIT_C_EQUAL, TMP2, 0, SLJIT_IMM, req_char);
4038 found = CMP(SLJIT_C_EQUAL, TMP2, 0, SLJIT_IMM, req_char | bit);
4042 found = CMP(SLJIT_C_EQUAL, TMP2, 0, SLJIT_IMM, req_char);
4049 JUMPHERE(found);
4735 jump_list *found = NULL;
4736 jump_list **list = (cc[0] & XCL_NOT) == 0 ? &found : backtracks;
4858 if (!check_class_ranges(common, (const pcre_uint8 *)cc, (((const pcre_uint8 *)cc)[31] & 0x80) != 0, TRUE, &found))
4865 add_jump(compiler, &found, JUMP(SLJIT_C_NOT_ZERO));
4876 add_jump(compiler, (cc[-1] & XCL_NOT) == 0 ? backtracks : &found, CMP(SLJIT_C_GREATER, TMP2, 0, SLJIT_IMM, max - min));
5224 if (found != NULL)
5225 set_jumps(found, LABEL());
5912 jump_list *found = NULL;
5923 add_jump(compiler, &found, CMP(SLJIT_C_NOT_EQUAL, SLJIT_MEM1(SLJIT_SP), OVECTOR(offset), TMP1, 0));
5932 set_jumps(found, LABEL());
6419 jump_list **found;
6448 found = (opcode == OP_ASSERT || opcode == OP_ASSERTBACK) ? &tmp : target;
6592 add_jump(compiler, found, JUMP(SLJIT_JUMP));
6784 SLJIT_ASSERT(found == &backtrack->common.topbacktracks);
7116 /* Neither capturing brackets nor recursions are found in the block. */