Searched refs:ocount (Results 1 - 14 of 14) sorted by relevance

/freebsd-10-stable/lib/libc/locale/
H A Dgb2312.c103 int i, len, ocount; local
121 ocount = gs->count;
135 return (wc == L'\0' ? 0 : len - ocount);
H A Dgb18030.c85 int ch, len, ocount; local
103 ocount = gs->count;
157 return (wch == L'\0' ? 0 : len - ocount);
/freebsd-10-stable/crypto/openssl/crypto/comp/
H A Dc_zlib.c424 int ocount; /* Amount of data in output buffer */ member in struct:__anon4
595 ctx->ocount = 0;
605 while (ctx->ocount) {
606 ret = BIO_write(b->next_bio, ctx->optr, ctx->ocount);
616 ctx->ocount -= ret;
636 ctx->ocount = ctx->obufsize - zout->avail_out;
647 if (!ctx->obuf || (ctx->odone && !ctx->ocount))
656 while (ctx->ocount) {
657 ret = BIO_write(b->next_bio, ctx->optr, ctx->ocount);
663 ctx->ocount
[all...]
/freebsd-10-stable/sys/boot/common/
H A Dbcache.c266 int cand, ocount; local
271 ocount = bcache_ctl[0].bc_count;
280 if (bcache_ctl[i].bc_count < ocount) {
281 ocount = bcache_ctl[i].bc_count;
/freebsd-10-stable/sys/netinet/
H A Dip_mroute.h247 u_long ocount; /* Output packet count on vif */ member in struct:sioc_vif_req
H A Dip_mroute.c600 req->ocount = V_viftable[vifi].v_pkt_out;
/freebsd-10-stable/sys/netinet6/
H A Dip6_mroute.h192 u_quad_t ocount; /* Output packet count on mif */ member in struct:sioc_mif_req6
H A Dip6_mroute.c508 req->ocount = mif6table[mifi].m6_pkt_out;
/freebsd-10-stable/sys/dev/cy/
H A Dcy.c1042 u_int ocount; local
1045 ocount = com->obufq.l_tail - ioptr;
1046 if (ocount > CD1400_TX_FIFO_SIZE)
1047 ocount = CD1400_TX_FIFO_SIZE;
1048 com->bytes_out += ocount;
1052 while (--ocount != 0);
2191 u_int ocount; local
2222 ocount = 0;
2224 ocount += com->obufs[0].l_tail - com->obufs[0].l_head;
2226 ocount
[all...]
/freebsd-10-stable/sys/dev/sound/pcm/
H A Dfeeder_rate.c1576 int32_t alphadrift, startdrift, reqout, ocount, reqin, align; local
1590 ocount = SND_FXDIV(count, align);
1591 if (ocount == 0)
1598 reqin = z_gy2gx(info, ocount) - z_fetched(info);
1663 reqout = z_min(z_gx2gy(info, z_fetched(info)), ocount);
1665 ocount -= reqout;
1699 } while (reqin != 0 && ocount != 0);
/freebsd-10-stable/sys/dev/sio/
H A Dsio.c1628 u_int ocount; local
1630 ocount = com->obufq.l_tail - ioptr;
1631 if (ocount > com->tx_fifo_size)
1632 ocount = com->tx_fifo_size;
1633 com->bytes_out += ocount;
1636 while (--ocount != 0);
/freebsd-10-stable/contrib/llvm/tools/lldb/source/Host/common/
H A DHost.cpp1764 size_t ocount = 0; local
1765 error.SetError( ::posix_spawnattr_setbinpref_np (&attr, 1, &cpu, &ocount), eErrorTypePOSIX);
1767 error.PutToLog(log, "::posix_spawnattr_setbinpref_np ( &attr, 1, cpu_type = 0x%8.8x, count => %llu )", cpu, (uint64_t)ocount);
1769 if (error.Fail() || ocount != 1)
/freebsd-10-stable/sys/dev/digi/
H A Ddigi.c1315 int size, ocount, totcnt = 0; local
1367 ocount = q_to_b(&tp->t_outq, port->txbuf + head, size);
1368 totcnt += ocount;
1369 head += ocount;
/freebsd-10-stable/sys/pc98/cbus/
H A Dsio.c2514 u_int ocount; local
2516 ocount = com->obufq.l_tail - ioptr;
2523 if (ocount > rsa_tx_fifo_size)
2524 ocount = rsa_tx_fifo_size;
2527 if (ocount > com->tx_fifo_size)
2528 ocount = com->tx_fifo_size;
2529 com->bytes_out += ocount;
2536 while (--ocount != 0);

Completed in 146 milliseconds