Lines Matching refs:se
501 const unsigned char *ps, *se; in simplify_gmatch_pattern() local
511 se = sp + strlen((const void *)sp); in simplify_gmatch_pattern()
522 ps = pat_scan(sp, se, true); in simplify_gmatch_pattern()
576 const char *se, *pe; in gmatchx() local
583 se = s + strlen(s); in gmatchx()
604 rv = do_gmatch((const unsigned char *)s, (const unsigned char *)se, in gmatchx()
688 do_gmatch(const unsigned char *s, const unsigned char *se, in do_gmatch() argument
699 sc = s < se ? *s : '\0'; in do_gmatch()
726 if (do_gmatch(s, se, p, pe)) in do_gmatch()
728 } while (s++ < se); in do_gmatch()
745 do_gmatch(s, se, prest, pe)) in do_gmatch()
749 for (srest = s; srest <= se; srest++) { in do_gmatch()
751 (do_gmatch(srest, se, prest, pe) || in do_gmatch()
753 se, p - 2, pe)))) in do_gmatch()
772 do_gmatch(s, se, prest, pe)) in do_gmatch()
776 srest = prest == pe ? se : s; in do_gmatch()
777 for (; srest <= se; srest++) { in do_gmatch()
779 do_gmatch(srest, se, prest, pe)) in do_gmatch()
792 for (srest = s; srest <= se; srest++) { in do_gmatch()
806 do_gmatch(srest, se, prest, pe)) in do_gmatch()
817 return (s == se); in do_gmatch()