Lines Matching defs:num
49 size_t num, rem;
54 if ((num = ctx->bufsz) != 0) { /* process intermediate buffer? */
55 rem = bsz - num;
58 memcpy(ctx->buf + num, inp, len);
67 memcpy(ctx->buf + num, inp, rem);
71 /* ctx->buf is processed, ctx->num is guaranteed to be zero */
90 size_t num = ctx->bufsz;
96 * Pad the data with 10*1. Note that |num| can be |bsz - 1|
100 memset(ctx->buf + num, 0, bsz - num);
101 ctx->buf[num] = ctx->pad;