| /xsrc/external/mit/brotli/dist/c/dec/ |
| H A D | bit_reader.h | 39 const uint8_t* next_in; /* the byte we're reading from */ member in struct:__anon53ae40080108 46 const uint8_t* next_in; member in struct:__anon53ae40080208 70 to->next_in = from->next_in; 78 to->next_in = from->next_in; 114 br->val_ |= BROTLI_UNALIGNED_LOAD64LE(br->next_in) << 8; 116 br->next_in += 7; 123 br->val_ |= BROTLI_UNALIGNED_LOAD64LE(br->next_in) << 16; 125 br->next_in [all...] |
| H A D | bit_reader.c | 48 while ((((size_t)br->next_in) & aligned_read_mask) != 0) {
|
| H A D | decode.c | 2042 const uint8_t* next_in = encoded_buffer; local in function:BrotliDecoderDecompress 2049 &s, &available_in, &next_in, &available_out, &next_out, &total_out); 2070 BrotliDecoderState* s, size_t* available_in, const uint8_t** next_in, 2089 br->next_in = *next_in; 2095 br->next_in = &s->buffer.u8[0]; 2120 br->next_in = *next_in; 2126 s->buffer.u8[s->buffer_length] = **next_in; 2129 (*next_in) 2069 BrotliDecoderDecompressStream(BrotliDecoderState * s,size_t * available_in,const uint8_t ** next_in,size_t * available_out,uint8_t ** next_out,size_t * total_out) argument [all...] |
| /xsrc/external/mit/freetype/dist/src/gzip/ |
| H A D | infutil.h | 67 #define UPDIN {z->avail_in=n;z->total_in+=p-z->next_in;z->next_in=p;} 72 #define LOADIN {p=z->next_in;n=z->avail_in;b=s->bitb;k=s->bitk;}
|
| H A D | ftgzip.c | 312 zstream->next_in = zip->buffer; 315 !zstream->next_in ) 335 zstream->next_in = NULL; 361 zstream->next_in = zip->input; 408 zstream->next_in = zip->input; 738 stream.next_in = (Bytef*)input;
|
| H A D | zlib.h | 69 Bytef *next_in; /* next input byte */ member in struct:z_stream_s 70 uInt avail_in; /* number of bytes available at next_in */ 92 The application must update next_in and avail_in when avail_in has 207 - Compress more input starting at next_in and update next_in and avail_in 209 enough room in the output buffer), next_in and avail_in are updated and 270 if next_in or next_out was NULL), Z_BUF_ERROR if no progress is possible 292 next_in, avail_in, zalloc, zfree and opaque must be initialized before by 293 the caller. If next_in is not Z_NULL and avail_in is large enough (the exact 304 the zlib header if present: this will be done by inflate(). (So next_in an [all...] |
| H A D | inflate.c | 144 #define NEXTBYTE (z->avail_in--,z->total_in++,*z->next_in++) 154 if (z == Z_NULL || z->state == Z_NULL || z->next_in == Z_NULL)
|
| /xsrc/external/mit/MesaLib/dist/src/util/ |
| H A D | compress.c | 92 strm.next_in = in_data; 137 strm.next_in = in_data;
|
| /xsrc/external/mit/libXfont/dist/src/fontfile/ |
| H A D | bunzip2.c | 71 x->z.next_in = (char *) x->b_in; 94 -- to do this, we need to get stuff into avail_in, and next_in, 139 x->z.next_in = (char *) x->b_in;
|
| H A D | gunzip.c | 39 x->z.next_in = Z_NULL; 82 -- to do this, we need to get stuff into avail_in, and next_in, 128 x->z.next_in = x->b_in;
|
| /xsrc/external/mit/libXfont2/dist/src/fontfile/ |
| H A D | bunzip2.c | 72 x->z.next_in = (char *) x->b_in; 95 -- to do this, we need to get stuff into avail_in, and next_in, 140 x->z.next_in = (char *) x->b_in;
|
| H A D | gunzip.c | 40 x->z.next_in = Z_NULL; 83 -- to do this, we need to get stuff into avail_in, and next_in, 129 x->z.next_in = x->b_in;
|
| /xsrc/external/mit/brotli/dist/python/ |
| H A D | _brotli.cc | 97 const uint8_t* next_in = input; local in function:compress_stream 103 &available_in, &next_in, 402 const uint8_t* next_in = input; local in function:decompress_stream 409 &available_in, &next_in, 640 const uint8_t* next_in; local in function:brotli_decompress 665 next_in = static_cast<uint8_t*>(input.buf); 669 result = BrotliDecoderDecompressStream(state, &available_in, &next_in,
|
| /xsrc/external/mit/freetype/dist/src/bzip2/ |
| H A D | ftbzip2.c | 175 bzstream->next_in = (char*)zip->buffer; 178 !bzstream->next_in ) 198 bzstream->next_in = NULL; 224 bzstream->next_in = (char*)zip->input; 273 bzstream->next_in = (char*)zip->input;
|
| /xsrc/external/mit/brotli/dist/c/include/brotli/ |
| H A D | encode.h | 322 * bytes addressable at @p *next_in and @p *next_out respectively. 326 * bytes consumed, and the @p *next_in pointer will be incremented by that 371 * @param[in, out] next_in pointer to the next input byte 382 const uint8_t** next_in, size_t* available_out, uint8_t** next_out,
|
| H A D | decode.h | 212 * bytes addressable at @p *next_in and @p *next_out respectively. 216 * bytes consumed, and the @p *next_in pointer will be incremented by that 224 * @note Input is never overconsumed, so @p next_in and @p available_in could be 230 * @param[in, out] next_in pointer to the next compressed byte 247 BrotliDecoderState* state, size_t* available_in, const uint8_t** next_in,
|
| /xsrc/external/mit/brotli/dist/c/enc/ |
| H A D | encode.c | 1507 const uint8_t* next_in = input_buffer; local in function:BrotliEncoderCompress 1520 &available_in, &next_in, &available_out, &next_out, &total_out); 1599 const uint8_t** next_in, size_t* available_out, uint8_t** next_out, 1679 BrotliCompressFragmentFast(m, *next_in, block_size, is_last, table, 1684 BrotliCompressFragmentTwoPass(m, *next_in, block_size, is_last, 1690 *next_in += block_size; 1722 BrotliEncoderState* s, size_t* available_in, const uint8_t** next_in, 1766 memcpy(*next_out, *next_in, copy); 1767 *next_in += copy; 1776 memcpy(s->next_out_, *next_in, cop 1597 BrotliEncoderCompressStreamFast(BrotliEncoderState * s,BrotliEncoderOperation op,size_t * available_in,const uint8_t ** next_in,size_t * available_out,uint8_t ** next_out,size_t * total_out) argument 1721 ProcessMetadata(BrotliEncoderState * s,size_t * available_in,const uint8_t ** next_in,size_t * available_out,uint8_t ** next_out,size_t * total_out) argument 1804 BrotliEncoderCompressStream(BrotliEncoderState * s,BrotliEncoderOperation op,size_t * available_in,const uint8_t ** next_in,size_t * available_out,uint8_t ** next_out,size_t * total_out) argument [all...] |
| /xsrc/external/mit/brotli/dist/c/tools/ |
| H A D | brotli.c | 126 const uint8_t* next_in; member in struct:__anon23d34ec30208 804 context->next_in = NULL; 821 context->next_in = context->input; 913 &context->next_in, &context->available_out, &context->next_out, 0); 954 &context->available_in, &context->next_in,
|
| /xsrc/external/mit/MesaLib.old/dist/src/intel/tools/ |
| H A D | error2aub.c | 66 zstream.next_in = (unsigned char *)*ptr;
|
| H A D | aubinator_error_decode.c | 306 zstream.next_in = (unsigned char *)*ptr;
|
| /xsrc/external/mit/MesaLib/dist/src/intel/tools/ |
| H A D | error2aub.c | 53 zstream.next_in = (unsigned char *)*ptr;
|
| H A D | aubinator_error_decode.c | 303 zstream.next_in = (unsigned char *)*ptr;
|
| /xsrc/external/mit/MesaLib.old/dist/src/util/ |
| H A D | disk_cache.c | 750 strm.next_in = (uint8_t *) in_data; 1060 strm.next_in = in_data;
|
| /xsrc/external/mit/MesaLib/dist/src/broadcom/cle/ |
| H A D | v3d_decoder.c | 620 zstream.next_in = (unsigned char *)compressed_data;
|
| /xsrc/external/mit/MesaLib.old/dist/src/broadcom/cle/ |
| H A D | v3d_decoder.c | 609 zstream.next_in = (unsigned char *)compressed_data;
|