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

/freebsd-current/lib/libutil/
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-current/sys/kern/
H A Dvfs_cluster.c341 struct buf *bp, *tbp; local
359 tbp = fbp;
360 tbp->b_iocmd = BIO_READ;
362 tbp = getblk(vp, lbn, size, 0, 0, gbflags);
363 if (tbp->b_flags & B_CACHE)
364 return tbp;
365 tbp->b_flags |= B_ASYNC | B_RAM;
366 tbp->b_iocmd = BIO_READ;
368 tbp->b_blkno = blkno;
369 if ( (tbp
555 struct buf *nbp, *tbp; local
809 struct buf *bp, *tbp; local
[all...]
/freebsd-current/contrib/nvi/ex/
H A Dex_join.c37 CHAR_T *bp, *tbp = NULL; local
79 * tbp - bp is the length of the new line.
83 tbp = bp + clen;
107 *tbp++ = ' ';
111 *tbp++ = ' ';
118 MEMCPY(tbp, p, len);
119 tbp += len;
145 sp->cno = (tbp - bp) - (1 + extra);
148 sp->cno = (tbp - bp) - len - (1 + extra);
158 if (!first && db_set(sp, from, bp, tbp
[all...]
H A Dex_shift.c73 CHAR_T *bp, *tbp; local
145 tbp = bp;
149 *tbp++ = '\t';
154 *tbp++ = ' ';
157 MEMCPY(tbp, p + oldidx, len - oldidx);
160 if (db_set(sp, from, bp, (tbp + (len - oldidx)) - bp)) {
/freebsd-current/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-current/contrib/telnet/telnet/
H A Dtelnet.c1913 unsigned char *tbp; local
1927 tbp = ttyiring.consume;
1933 c = *tbp++ & 0xff, sc = strip(c), tcc--; count++;
1954 command(0, tbp, tcc);
1963 --tbp;
1974 if (tcc && strip(*tbp) == escape) {
1975 tbp++;
1980 command(0, (char *)tbp, tcc);
1991 if (tcc > 0 && strip(*tbp) == echoc) {
1992 tcc--; tbp
[all...]
/freebsd-current/sys/ufs/ffs/
H A Dffs_rawread.c256 struct buf *bp, *nbp, *tbp; local
345 tbp = bp;
347 nbp = tbp;
H A Dffs_vfsops.c2481 struct buf *tbp; local
2508 TAILQ_FOREACH(tbp, &bp->b_cluster.cluster_head,
2510 error = ffs_copyonwrite(vp, tbp);
2536 TAILQ_FOREACH(tbp, &bp->b_cluster.cluster_head,
2538 if (!LIST_EMPTY(&tbp->b_dep))
2539 buf_start(tbp);
/freebsd-current/sys/geom/journal/
H A Dg_journal.c1767 struct bio *bp, *fbp, *tbp; local
1868 while ((tbp = fbp) != NULL) {
1869 fbp = tbp->bio_next;
1870 GJ_LOGREQ(3, tbp, "Adding request.");
1872 tbp, M_WAITOK);
1929 while ((tbp = fbp) != NULL) {
1930 fbp = tbp->bio_next;
1931 g_destroy_bio(tbp);
1937 while ((tbp = sc->sc_inactive.jj_queue) != NULL) {
1938 sc->sc_inactive.jj_queue = tbp
[all...]
/freebsd-current/sys/geom/gate/
H A Dg_gate.c805 struct bio *tbp, *lbp; local
813 TAILQ_FOREACH_SAFE(bp, &sc->sc_outqueue.queue, bio_queue, tbp) {

Completed in 220 milliseconds