Searched refs:nsub (Results 1 - 17 of 17) sorted by relevance

/freebsd-10.0-release/sys/arm/ti/twl/
H A Dtwl.h32 int twl_read(device_t dev, uint8_t nsub, uint8_t reg, uint8_t *buf, uint16_t cnt);
33 int twl_write(device_t dev, uint8_t nsub, uint8_t reg, uint8_t *buf, uint16_t cnt);
H A Dtwl.c161 * @nsub: the sub-module to read from
172 twl_read(device_t dev, uint8_t nsub, uint8_t reg, uint8_t *buf, uint16_t cnt) argument
182 addr = sc->sc_subaddr_map[nsub];
213 * @nsub: the sub-module to read from
224 twl_write(device_t dev, uint8_t nsub, uint8_t reg, uint8_t *buf, uint16_t cnt) argument
242 addr = sc->sc_subaddr_map[nsub];
H A Dtwl_clks.c438 * @nsub: the number of the subdevice
452 uint8_t nsub, uint8_t regbase)
468 new->sub_dev = nsub;
451 twl_clks_add_clock(struct twl_clks_softc *sc, const char *name, uint8_t nsub, uint8_t regbase) argument
H A Dtwl_vreg.c807 * @nsub: the number of the subdevice
824 uint8_t nsub, uint8_t regbase, uint16_t fixed_voltage,
839 new->sub_dev = nsub;
823 twl_vreg_add_regulator(struct twl_vreg_softc *sc, const char *name, uint8_t nsub, uint8_t regbase, uint16_t fixed_voltage, const uint16_t *voltages, uint32_t num_voltages) argument
/freebsd-10.0-release/contrib/nvi/regex/
H A Dregex2.h163 size_t nsub; /* copy of re_nsub */ member in struct:re_guts
H A Dengine.c76 regmatch_t *pmatch; /* [nsub+1] (0 element unused) */
218 m->pmatch = (regmatch_t *)malloc((m->g->nsub + 1) *
224 for (i = 1; i <= m->g->nsub; i++)
256 for (i = 1; i <= m->g->nsub; i++) {
282 if (i <= m->g->nsub)
468 assert(0 < i && i <= m->g->nsub);
473 assert(0 < i && i <= m->g->nsub);
607 assert(0 < i && i <= m->g->nsub);
668 assert(0 < i && i <= m->g->nsub);
679 assert(0 < i && i <= m->g->nsub);
[all...]
H A Dregcomp.c256 g->nsub = 0;
282 preg->re_nsub = g->nsub;
369 p->g->nsub++;
370 subno = p->g->nsub;
586 p->g->nsub++;
587 subno = p->g->nsub;
617 assert(i <= p->g->nsub);
/freebsd-10.0-release/contrib/llvm/lib/Support/
H A Dregex2.h148 size_t nsub; /* copy of re_nsub */ member in struct:re_guts
H A Dregengine.inc74 llvm_regmatch_t *pmatch; /* [nsub+1] (0 element unused) */
210 m->pmatch = (llvm_regmatch_t *)malloc((m->g->nsub + 1) *
216 for (i = 1; i <= m->g->nsub; i++)
248 for (i = 1; i <= m->g->nsub; i++) {
275 if (i <= m->g->nsub)
461 assert(0 < i && i <= m->g->nsub);
466 assert(0 < i && i <= m->g->nsub);
585 assert(0 < i && i <= m->g->nsub);
648 assert(0 < i && i <= m->g->nsub);
659 assert(0 < i && i <= m->g->nsub);
[all...]
H A Dregcomp.c214 g->nsub = 0;
238 preg->re_nsub = g->nsub;
317 p->g->nsub++;
318 subno = p->g->nsub;
389 assert(backrefnum <= p->g->nsub);
557 p->g->nsub++;
558 subno = p->g->nsub;
588 assert(i <= p->g->nsub);
/freebsd-10.0-release/lib/libc/regex/grot/
H A Ddebug.c41 if (g->nsub > 0)
42 fprintf(d, ", nsub=%ld", (long)g->nsub);
/freebsd-10.0-release/lib/libc/regex/
H A Dengine.c84 regmatch_t *pmatch; /* [nsub+1] (0 element unused) */
282 m->pmatch = (regmatch_t *)malloc((m->g->nsub + 1) *
288 for (i = 1; i <= m->g->nsub; i++)
320 for (i = 1; i <= m->g->nsub; i++) {
348 if (i <= m->g->nsub)
533 assert(0 < i && i <= m->g->nsub);
538 assert(0 < i && i <= m->g->nsub);
673 assert(0 < i && i <= m->g->nsub);
736 assert(0 < i && i <= m->g->nsub);
747 assert(0 < i && i <= m->g->nsub);
[all...]
H A Dregex2.h185 size_t nsub; /* copy of re_nsub */ member in struct:re_guts
H A Dregcomp.c245 g->nsub = 0;
276 preg->re_nsub = g->nsub;
358 p->g->nsub++;
359 subno = p->g->nsub;
576 p->g->nsub++;
577 subno = p->g->nsub;
607 assert(i <= p->g->nsub);
/freebsd-10.0-release/usr.bin/make/
H A Dvar.c137 int nsub; member in struct:__anon11466
669 xrv = regexec(&pat->re, wp, pat->nsub, pat->matches, flags);
706 if (n > pat->nsub) {
1568 patt.nsub = patt.re.re_nsub + 1;
1569 if (patt.nsub < 1)
1570 patt.nsub = 1;
1571 if (patt.nsub > 10)
1572 patt.nsub = 10;
1573 patt.matches = emalloc(patt.nsub * sizeof(regmatch_t));
/freebsd-10.0-release/contrib/bmake/
H A Dvar.c281 int nsub; member in struct:__anon715
1703 xrv = regexec(&pat->re, wp, pat->nsub, pat->matches, flags);
1739 if (n > pat->nsub) {
3379 pattern.nsub = pattern.re.re_nsub + 1;
3380 if (pattern.nsub < 1)
3381 pattern.nsub = 1;
3382 if (pattern.nsub > 10)
3383 pattern.nsub = 10;
3384 pattern.matches = bmake_malloc(pattern.nsub *
/freebsd-10.0-release/contrib/one-true-awk/
H A Drun.c462 int nsub = strlen(*SUBSEP); local
472 if (!adjbuf(&buf, &bufsz, strlen(buf)+strlen(s)+nsub+1, recsize, 0, "array"))
500 int nsub = strlen(*SUBSEP); local
519 if (!adjbuf(&buf, &bufsz, strlen(buf)+strlen(s)+nsub+1, recsize, 0, "awkdelete"))
540 int nsub = strlen(*SUBSEP); local
558 if (!adjbuf(&buf, &bufsz, strlen(buf)+strlen(s)+nsub+1, recsize, 0, "intest"))

Completed in 227 milliseconds