Searched defs:overflow (Results 1 - 1 of 1) sorted by relevance

/httpd/modules/filters/
H A Dmod_data.c42 unsigned char overflow[3]; member in struct:data_ctx
136 char encoded[((sizeof(ctx->overflow)) / 3) * 4 + 1];
145 len = apr_base64_encode_binary(encoded, ctx->overflow,
196 /* fill up and write out our overflow buffer if partially used */
197 while (size && ctx->count && ctx->count < sizeof(ctx->overflow)) {
198 ctx->overflow[ctx->count++] = *data++;
201 if (ctx->count == sizeof(ctx->overflow)) {
202 len = apr_base64_encode_binary(encoded, ctx->overflow,
203 sizeof(ctx->overflow));
209 tail = size % sizeof(ctx->overflow);
[all...]

Completed in 18 milliseconds