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

  /src/sys/external/bsd/sljit/dist/regex_src/
regexJIT.h 68 #define REGEX_MATCH_NON_GREEDY 0x08
regexMain.c 259 { 0, 3, 0, -1, REGEX_MATCH_NON_GREEDY,
261 { 2, 5, 0, -1, REGEX_MATCH_NON_GREEDY,
267 { 1, 4, 0, 1, REGEX_MATCH_NON_GREEDY,
275 { 0, 0, 1, 1, REGEX_MATCH_NON_GREEDY,
regexJIT.c 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);
1599 EMIT_CMP(clear_states_jump, !(compiler_common->flags & REGEX_MATCH_NON_GREEDY) ? SLJIT_GREATER : SLJIT_GREATER_EQUAL, SLJIT_MEM1(R_TEMP), 2 * sizeof(sljit_sw), R_CURR_CHAR, 0);
1859 compiler_common.flags = re_flags & (REGEX_MATCH_BEGIN | REGEX_MATCH_END | REGEX_MATCH_NON_GREEDY | REGEX_NEWLINE | REGEX_MATCH_VERBOSE);
1861 compiler_common.flags = re_flags & (REGEX_MATCH_BEGIN | REGEX_MATCH_END | REGEX_MATCH_NON_GREEDY | REGEX_NEWLINE);
2145 if (!(compiler_common.flags & REGEX_MATCH_NON_GREEDY) || !(compiler_common.flags & REGEX_MATCH_BEGIN)) {
2250 if (!(compiler_common.flags & REGEX_MATCH_NON_GREEDY) || empty_match_id == -1) {

Completed in 13 milliseconds