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

  /src/tests/lib/libc/regex/
debug.c 72 if (g->nsub > 0)
73 fprintf(d, ", nsub=%zu", g->nsub);
  /src/lib/libc/regex/
engine.c 93 regmatch_t *pmatch; /* [nsub+1] (0 element unused) */
339 m->pmatch = (regmatch_t *)malloc((m->g->nsub + 1) *
345 for (i = 1; i <= m->g->nsub; i++)
376 for (i = 1; i <= m->g->nsub; i++) {
405 if (i <= m->g->nsub)
606 assert(0 < i && i <= m->g->nsub);
611 assert(0 < i && i <= m->g->nsub);
783 assert(0 < i && i <= m->g->nsub);
843 assert(0 < i && i <= m->g->nsub);
853 assert(0 < i && i <= m->g->nsub);
    [all...]
regex2.h 196 size_t nsub; /* copy of re_nsub */ member in struct:re_guts
regcomp.c 370 g->nsub = 0;
399 preg->re_nsub = g->nsub;
468 p->g->nsub++;
469 subno = (sopno)p->g->nsub;
581 assert(i <= p->g->nsub);
976 p->g->nsub++;
977 subno = (sopno)p->g->nsub;
1006 assert(i <= p->g->nsub);
  /src/sys/dev/sdmmc/
if_bwfm_sdio.c 1780 int nsub; local
1936 nsub = flen / sizeof(uint16_t);
1937 subsize = nsub * sizeof(uint16_t);
1944 bwfm_sdio_rx_glom(sc, sublen, nsub, &nextlen);
1947 sc->sc_rx_seq += nsub;
1958 bwfm_sdio_rx_glom(struct bwfm_sdio_softc *sc, uint16_t *sublen, int nsub,
1969 if (nsub == 0) {
1970 printf("%s: rx_glom nsub == 0\n", DEVNAME(sc));
1975 for (i = 0; i < nsub; i++) {
  /src/usr.bin/make/
var.c 1603 const regmatch_t *m, size_t nsub)
1607 if (n >= nsub)
1625 const regmatch_t *m, size_t nsub)
1635 RegexReplaceBackref(*++rp, buf, wp, m, nsub);
1647 size_t nsub; member in struct:ModifyWord_SubstRegexArgs
1668 xrv = regexec(&args->re, wp, args->nsub, m, flags);
1681 RegexReplace(args->replace, buf, wp, m, args->nsub);
3048 args.nsub = args.re.re_nsub + 1;
3049 if (args.nsub > 10)
3050 args.nsub = 10
    [all...]

Completed in 21 milliseconds