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

/freebsd-11-stable/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-11-stable/sys/kern/
H A Dvfs_cluster.c338 struct buf *bp, *tbp; local
356 tbp = fbp;
357 tbp->b_iocmd = BIO_READ;
359 tbp = getblk(vp, lbn, size, 0, 0, gbflags);
360 if (tbp->b_flags & B_CACHE)
361 return tbp;
362 tbp->b_flags |= B_ASYNC | B_RAM;
363 tbp->b_iocmd = BIO_READ;
365 tbp->b_blkno = blkno;
366 if( (tbp
562 struct buf *nbp, *tbp; local
811 struct buf *bp, *tbp; local
[all...]
/freebsd-11-stable/contrib/nvi/ex/
H A Dex_join.c41 CHAR_T *bp, *tbp = NULL; local
83 * tbp - bp is the length of the new line.
87 tbp = bp + clen;
111 *tbp++ = ' ';
115 *tbp++ = ' ';
122 MEMCPY(tbp, p, len);
123 tbp += len;
149 sp->cno = (tbp - bp) - (1 + extra);
152 sp->cno = (tbp - bp) - len - (1 + extra);
162 if (!first && db_set(sp, from, bp, tbp
[all...]
H A Dex_shift.c65 CHAR_T *bp, *tbp; local
135 for (tbp = bp, newidx = 0;
137 *tbp++ = '\t';
141 *tbp++ = ' ';
144 MEMCPY(tbp, p + oldidx, len - oldidx);
147 if (db_set(sp, from, bp, (tbp + (len - oldidx)) - bp)) {
/freebsd-11-stable/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-11-stable/contrib/telnet/telnet/
H A Dtelnet.c1915 unsigned char *tbp; local
1929 tbp = ttyiring.consume;
1935 c = *tbp++ & 0xff, sc = strip(c), tcc--; count++;
1956 command(0, tbp, tcc);
1965 --tbp;
1976 if (tcc && strip(*tbp) == escape) {
1977 tbp++;
1982 command(0, (char *)tbp, tcc);
1993 if (tcc > 0 && strip(*tbp) == echoc) {
1994 tcc--; tbp
[all...]
/freebsd-11-stable/sys/ufs/ffs/
H A Dffs_rawread.c268 struct buf *bp, *nbp, *tbp; local
357 tbp = bp;
359 nbp = tbp;
H A Dffs_vfsops.c2215 struct buf *tbp; local
2230 TAILQ_FOREACH(tbp, &bp->b_cluster.cluster_head,
2232 error = ffs_copyonwrite(vp, tbp);
2256 TAILQ_FOREACH(tbp, &bp->b_cluster.cluster_head,
2258 if (!LIST_EMPTY(&tbp->b_dep))
2259 buf_start(tbp);
/freebsd-11-stable/sys/fs/nandfs/
H A Dnandfs_segment.c194 struct buf *bp, *tbp; local
198 tbp) {
748 struct buf *bp, *tbp, *next_bp; local
752 TAILQ_FOREACH_SAFE(bp, &seg->segsum, b_cluster.cluster_entry, tbp) {
757 TAILQ_FOREACH_SAFE(bp, &seg->data, b_cluster.cluster_entry, tbp) {
793 struct buf *bp, *tbp, *next_bp; local
800 TAILQ_FOREACH_SAFE(bp, &seg->segsum, b_cluster.cluster_entry, tbp) {
813 TAILQ_FOREACH_SAFE(bp, &seg->data, b_cluster.cluster_entry, tbp) {
/freebsd-11-stable/sys/geom/journal/
H A Dg_journal.c1759 struct bio *bp, *fbp, *tbp; local
1860 while ((tbp = fbp) != NULL) {
1861 fbp = tbp->bio_next;
1862 GJ_LOGREQ(3, tbp, "Adding request.");
1864 tbp, M_WAITOK);
1921 while ((tbp = fbp) != NULL) {
1922 fbp = tbp->bio_next;
1923 g_destroy_bio(tbp);
1929 while ((tbp = sc->sc_inactive.jj_queue) != NULL) {
1930 sc->sc_inactive.jj_queue = tbp
[all...]
/freebsd-11-stable/sys/geom/gate/
H A Dg_gate.c789 struct bio *tbp, *lbp; local
797 TAILQ_FOREACH_SAFE(bp, &sc->sc_outqueue.queue, bio_queue, tbp) {

Completed in 216 milliseconds