Lines Matching refs:begin

164   const pcre_uchar *begin;  member
923 static BOOL detect_repeat(compiler_common *common, pcre_uchar *begin) in detect_repeat() argument
925 pcre_uchar *end = bracketend(begin); in detect_repeat()
930 sljit_sw length = end - begin; in detect_repeat()
945 if (*next != *begin) in detect_repeat()
948 if (next_end - next != length || memcmp(begin, next, IN_UCHARS(length)) != 0) in detect_repeat()
964 if (next[0] != type || next[1] != OP_BRA || next[2 + LINK_SIZE] != *begin) in detect_repeat()
967 …if (next_end - next != (length + 2 + LINK_SIZE) || memcmp(begin, next + 2 + LINK_SIZE, IN_UCHARS(l… in detect_repeat()
973 if (next[0] == type && next[1] == *begin && max >= 1) in detect_repeat()
976 if (next_end - next == (length + 1) && memcmp(begin, next + 1, IN_UCHARS(length)) == 0) in detect_repeat()
2176 OP2(SLJIT_SUB, SLJIT_R0, 0, SLJIT_MEM1(SLJIT_S0), SLJIT_OFFSETOF(jit_arguments, begin), SLJIT_IMM, … in reset_ovector()
2269 OP1(SLJIT_MOV, SLJIT_R0, 0, SLJIT_MEM1(SLJIT_R0), SLJIT_OFFSETOF(jit_arguments, begin)); in copy_ovector()
2317 OP1(SLJIT_MOV, SLJIT_S0, 0, SLJIT_MEM1(SLJIT_R1), SLJIT_OFFSETOF(jit_arguments, begin)); in return_with_partial_match()
3897 OP1(SLJIT_MOV, TMP1, 0, SLJIT_MEM1(TMP1), SLJIT_OFFSETOF(jit_arguments, begin)); in fast_forward_newline()
4153 OP1(SLJIT_MOV, TMP1, 0, SLJIT_MEM1(TMP1), SLJIT_OFFSETOF(jit_arguments, begin)); in check_wordboundary()
5304 OP1(SLJIT_MOV, TMP1, 0, SLJIT_MEM1(TMP1), SLJIT_OFFSETOF(jit_arguments, begin)); in compile_char1_matchingpath()
5580 OP1(SLJIT_MOV, TMP1, 0, SLJIT_MEM1(TMP2), SLJIT_OFFSETOF(jit_arguments, begin)); in compile_char1_matchingpath()
5588 OP1(SLJIT_MOV, TMP1, 0, SLJIT_MEM1(TMP2), SLJIT_OFFSETOF(jit_arguments, begin)); in compile_char1_matchingpath()
5837 OP1(SLJIT_MOV, TMP3, 0, SLJIT_MEM1(TMP1), SLJIT_OFFSETOF(jit_arguments, begin)); in compile_char1_matchingpath()
5848 OP1(SLJIT_MOV, TMP1, 0, SLJIT_MEM1(TMP1), SLJIT_OFFSETOF(jit_arguments, begin)); in compile_char1_matchingpath()
6361 const pcre_uchar *begin = arguments->begin; in do_callout() local
6373 callout_block->subject_length = arguments->end - arguments->begin; in do_callout()
6374 callout_block->start_match = (pcre_uchar*)callout_block->subject - arguments->begin; in do_callout()
6375 callout_block->current_position = (pcre_uchar*)callout_block->offset_vector - arguments->begin; in do_callout()
6377 callout_block->subject = (PCRE_SPTR)begin; in do_callout()
6379 callout_block->subject = (PCRE_SPTR16)begin; in do_callout()
6381 callout_block->subject = (PCRE_SPTR32)begin; in do_callout()
6389 offset_vector[i] = jit_ovector[i] - begin; in do_callout()
6390 offset_vector[i + 1] = jit_ovector[i + 1] - begin; in do_callout()
6391 if (jit_ovector[i] >= begin) in do_callout()
10434 arguments.begin = subject; in PRIV()
10527 arguments.begin = subject_ptr; in pcre_jit_exec()