HomeSort by: relevance | last modified time | path
    Searched defs:next_out (Results 1 - 5 of 5) sorted by relevancy

  /xsrc/external/mit/brotli/dist/python/
_brotli.cc 99 uint8_t* next_out = NULL; local
104 &available_out, &next_out, NULL);
404 uint8_t* next_out = NULL; local
410 &available_out, &next_out, NULL);
671 const uint8_t* next_out = BrotliDecoderTakeOutput(state, &available_out); local
673 output.insert(output.end(), next_out, next_out + available_out);
  /xsrc/external/mit/freetype/dist/src/gzip/
zlib.h 73 Bytef *next_out; /* next output byte should be put there */ member in struct:z_stream_s
74 uInt avail_out; /* remaining free space at next_out */
93 dropped to zero. It must update next_out and avail_out when avail_out
212 - Provide more output starting at next_out and update next_out and avail_out
270 if next_in or next_out was NULL), Z_BUF_ERROR if no progress is possible
305 avail_in may be modified, but next_out and avail_out are unchanged.)
324 - Provide more output starting at next_out and update next_out and avail_out
370 (for example if next_in or next_out was NULL), Z_MEM_ERROR if there was no
    [all...]
  /xsrc/external/mit/brotli/dist/c/tools/
brotli.c 128 uint8_t* next_out; member in struct:__anon5341
806 context->next_out = context->output;
832 size_t out_size = (size_t)(context->next_out - context->output);
849 context->next_out = context->output;
913 &context->next_in, &context->available_out, &context->next_out, 0);
955 &context->available_out, &context->next_out, NULL)) {
  /xsrc/external/mit/brotli/dist/c/dec/
decode.c 1268 BrotliDecoderState* s, size_t* available_out, uint8_t** next_out,
1280 if (next_out && !*next_out) {
1281 *next_out = start;
1283 if (next_out) {
1284 memcpy(*next_out, start, num_written);
1285 *next_out += num_written;
1356 size_t* available_out, uint8_t** next_out, size_t* total_out,
1391 s, available_out, next_out, total_out, BROTLI_FALSE);
2044 uint8_t* next_out = decoded_buffer local
    [all...]
  /xsrc/external/mit/brotli/dist/c/enc/
encode.c 1509 uint8_t* next_out = encoded_buffer; local
1520 &available_in, &next_in, &available_out, &next_out, &total_out);
1566 size_t* available_out, uint8_t** next_out, size_t* total_out) {
1576 memcpy(*next_out, s->next_out_, copy_output_size);
1577 *next_out += copy_output_size;
1599 const uint8_t** next_in, size_t* available_out, uint8_t** next_out,
1640 if (InjectFlushOrPushOutput(s, available_out, next_out, total_out)) {
1667 storage = *next_out;
1697 *next_out += out_bytes;
1723 size_t* available_out, uint8_t** next_out, size_t* total_out)
    [all...]

Completed in 15 milliseconds