Searched defs:next_in (Results 1 - 23 of 23) sorted by path

/external/brotli/dec/
H A Dbit_reader.h47 const uint8_t* next_in; /* the byte we're reading from */ member in struct:__anon745
54 const uint8_t* next_in; member in struct:__anon746
71 to->next_in = from->next_in;
79 to->next_in = from->next_in;
168 br->val_ |= BrotliLoad64LE(br->next_in) << 8;
170 br->next_in += 7;
176 br->val_ |= BrotliLoad64LE(br->next_in) << 16;
178 br->next_in
[all...]
H A Ddecode.c1871 const uint8_t* next_in = encoded_buffer; local
1876 &s, &available_in, &next_in, &available_out, &next_out, &total_out);
1898 BrotliDecoderState* s, size_t* available_in, const uint8_t** next_in,
1909 br->next_in = *next_in;
1915 br->next_in = &s->buffer.u8[0];
1932 br->next_in = *next_in;
1938 s->buffer.u8[s->buffer_length] = **next_in;
1941 (*next_in)
1897 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...]
/external/brotli/enc/
H A Dencode.c1407 const uint8_t* next_in = input_buffer; local
1417 &available_in, &next_in, &available_out, &next_out, &total_out);
1495 const uint8_t** next_in, size_t* available_out, uint8_t** next_out,
1568 BrotliCompressFragmentFast(m, *next_in, block_size, is_last, table,
1573 BrotliCompressFragmentTwoPass(m, *next_in, block_size, is_last,
1578 *next_in += block_size;
1609 BrotliEncoderState* s, size_t* available_in, const uint8_t** next_in,
1653 memcpy(*next_out, *next_in, copy);
1654 *next_in += copy;
1663 memcpy(s->next_out_, *next_in, cop
1493 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
1608 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
1691 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...]
/external/brotli/fuzz/
H A Ddecode_fuzzer.cc15 const uint8_t* next_in = data; local
40 state, &avail_in, &next_in, &avail_out, &next_out, &total_out);
/external/brotli/python/
H A D_brotli.cc96 const uint8_t* next_in = input; local
102 &available_in, &next_in,
/external/brotli/tools/
H A Dbro.c321 const uint8_t* next_in; local
349 next_in = input;
364 s, &available_in, &next_in, &available_out, &next_out, 0);
392 const uint8_t* next_in = NULL; local
415 next_in = input;
422 &available_in, &next_in, &available_out, &next_out, NULL)) {
/external/bzip2/
H A Dbzlib.h50 char *next_in; member in struct:__anon772
/external/fio/
H A Dserver.c1697 static int __deflate_pdu_buffer(void *next_in, unsigned int next_sz, void **out_pdu, argument
1703 stream->next_in = next_in;
1786 stream->next_in = (void *) cur_log->log;
/external/freetype/src/gzip/
H A Dzlib.h69 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...]
/external/pdfium/core/fxcodec/lbmp/
H A Dfx_bmp.h107 uint8_t* next_in; member in struct:tag_bmp_decompress_struct
/external/pdfium/core/fxcodec/lgif/
H A Dfx_gif.h149 uint8_t* next_in; member in class:CGifLZWDecoder
230 uint8_t* next_in; member in struct:tag_gif_decompress_struct
/external/pdfium/third_party/zlib_v128/
H A Dzlib.h155 z_const Bytef *next_in; /* next input byte */ member in struct:z_stream_s
156 uInt avail_in; /* number of bytes available at next_in */
201 The application must update next_in and avail_in when avail_in has dropped
325 - Compress more input starting at next_in and update next_in and avail_in
327 enough room in the output buffer), next_in and avail_in are updated and
415 if next_in or next_out was Z_NULL), Z_BUF_ERROR if no progress is possible
440 next_in, avail_in, zalloc, zfree and opaque must be initialized before by
441 the caller. If next_in is not Z_NULL and avail_in is large enough (the
454 will be done by inflate(). (So next_in an
[all...]
/external/python/cpython2/Modules/zlib/
H A Dzlib.h86 z_const Bytef *next_in; /* next input byte */ member in struct:z_stream_s
87 uInt avail_in; /* number of bytes available at next_in */
132 The application must update next_in and avail_in when avail_in has dropped
256 - Compress more input starting at next_in and update next_in and avail_in
258 enough room in the output buffer), next_in and avail_in are updated and
346 if next_in or next_out was Z_NULL), Z_BUF_ERROR if no progress is possible
371 next_in, avail_in, zalloc, zfree and opaque must be initialized before by
372 the caller. If next_in is not Z_NULL and avail_in is large enough (the
385 will be done by inflate(). (So next_in an
[all...]
/external/syslinux/com32/include/
H A Dzlib.h86 Bytef *next_in; /* next input byte */ member in struct:z_stream_s
87 uInt avail_in; /* number of bytes available at next_in */
132 The application must update next_in and avail_in when avail_in has dropped
256 - Compress more input starting at next_in and update next_in and avail_in
258 enough room in the output buffer), next_in and avail_in are updated and
345 if next_in or next_out was Z_NULL), Z_BUF_ERROR if no progress is possible
370 next_in, avail_in, zalloc, zfree and opaque must be initialized before by
371 the caller. If next_in is not Z_NULL and avail_in is large enough (the
384 will be done by inflate(). (So next_in an
[all...]
/external/syslinux/gpxe/src/crypto/
H A Dsha1extra.c102 u8 *next_in = in; /* changed to `last' after first round */ local
115 hmac_update ( &sha1_algorithm, sha1_ctx, next_in, next_size );
122 next_in = last;
/external/valgrind/exp-sgcheck/tests/
H A Dhackedbz2.c188 char *next_in; member in struct:__anon24923
1417 (*((UChar*)(s->strm->next_in)))); \
1419 s->strm->next_in++; \
4677 ADD_CHAR_TO_BLOCK ( s, (UInt32)(*((UChar*)(s->strm->next_in))) );
4678 s->strm->next_in++;
4695 ADD_CHAR_TO_BLOCK ( s, (UInt32)(*((UChar*)(s->strm->next_in))) );
4696 s->strm->next_in++;
5344 bzf->strm.next_in = buf;
5494 bzf->strm.next_in = bzf->buf;
5555 bzf->strm.next_in
[all...]
/external/valgrind/memcheck/tests/
H A Dorigin5-bz2.c181 char *next_in; member in struct:__anon25221
1408 (*((UChar*)(s->strm->next_in)))); \
1410 s->strm->next_in++; \
4668 ADD_CHAR_TO_BLOCK ( s, (UInt32)(*((UChar*)(s->strm->next_in))) );
4669 s->strm->next_in++;
4686 ADD_CHAR_TO_BLOCK ( s, (UInt32)(*((UChar*)(s->strm->next_in))) );
4687 s->strm->next_in++;
5335 bzf->strm.next_in = buf;
5485 bzf->strm.next_in = bzf->buf;
5546 bzf->strm.next_in
[all...]
H A Dvarinfo6.c219 char *next_in; member in struct:__anon25237
1446 (*((UChar*)(s->strm->next_in)))); \
1448 s->strm->next_in++; \
4706 ADD_CHAR_TO_BLOCK ( s, (UInt32)(*((UChar*)(s->strm->next_in))) );
4707 s->strm->next_in++;
4724 ADD_CHAR_TO_BLOCK ( s, (UInt32)(*((UChar*)(s->strm->next_in))) );
4725 s->strm->next_in++;
5373 bzf->strm.next_in = buf;
5523 bzf->strm.next_in = bzf->buf;
5584 bzf->strm.next_in
[all...]
/external/valgrind/perf/
H A Dbz2.c181 char *next_in; member in struct:__anon25431
1406 (*((UChar*)(s->strm->next_in)))); \
1408 s->strm->next_in++; \
4666 ADD_CHAR_TO_BLOCK ( s, (UInt32)(*((UChar*)(s->strm->next_in))) );
4667 s->strm->next_in++;
4684 ADD_CHAR_TO_BLOCK ( s, (UInt32)(*((UChar*)(s->strm->next_in))) );
4685 s->strm->next_in++;
5333 bzf->strm.next_in = buf;
5483 bzf->strm.next_in = bzf->buf;
5544 bzf->strm.next_in
[all...]
H A Dtest_input_for_tinycc.c921 char *next_in; member in struct:__anon25444
1519 case 10: s->state = 10; while (((Bool)1)) { if (s->bsLive >= 8) { UInt32 v; v = (s->bsBuff >> (s->bsLive-8)) & ((1 << 8)-1); s->bsLive -= 8; uc = v; break; } if (s->strm->avail_in == 0) { retVal = 0; goto save_state_and_return; };; s->bsBuff = (s->bsBuff << 8) | ((UInt32) (*((UChar*)(s->strm->next_in)))); s->bsLive += 8; s->strm->next_in++; s->strm->avail_in--; s->strm->total_in_lo32++; if (s->strm->total_in_lo32 == 0) s->strm->total_in_hi32++; };
1522 case 11: s->state = 11; while (((Bool)1)) { if (s->bsLive >= 8) { UInt32 v; v = (s->bsBuff >> (s->bsLive-8)) & ((1 << 8)-1); s->bsLive -= 8; uc = v; break; } if (s->strm->avail_in == 0) { retVal = 0; goto save_state_and_return; };; s->bsBuff = (s->bsBuff << 8) | ((UInt32) (*((UChar*)(s->strm->next_in)))); s->bsLive += 8; s->strm->next_in++; s->strm->avail_in--; s->strm->total_in_lo32++; if (s->strm->total_in_lo32 == 0) s->strm->total_in_hi32++; };
1525 case 12: s->state = 12; while (((Bool)1)) { if (s->bsLive >= 8) { UInt32 v; v = (s->bsBuff >> (s->bsLive-8)) & ((1 << 8)-1); s->bsLive -= 8; uc = v; break; } if (s->strm->avail_in == 0) { retVal = 0; goto save_state_and_return; };; s->bsBuff = (s->bsBuff << 8) | ((UInt32) (*((UChar*)(s->strm->next_in)))); s->bsLive += 8; s->strm->next_in++; s->strm->avail_in--; s->strm->total_in_lo32++; if (s->strm->total_in_lo32 == 0) s->strm->total_in_hi32++; }
1528 case 13: s->state = 13; while (((Bool)1)) { if (s->bsLive >= 8) { UInt32 v; v = (s->bsBuff >> (s->bsLive-8)) & ((1 << 8)-1); s->bsLive -= 8; s->blockSize100k = v; break; } if (s->strm->avail_in == 0) { retVal = 0; goto save_state_and_return; };; s->bsBuff = (s->bsBuff << 8) | ((UInt32) (*((UChar*)(s->strm->next_in)))); s->bsLive += 8; s->strm->next_in++; s->strm->avail_in--; s->strm->total_in_lo32++; if (s->strm->total_in_lo32 == 0) s->strm->total_in_hi32++; }
1544 case 14: s->state = 14; while (((Bool)1)) { if (s->bsLive >= 8) { UInt32 v; v = (s->bsBuff >> (s->bsLive-8)) & ((1 << 8)-1); s->bsLive -= 8; uc = v; break; } if (s->strm->avail_in == 0) { retVal = 0; goto save_state_and_return; };; s->bsBuff = (s->bsBuff << 8) | ((UInt32) (*((UChar*)(s->strm->next_in))));
[all...]
/external/zlib/src/contrib/dotzlib/DotZLib/
H A DDotZLib.cs32 public IntPtr next_in; field in struct:DotZLib.ZStream
/external/zlib/src/
H A Dzlib.h86 z_const Bytef *next_in; /* next input byte */ member in struct:z_stream_s
87 uInt avail_in; /* number of bytes available at next_in */
132 The application must update next_in and avail_in when avail_in has dropped
256 - Compress more input starting at next_in and update next_in and avail_in
258 enough room in the output buffer), next_in and avail_in are updated and
346 if next_in or next_out was Z_NULL), Z_BUF_ERROR if no progress is possible
371 next_in, avail_in, zalloc, zfree and opaque must be initialized before by
372 the caller. If next_in is not Z_NULL and avail_in is large enough (the
385 will be done by inflate(). (So next_in an
[all...]
/external/zlib/
H A Dzlib.h86 z_const Bytef *next_in; /* next input byte */ member in struct:z_stream_s
87 uInt avail_in; /* number of bytes available at next_in */
132 The application must update next_in and avail_in when avail_in has dropped
256 - Compress more input starting at next_in and update next_in and avail_in
258 enough room in the output buffer), next_in and avail_in are updated and
346 if next_in or next_out was Z_NULL), Z_BUF_ERROR if no progress is possible
371 next_in, avail_in, zalloc, zfree and opaque must be initialized before by
372 the caller. If next_in is not Z_NULL and avail_in is large enough (the
385 will be done by inflate(). (So next_in an
[all...]

Completed in 642 milliseconds