Searched refs:tbp (Results 1 - 10 of 10) sorted by relevance

/freebsd-9.3-release/lib/libcompat/4.1/
H A Dftime.c40 ftime(struct timeb *tbp) argument
47 tbp->millitm = t.tv_usec / 1000;
48 tbp->time = t.tv_sec;
49 tbp->timezone = tz.tz_minuteswest;
50 tbp->dstflag = tz.tz_dsttime;
/freebsd-9.3-release/sys/kern/
H A Dvfs_cluster.c322 struct buf *bp, *tbp; local
340 tbp = fbp;
341 tbp->b_iocmd = BIO_READ;
343 tbp = getblk(vp, lbn, size, 0, 0, gbflags);
344 if (tbp->b_flags & B_CACHE)
345 return tbp;
346 tbp->b_flags |= B_ASYNC | B_RAM;
347 tbp->b_iocmd = BIO_READ;
349 tbp->b_blkno = blkno;
350 if( (tbp
536 struct buf *nbp, *tbp; local
791 struct buf *bp, *tbp; local
[all...]
/freebsd-9.3-release/contrib/nvi/ex/
H A Dex_join.c42 char *bp, *p, *tbp; local
90 * tbp - bp is the length of the new line.
94 tbp = bp + clen;
118 *tbp++ = ' ';
122 *tbp++ = ' ';
129 memcpy(tbp, p, len);
130 tbp += len;
156 sp->cno = (tbp - bp) - (1 + extra);
159 sp->cno = (tbp - bp) - len - (1 + extra);
169 if (!first && db_set(sp, from, bp, tbp
[all...]
H A Dex_shift.c70 char *p, *bp, *tbp; local
140 for (tbp = bp, newidx = 0;
142 *tbp++ = '\t';
146 *tbp++ = ' ';
149 memcpy(tbp, p + oldidx, len - oldidx);
152 if (db_set(sp, from, bp, (tbp + (len - oldidx)) - bp)) {
/freebsd-9.3-release/contrib/telnet/telnet/
H A Dtelnet.c1887 unsigned char *tbp;
1901 tbp = ttyiring.consume;
1907 c = *tbp++ & 0xff, sc = strip(c), tcc--; count++;
1928 command(0, tbp, tcc);
1937 --tbp;
1948 if (tcc && strip(*tbp) == escape) {
1949 tbp++;
1954 command(0, (char *)tbp, tcc);
1965 if (tcc > 0 && strip(*tbp) == echoc) {
1966 tcc--; tbp
1882 unsigned char *tbp; local
[all...]
/freebsd-9.3-release/crypto/heimdal/appl/telnet/telnet/
H A Dtelnet.c1834 unsigned char *tbp = NULL; local
1848 tbp = ttyiring.consume;
1854 c = *tbp++ & 0xff, sc = strip(c), tcc--; count++;
1875 command(0, (char *)tbp, tcc);
1884 --tbp;
1895 if (tcc && strip(*tbp) == escape) {
1896 tbp++;
1901 command(0, (char *)tbp, tcc);
1912 if (tcc > 0 && strip(*tbp) == echoc) {
1913 tcc--; tbp
[all...]
/freebsd-9.3-release/sys/ufs/ffs/
H A Dffs_rawread.c275 struct buf *bp, *nbp, *tbp; local
375 tbp = bp;
377 nbp = tbp;
H A Dffs_vfsops.c2179 struct buf *tbp; local
2194 TAILQ_FOREACH(tbp, &bp->b_cluster.cluster_head,
2196 error = ffs_copyonwrite(vp, tbp);
2220 TAILQ_FOREACH(tbp, &bp->b_cluster.cluster_head,
2222 if (!LIST_EMPTY(&tbp->b_dep))
2223 buf_start(tbp);
/freebsd-9.3-release/sys/geom/journal/
H A Dg_journal.c1809 struct bio *bp, *fbp, *tbp; local
1910 while ((tbp = fbp) != NULL) {
1911 fbp = tbp->bio_next;
1912 GJ_LOGREQ(3, tbp, "Adding request.");
1914 tbp, M_WAITOK);
1971 while ((tbp = fbp) != NULL) {
1972 fbp = tbp->bio_next;
1973 g_destroy_bio(tbp);
1979 while ((tbp = sc->sc_inactive.jj_queue) != NULL) {
1980 sc->sc_inactive.jj_queue = tbp
[all...]
/freebsd-9.3-release/sys/geom/gate/
H A Dg_gate.c751 struct bio *tbp, *lbp; local
759 TAILQ_FOREACH_SAFE(bp, &sc->sc_outqueue.queue, bio_queue, tbp) {

Completed in 105 milliseconds