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

/barrelfish-2018-10-04/lib/libc/locale/
H A Dgb2312.c114 int i, len, ocount; local
132 ocount = gs->count;
146 return (wc == L'\0' ? 0 : len - ocount);
H A Dgb18030.c97 int ch, len, ocount; local
115 ocount = gs->count;
169 return (wch == L'\0' ? 0 : len - ocount);
/barrelfish-2018-10-04/lib/openssl-1.0.0d/crypto/comp/
H A Dc_zlib.c436 int ocount; /* Amount of data in output buffer */ member in struct:__anon1152
617 ctx->ocount = 0;
628 while(ctx->ocount) {
629 ret = BIO_write(b->next_bio, ctx->optr, ctx->ocount);
639 ctx->ocount -= ret;
661 ctx->ocount = ctx->obufsize - zout->avail_out;
672 if(!ctx->obuf || (ctx->odone && !ctx->ocount)) return 1;
681 while(ctx->ocount)
683 ret = BIO_write(b->next_bio, ctx->optr, ctx->ocount);
690 ctx->ocount
[all...]
/barrelfish-2018-10-04/lib/pcre/
H A Dpcre_exec.c6362 int rc, ocount, arg_offset_max; local
6660 ocount = offsetcount - (offsetcount % 3);
6661 arg_offset_max = (2*ocount)/3;
6663 if (re->top_backref > 0 && re->top_backref >= ocount/3)
6665 ocount = re->top_backref * 3 + 3;
6666 md->offset_vector = (int *)(PUBL(malloc))(ocount * sizeof(int));
6672 md->offset_end = ocount;
6673 md->offset_max = (2*ocount)/3;
6684 register int *iptr = md->offset_vector + ocount;

Completed in 124 milliseconds