Lines Matching refs:buf_off
79 int buf_off; member
117 ctx->buf_off=0; in enc_new()
156 i=ctx->buf_len-ctx->buf_off; in enc_read()
158 memcpy(out,&(ctx->buf[ctx->buf_off]),i); in enc_read()
162 ctx->buf_off+=i; in enc_read()
163 if (ctx->buf_len == ctx->buf_off) in enc_read()
166 ctx->buf_off=0; in enc_read()
191 ctx->buf_off=0; in enc_read()
221 ctx->buf_off=i; in enc_read()
240 n=ctx->buf_len-ctx->buf_off; in enc_write()
243 i=BIO_write(b->next_bio,&(ctx->buf[ctx->buf_off]),n); in enc_write()
249 ctx->buf_off+=i; in enc_write()
256 ctx->buf_off=0; in enc_write()
266 ctx->buf_off=0; in enc_write()
270 i=BIO_write(b->next_bio,&(ctx->buf[ctx->buf_off]),n); in enc_write()
277 ctx->buf_off+=i; in enc_write()
280 ctx->buf_off=0; in enc_write()
312 ret=ctx->buf_len-ctx->buf_off; in enc_ctrl()
317 ret=ctx->buf_len-ctx->buf_off; in enc_ctrl()
324 while (ctx->buf_len != ctx->buf_off) in enc_ctrl()
334 ctx->buf_off=0; in enc_ctrl()