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

  /src/external/bsd/tre/dist/lib/
tre-match-approx.c 220 int match_eo = -1; local
372 match_eo = pos;
593 && (match_eo < 0
601 match_eo = pos;
777 && (match_eo < 0
784 match_eo = pos;
794 DPRINT(("match end offset = %d, match cost = %d\n", match_eo,
801 *match_end_ofs = match_eo;
803 ret = match_eo >= 0 ? REG_OK : REG_NOMATCH;
tre-match-backtrack.c 218 int match_eo = -1; local
366 DPRINT((" match found, %d %d\n", match_eo, pos));
367 if (match_eo < pos
368 || (match_eo == pos
376 match_eo = pos;
599 else if (match_eo < 0)
638 ret = match_eo >= 0 ? REG_OK : REG_NOMATCH;
639 *match_end_ofs = match_eo;
tre-match-parallel.c 121 int match_eo = -1; /* end offset of match (-1 if no match found yet) */ local
276 if (match_eo < 0)
307 match_eo = pos;
448 && (match_eo == -1
453 match_eo = pos;
477 match_eo = pos;
491 DPRINT(("match end offset = %d\n", match_eo));
493 *match_end_ofs = match_eo;
494 ret = match_eo >= 0 ? REG_OK : REG_NOMATCH;

Completed in 33 milliseconds