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 1734 int nsub; local in function:bwfm_sdio_rx_frames
1874 nsub = flen / sizeof(uint16_t);
1875 subsize = nsub * sizeof(uint16_t);
1882 bwfm_sdio_rx_glom(sc, sublen, nsub, &nextlen);
1894 bwfm_sdio_rx_glom(struct bwfm_sdio_softc *sc, uint16_t *sublen, int nsub,
1905 if (nsub == 0) {
1906 printf("%s: rx_glom nsub == 0\n", DEVNAME(sc));
1911 for (i = 0; i < nsub; i++) {
  /src/usr.bin/make/
var.c 1599 const regmatch_t *m, size_t nsub)
1603 if (n >= nsub)
1621 const regmatch_t *m, size_t nsub)
1631 RegexReplaceBackref(*++rp, buf, wp, m, nsub);
1643 size_t nsub; member in struct:ModifyWord_SubstRegexArgs
1664 xrv = regexec(&args->re, wp, args->nsub, m, flags);
1677 RegexReplace(args->replace, buf, wp, m, args->nsub);
3037 args.nsub = args.re.re_nsub + 1;
3038 if (args.nsub > 10)
3039 args.nsub = 10
    [all...]

Completed in 22 milliseconds