Home
last modified time | relevance | path

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

/freebsd/sys/kern/
H A Dvfs_cluster.c359 tbp = fbp; in cluster_rbuild()
364 return tbp; in cluster_rbuild()
371 return tbp; in cluster_rbuild()
375 return tbp; in cluster_rbuild()
488 if (tbp->b_blkno == tbp->b_lblkno) { in cluster_rbuild()
573 tbp; tbp = nbp) { in cluster_callback()
579 tbp->b_dirtyoff = tbp->b_dirtyend = 0; in cluster_callback()
592 bufdone(tbp); in cluster_callback()
845 bremfree(tbp); in cluster_wbuild()
858 (tbp->b_bcount != tbp->b_bufsize) || in cluster_wbuild()
[all …]
/freebsd/contrib/nvi/ex/
H A Dex_join.c37 CHAR_T *bp, *tbp = NULL; in ex_join() local
83 tbp = bp + clen; in ex_join()
107 *tbp++ = ' '; in ex_join()
111 *tbp++ = ' '; in ex_join()
118 MEMCPY(tbp, p, len); in ex_join()
119 tbp += len; in ex_join()
145 sp->cno = (tbp - bp) - (1 + extra); in ex_join()
148 sp->cno = (tbp - bp) - len - (1 + extra); in ex_join()
158 if (!first && db_set(sp, from, bp, tbp - bp)) { in ex_join()
H A Dex_shift.c73 CHAR_T *bp, *tbp; in shift() local
145 tbp = bp; in shift()
149 *tbp++ = '\t'; in shift()
154 *tbp++ = ' '; in shift()
157 MEMCPY(tbp, p + oldidx, len - oldidx); in shift()
160 if (db_set(sp, from, bp, (tbp + (len - oldidx)) - bp)) { in shift()
/freebsd/lib/libutil/
H A Dftime.c40 ftime(struct timeb *tbp) in ftime() argument
47 tbp->millitm = t.tv_usec / 1000; in ftime()
48 tbp->time = t.tv_sec; in ftime()
49 tbp->timezone = tz.tz_minuteswest; in ftime()
50 tbp->dstflag = tz.tz_dsttime; in ftime()
/freebsd/crypto/heimdal/appl/telnet/telnet/
H A Dtelnet.c1834 unsigned char *tbp = NULL; in telsnd() local
1848 tbp = ttyiring.consume; in telsnd()
1854 c = *tbp++ & 0xff, sc = strip(c), tcc--; count++; in telsnd()
1875 command(0, (char *)tbp, tcc); in telsnd()
1884 --tbp; in telsnd()
1895 if (tcc && strip(*tbp) == escape) { in telsnd()
1896 tbp++; in telsnd()
1901 command(0, (char *)tbp, tcc); in telsnd()
1912 if (tcc > 0 && strip(*tbp) == echoc) { in telsnd()
1913 tcc--; tbp++; count++; in telsnd()
/freebsd/contrib/telnet/telnet/
H A Dtelnet.c1913 unsigned char *tbp; in telsnd() local
1927 tbp = ttyiring.consume; in telsnd()
1933 c = *tbp++ & 0xff, sc = strip(c), tcc--; count++; in telsnd()
1954 command(0, tbp, tcc); in telsnd()
1963 --tbp; in telsnd()
1974 if (tcc && strip(*tbp) == escape) { in telsnd()
1975 tbp++; in telsnd()
1980 command(0, (char *)tbp, tcc); in telsnd()
1991 if (tcc > 0 && strip(*tbp) == echoc) { in telsnd()
1992 tcc--; tbp++; count++; in telsnd()
/freebsd/sys/ufs/ffs/
H A Dffs_rawread.c256 struct buf *bp, *nbp, *tbp; in ffs_rawread_main() local
345 tbp = bp; in ffs_rawread_main()
347 nbp = tbp; in ffs_rawread_main()
H A Dffs_vfsops.c2481 struct buf *tbp; in ffs_geom_strategy() local
2508 TAILQ_FOREACH(tbp, &bp->b_cluster.cluster_head, in ffs_geom_strategy()
2510 error = ffs_copyonwrite(vp, tbp); in ffs_geom_strategy()
2536 TAILQ_FOREACH(tbp, &bp->b_cluster.cluster_head, in ffs_geom_strategy()
2538 if (!LIST_EMPTY(&tbp->b_dep)) in ffs_geom_strategy()
2539 buf_start(tbp); in ffs_geom_strategy()
/freebsd/sys/geom/journal/
H A Dg_journal.c1767 struct bio *bp, *fbp, *tbp; in g_journal_sync() local
1868 while ((tbp = fbp) != NULL) { in g_journal_sync()
1869 fbp = tbp->bio_next; in g_journal_sync()
1870 GJ_LOGREQ(3, tbp, "Adding request."); in g_journal_sync()
1872 tbp, M_WAITOK); in g_journal_sync()
1929 while ((tbp = fbp) != NULL) { in g_journal_sync()
1930 fbp = tbp->bio_next; in g_journal_sync()
1931 g_destroy_bio(tbp); in g_journal_sync()
1937 while ((tbp = sc->sc_inactive.jj_queue) != NULL) { in g_journal_sync()
1938 sc->sc_inactive.jj_queue = tbp->bio_next; in g_journal_sync()
[all …]
/freebsd/sys/geom/gate/
H A Dg_gate.c805 struct bio *tbp, *lbp; in g_gate_ioctl() local
813 TAILQ_FOREACH_SAFE(bp, &sc->sc_outqueue.queue, bio_queue, tbp) { in g_gate_ioctl()