/freebsd/sys/kern/ |
H A D | vfs_cluster.c | 341 struct buf *bp, *tbp; in cluster_rbuild() local 359 tbp = fbp; in cluster_rbuild() 360 tbp->b_iocmd = BIO_READ; in cluster_rbuild() 362 tbp = getblk(vp, lbn, size, 0, 0, gbflags); in cluster_rbuild() 363 if (tbp->b_flags & B_CACHE) in cluster_rbuild() 364 return tbp; in cluster_rbuild() 365 tbp->b_flags |= B_ASYNC | B_RAM; in cluster_rbuild() 366 tbp->b_iocmd = BIO_READ; in cluster_rbuild() 368 tbp->b_blkno = blkno; in cluster_rbuild() 369 if ( (tbp->b_flags & B_MALLOC) || in cluster_rbuild() [all …]
|
/freebsd/contrib/nvi/ex/ |
H A D | ex_join.c | 37 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 D | ex_shift.c | 73 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 D | ftime.c | 40 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 D | telnet.c | 1834 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 D | telnet.c | 1913 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 D | ffs_rawread.c | 256 struct buf *bp, *nbp, *tbp; in ffs_rawread_main() local 340 tbp = bp; in ffs_rawread_main() 342 nbp = tbp; in ffs_rawread_main()
|
H A D | ffs_vfsops.c | 2340 struct buf *tbp; in ffs_bufwrite() 2367 TAILQ_FOREACH(tbp, &bp->b_cluster.cluster_head, in ffs_geom_strategy() 2369 error = ffs_copyonwrite(vp, tbp); in ffs_geom_strategy() 2393 TAILQ_FOREACH(tbp, &bp->b_cluster.cluster_head, in ffs_geom_strategy() 2395 if (!LIST_EMPTY(&tbp->b_dep)) in ffs_geom_strategy() 2396 buf_start(tbp); in ffs_geom_strategy() 2350 struct buf *tbp; ffs_geom_strategy() local
|
/freebsd/sys/geom/journal/ |
H A D | g_journal.c | 1767 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 D | g_gate.c | 802 struct bio *tbp, *lbp; in g_gate_ioctl() local 810 TAILQ_FOREACH_SAFE(bp, &sc->sc_outqueue.queue, bio_queue, tbp) { in g_gate_ioctl()
|