HomeSort by: relevance | last modified time | path
    Searched refs:regex_match (Results 1 - 3 of 3) sorted by relevancy

  /src/sys/external/bsd/sljit/dist/regex_src/
regexJIT.h 55 struct regex_match;
74 The re_flags argument contains the default REGEX_MATCH flags. See above. */
79 struct regex_match* regex_begin_match(struct regex_machine *machine);
80 void regex_reset_match(struct regex_match *match);
81 void regex_free_match(struct regex_match *match);
85 void regex_continue_match(struct regex_match *match, const regex_char_t *input_string, int length);
86 int regex_get_result(struct regex_match *match, int *end, int *id);
88 int regex_is_match_finished(struct regex_match *match);
93 void regex_continue_match_debug(struct regex_match *match, const regex_char_t *input_string, int length);
regexJIT.c 76 struct regex_match struct
97 void (SLJIT_CALL *call_continue)(struct regex_match *match, const regex_char_t *input_string, int length);
111 /* Current state array (loaded & stored: regex_match->current). */
113 /* Next state array (loaded & stored: regex_match->next). */
115 /* Head (loaded & stored: regex_match->head). */
121 /* 'struct regex_match*' */
127 /* Caches the regex_match->best_begin. */
1390 EMIT_OP1(SLJIT_MOV, SLJIT_MEM1(R_REGEX_MATCH), SLJIT_OFFSETOF(struct regex_match, fast_forward), SLJIT_IMM, 0);
1559 EMIT_CMP(jump, !(compiler_common->flags & REGEX_MATCH_NON_GREEDY) ? SLJIT_LESS : SLJIT_LESS_EQUAL, SLJIT_MEM1(R_REGEX_MATCH), SLJIT_OFFSETOF(struct regex_match, best_begin), R_CURR_CHAR, 0);
1562 EMIT_OP1(SLJIT_MOV, SLJIT_MEM1(R_REGEX_MATCH), SLJIT_OFFSETOF(struct regex_match, best_begin), R_CURR_CHAR, 0)
    [all...]
regexMain.c 57 struct regex_match* match;
112 struct regex_match* match;

Completed in 14 milliseconds