HomeSort by relevance Sort by last modified time
    Searched refs:buf_off (Results 1 - 4 of 4) sorted by null

  /external/openssl/crypto/evp/
bio_b64.c 83 int buf_off; member in struct:b64_struct
122 ctx->buf_off=0;
161 ctx->buf_off=0;
169 OPENSSL_assert(ctx->buf_len >= ctx->buf_off);
170 i=ctx->buf_len-ctx->buf_off;
172 OPENSSL_assert(ctx->buf_off+i < (int)sizeof(ctx->buf));
173 memcpy(out,&(ctx->buf[ctx->buf_off]),i);
177 ctx->buf_off+=i;
178 if (ctx->buf_len == ctx->buf_off)
181 ctx->buf_off=0
    [all...]
bio_enc.c 79 int buf_off; member in struct:enc_struct
117 ctx->buf_off=0;
156 i=ctx->buf_len-ctx->buf_off;
158 memcpy(out,&(ctx->buf[ctx->buf_off]),i);
162 ctx->buf_off+=i;
163 if (ctx->buf_len == ctx->buf_off)
166 ctx->buf_off=0;
191 ctx->buf_off=0;
221 ctx->buf_off=i;
240 n=ctx->buf_len-ctx->buf_off;
    [all...]
bio_ok.c 148 size_t buf_off; member in struct:ok_struct
185 ctx->buf_off=0;
229 i=ctx->buf_len-ctx->buf_off;
231 memcpy(out,&(ctx->buf[ctx->buf_off]),i);
235 ctx->buf_off+=i;
238 if (ctx->buf_len == ctx->buf_off)
240 ctx->buf_off=0;
300 n=ctx->buf_len-ctx->buf_off;
303 i=BIO_write(b->next_bio,&(ctx->buf[ctx->buf_off]),n);
311 ctx->buf_off+=i
    [all...]
  /external/openssl/crypto/pkcs7/
bio_ber.c 105 int buf_off; member in struct:bio_ber_struct
170 if (ctx->buf_off != 0)
173 j=ctx->buf_off;
181 ctx->buf_off=0;
282 n=ctx->buf_len-ctx->buf_off;
285 i=BIO_write(b->next_bio,&(ctx->buf[ctx->buf_off]),n);
291 ctx->buf_off+=i;
298 ctx->buf_off=0;
308 ctx->buf_off=0;
312 i=BIO_write(b->next_bio,&(ctx->buf[ctx->buf_off]),n)
    [all...]

Completed in 28 milliseconds