Home
last modified time | relevance | path

Searched refs:next_in (Results 1 – 25 of 305) sorted by relevance

12345678910>>...13

/third_party/skia/third_party/externals/brotli/c/dec/
Dbit_reader.h39 const uint8_t* next_in; /* the byte we're reading from */ member
46 const uint8_t* next_in; member
70 to->next_in = from->next_in; in BrotliBitReaderSaveState()
78 to->next_in = from->next_in; in BrotliBitReaderRestoreState()
114 br->val_ |= BROTLI_UNALIGNED_LOAD64LE(br->next_in) << 8; in BrotliFillBitWindow()
116 br->next_in += 7; in BrotliFillBitWindow()
123 br->val_ |= BROTLI_UNALIGNED_LOAD64LE(br->next_in) << 16; in BrotliFillBitWindow()
125 br->next_in += 6; in BrotliFillBitWindow()
131 br->val_ |= ((uint64_t)BROTLI_UNALIGNED_LOAD32LE(br->next_in)) << 32; in BrotliFillBitWindow()
133 br->next_in += BROTLI_SHORT_FILL_BIT_WINDOW_READ; in BrotliFillBitWindow()
[all …]
/third_party/node/deps/brotli/c/dec/
Dbit_reader.h39 const uint8_t* next_in; /* the byte we're reading from */ member
46 const uint8_t* next_in; member
70 to->next_in = from->next_in; in BrotliBitReaderSaveState()
78 to->next_in = from->next_in; in BrotliBitReaderRestoreState()
114 br->val_ |= BROTLI_UNALIGNED_LOAD64LE(br->next_in) << 8; in BrotliFillBitWindow()
116 br->next_in += 7; in BrotliFillBitWindow()
123 br->val_ |= BROTLI_UNALIGNED_LOAD64LE(br->next_in) << 16; in BrotliFillBitWindow()
125 br->next_in += 6; in BrotliFillBitWindow()
131 br->val_ |= ((uint64_t)BROTLI_UNALIGNED_LOAD32LE(br->next_in)) << 32; in BrotliFillBitWindow()
133 br->next_in += BROTLI_SHORT_FILL_BIT_WINDOW_READ; in BrotliFillBitWindow()
[all …]
/third_party/boost/libs/beast/test/beast/zlib/
Ddeflate_stream.cpp38 virtual void const* next_in() const noexcept = 0;
39 virtual void next_in(const void*) noexcept = 0;
77 virtual void const* next_in() const noexcept override { return zs.next_in; } in next_in() function in boost::beast::zlib::deflate_stream_test::ZlibCompressor
78 …virtual void next_in(const void* ptr) noexcept override { zs.next_in = const_cast<Bytef*>(static_c… in next_in() function in boost::beast::zlib::deflate_stream_test::ZlibCompressor
91 if(zs.next_in == nullptr && zs.avail_in != 0) in write()
140 virtual void const* next_in() const noexcept override { return zp.next_in; } in next_in() function in boost::beast::zlib::deflate_stream_test::BeastCompressor
141 virtual void next_in(const void* ptr) noexcept override { zp.next_in = ptr; } in next_in() function in boost::beast::zlib::deflate_stream_test::BeastCompressor
221 zs.next_in = (Bytef*)in.data(); in compress()
226 zs.next_in = (Bytef*)in.data(); in compress()
251 zs.next_in = (Bytef*)in.data(); in decompress()
[all …]
Dinflate_stream.cpp32 virtual void const* next_in() const noexcept = 0;
33 virtual void next_in(const void*) noexcept = 0;
77 virtual void const* next_in() const noexcept override { return zs.next_in; } in next_in() function in boost::beast::zlib::inflate_stream_test::ZlibDecompressor
78 …virtual void next_in(const void* ptr) noexcept override { zs.next_in = const_cast<Bytef*>(static_c… in next_in() function in boost::beast::zlib::inflate_stream_test::ZlibDecompressor
132 virtual void const* next_in() const noexcept override { return zp.next_in; } in next_in() function in boost::beast::zlib::inflate_stream_test::BeastCompressor
133 virtual void next_in(const void* ptr) noexcept override { zp.next_in = ptr; } in next_in() function in boost::beast::zlib::inflate_stream_test::BeastCompressor
208 zs.next_in = (Bytef*)in.data(); in compress()
213 zs.next_in = (Bytef*)in.data(); in compress()
260 zs.next_in = in.data(); in operator ()()
526 zs.next_in = &*in.begin(); in check()
[all …]
/third_party/libxml2/
Dxzlib.c270 strm->next_in = state->in; in xz_avail()
281 state->strm.next_in = state->zstrm.next_in; in xz_avail_zstrm()
284 state->zstrm.next_in = (Bytef *) state->strm.next_in; in xz_avail_zstrm()
357 (strm->avail_in--, *(strm->next_in)++)))
361 (strm->avail_in--, *(strm->next_in)++)))
410 state->strm.next_in = NULL; in xz_head()
424 state->zstrm.next_in = Z_NULL; in xz_head()
454 if (strm->next_in[0] == 31) { in xz_head()
456 strm->next_in++; in xz_head()
459 if (strm->avail_in && strm->next_in[0] == 139) { in xz_head()
[all …]
/third_party/skia/third_party/externals/zlib/contrib/tests/
Dutils_unittest.cc113 comp_strm.next_in = src.data(); in TEST()
125 decomp_strm.next_in = comp_buf; in TEST()
192 stream.next_in = src.data(); in TEST()
202 stream.next_in = compressed.data(); in TEST()
261 stream.next_in = src.data(); in TEST()
271 stream.next_in = compressed.data(); in TEST()
393 stream.next_in = (uint8_t*)&checkMatchCrashData[i]; in TEST()
399 stream.next_in = nullptr; in TEST()
410 stream.next_in = compressed; in TEST()
511 stream.next_in = &b; in TEST()
[all …]
Dinfcover.cc317 strm.next_in = Z_NULL; in inf()
338 strm.next_in = in; in inf()
379 strm.next_in = Z_NULL; in cover_support()
397 strm.next_in = Z_NULL; in cover_support()
403 strm.next_in = Z_NULL; in cover_support()
437 strm.next_in = Z_NULL; in cover_wrap()
440 strm.next_in = (Bytef *)"\x63"; in cover_wrap()
453 strm.next_in = (Bytef *)"\x80"; in cover_wrap()
457 strm.next_in = (Bytef *)"\0\0\xff\xff"; in cover_wrap()
509 strm.next_in = (Bytef *)"\x03"; in cover_back()
[all …]
/third_party/boost/libs/beast/test/extern/zlib-1.2.11/examples/
Dgzjoin.c261 strm->next_in = in->next; in zpull()
304 strm.next_in = Z_NULL; in gzcopy()
320 fwrite(start, 1, strm.next_in - start, out); in gzcopy()
353 last = strm.next_in[-1] & pos; in gzcopy()
355 in->buf[strm.next_in - in->buf - 1] &= ~pos; in gzcopy()
361 fwrite(start, 1, strm.next_in - start, out); in gzcopy()
366 last = strm.next_in[0] & 1; in gzcopy()
368 in->buf[strm.next_in - in->buf] &= ~1; in gzcopy()
375 in->next = in->buf + (strm.next_in - in->buf); in gzcopy()
/third_party/zlib/examples/
Dgzjoin.c261 strm->next_in = in->next; in zpull()
304 strm.next_in = Z_NULL; in gzcopy()
320 fwrite(start, 1, strm.next_in - start, out); in gzcopy()
353 last = strm.next_in[-1] & pos; in gzcopy()
355 in->buf[strm.next_in - in->buf - 1] &= ~pos; in gzcopy()
361 fwrite(start, 1, strm.next_in - start, out); in gzcopy()
366 last = strm.next_in[0] & 1; in gzcopy()
368 in->buf[strm.next_in - in->buf] &= ~1; in gzcopy()
375 in->next = in->buf + (strm.next_in - in->buf); in gzcopy()
Dgznorm.c93 strm.next_in = Z_NULL; in gzip_normalize()
132 strm.next_in = put = dat; in gzip_normalize()
183 put = strm.next_in; in gzip_normalize()
252 if (put == strm.next_in) in gzip_normalize()
286 if (put == strm.next_in) in gzip_normalize()
309 unsigned char *end = strm.next_in - mix; in gzip_normalize()
411 } while (put < strm.next_in); in gzip_normalize()
/third_party/boost/tools/boost_install/test/iostreams/zlib-1.2.11/examples/
Dgzjoin.c261 strm->next_in = in->next; in zpull()
304 strm.next_in = Z_NULL; in gzcopy()
320 fwrite(start, 1, strm.next_in - start, out); in gzcopy()
353 last = strm.next_in[-1] & pos; in gzcopy()
355 in->buf[strm.next_in - in->buf - 1] &= ~pos; in gzcopy()
361 fwrite(start, 1, strm.next_in - start, out); in gzcopy()
366 last = strm.next_in[0] & 1; in gzcopy()
368 in->buf[strm.next_in - in->buf] &= ~1; in gzcopy()
375 in->next = in->buf + (strm.next_in - in->buf); in gzcopy()
/third_party/python/Modules/
D_bz2module.c183 c->bzs.next_in = data; in compress()
500 if (bzs->next_in != NULL) { in decompress()
505 - (bzs->next_in + d->bzs_avail_in_real); in decompress()
513 size_t offset = bzs->next_in - d->input_buffer; in decompress()
527 bzs->next_in = d->input_buffer + offset; in decompress()
530 memmove(d->input_buffer, bzs->next_in, in decompress()
532 bzs->next_in = d->input_buffer; in decompress()
534 memcpy((void*)(bzs->next_in + d->bzs_avail_in_real), data, len); in decompress()
539 bzs->next_in = data; in decompress()
546 bzs->next_in = NULL; in decompress()
[all …]
/third_party/curl/lib/
Dcontent_encoding.c124 Curl_safefree(z->next_in); in exit_zlib()
147 z->next_in += len; in process_trailer()
166 Bytef *orig_in = z->next_in; in inflate_stream()
234 z->next_in = orig_in; in inflate_stream()
289 z->next_in = (Bytef *) buf; in deflate_unencode_write()
444 z->next_in = (Bytef *) buf; in gzip_unencode_write()
475 z->next_in = (Bytef *) buf + hlen; in gzip_unencode_write()
489 z->next_in = malloc(z->avail_in); in gzip_unencode_write()
490 if(!z->next_in) { in gzip_unencode_write()
493 memcpy(z->next_in, buf, z->avail_in); in gzip_unencode_write()
[all …]
/third_party/boost/libs/beast/test/extern/zlib-1.2.11/test/
Dinfcover.c295 strm.next_in = Z_NULL; in inf()
316 strm.next_in = in; in inf()
357 strm.next_in = Z_NULL; in cover_support()
375 strm.next_in = Z_NULL; in cover_support()
381 strm.next_in = Z_NULL; in cover_support()
415 strm.next_in = Z_NULL; in cover_wrap()
418 strm.next_in = (void *)"\x63"; in cover_wrap()
431 strm.next_in = (void *)"\x80"; in cover_wrap()
435 strm.next_in = (void *)"\0\0\xff\xff"; in cover_wrap()
487 strm.next_in = (void *)"\x03"; in cover_back()
[all …]
/third_party/boost/tools/boost_install/test/iostreams/zlib-1.2.11/test/
Dinfcover.c295 strm.next_in = Z_NULL; in inf()
316 strm.next_in = in; in inf()
357 strm.next_in = Z_NULL; in cover_support()
375 strm.next_in = Z_NULL; in cover_support()
381 strm.next_in = Z_NULL; in cover_support()
415 strm.next_in = Z_NULL; in cover_wrap()
418 strm.next_in = (void *)"\x63"; in cover_wrap()
431 strm.next_in = (void *)"\x80"; in cover_wrap()
435 strm.next_in = (void *)"\0\0\xff\xff"; in cover_wrap()
487 strm.next_in = (void *)"\x03"; in cover_back()
[all …]
/third_party/zlib/test/
Dinfcover.c295 strm.next_in = Z_NULL; in inf()
316 strm.next_in = in; in inf()
357 strm.next_in = Z_NULL; in cover_support()
375 strm.next_in = Z_NULL; in cover_support()
381 strm.next_in = Z_NULL; in cover_support()
415 strm.next_in = Z_NULL; in cover_wrap()
418 strm.next_in = (void *)"\x63"; in cover_wrap()
431 strm.next_in = (void *)"\x80"; in cover_wrap()
435 strm.next_in = (void *)"\0\0\xff\xff"; in cover_wrap()
487 strm.next_in = (void *)"\x03"; in cover_back()
[all …]
/third_party/zlib/
Dgzwrite.c52 strm->next_in = NULL;
89 writ = write(state->fd, strm->next_in, put);
95 strm->next_in += writ;
176 strm->next_in = state->in;
216 state->strm.next_in = state->in;
217 have = (unsigned)((state->strm.next_in + state->strm.avail_in) -
237 state->strm.next_in = (z_const Bytef *)buf;
343 strm->next_in = state->in;
344 have = (unsigned)((strm->next_in + strm->avail_in) - state->in);
424 strm->next_in = state->in; in gzvprintf()
[all …]
/third_party/node/deps/zlib/
Dgzwrite.c52 strm->next_in = NULL;
89 writ = write(state->fd, strm->next_in, put);
95 strm->next_in += writ;
167 strm->next_in = state->in;
207 state->strm.next_in = state->in;
208 have = (unsigned)((state->strm.next_in + state->strm.avail_in) -
228 state->strm.next_in = (z_const Bytef *)buf;
334 strm->next_in = state->in;
335 have = (unsigned)((strm->next_in + strm->avail_in) - state->in);
412 strm->next_in = state->in; in gzvprintf()
[all …]
/third_party/boost/tools/boost_install/test/iostreams/zlib-1.2.11/
Dgzwrite.c52 strm->next_in = NULL;
89 writ = write(state->fd, strm->next_in, put);
95 strm->next_in += writ;
167 strm->next_in = state->in;
207 state->strm.next_in = state->in;
208 have = (unsigned)((state->strm.next_in + state->strm.avail_in) -
228 state->strm.next_in = (z_const Bytef *)buf;
334 strm->next_in = state->in;
335 have = (unsigned)((strm->next_in + strm->avail_in) - state->in);
412 strm->next_in = state->in; in gzvprintf()
[all …]
/third_party/skia/third_party/externals/zlib/
Dgzwrite.c52 strm->next_in = NULL;
89 writ = write(state->fd, strm->next_in, put);
95 strm->next_in += writ;
167 strm->next_in = state->in;
207 state->strm.next_in = state->in;
208 have = (unsigned)((state->strm.next_in + state->strm.avail_in) -
228 state->strm.next_in = (z_const Bytef *)buf;
334 strm->next_in = state->in;
335 have = (unsigned)((strm->next_in + strm->avail_in) - state->in);
412 strm->next_in = state->in; in gzvprintf()
[all …]
/third_party/flutter/skia/third_party/externals/zlib/
Dgzwrite.c52 strm->next_in = NULL;
89 writ = write(state->fd, strm->next_in, put);
95 strm->next_in += writ;
167 strm->next_in = state->in;
207 state->strm.next_in = state->in;
208 have = (unsigned)((state->strm.next_in + state->strm.avail_in) -
228 state->strm.next_in = (z_const Bytef *)buf;
334 strm->next_in = state->in;
335 have = (unsigned)((strm->next_in + strm->avail_in) - state->in);
412 strm->next_in = state->in; in gzvprintf()
[all …]
/third_party/boost/libs/beast/test/extern/zlib-1.2.11/
Dgzwrite.c52 strm->next_in = NULL;
89 writ = write(state->fd, strm->next_in, put);
95 strm->next_in += writ;
167 strm->next_in = state->in;
207 state->strm.next_in = state->in;
208 have = (unsigned)((state->strm.next_in + state->strm.avail_in) -
228 state->strm.next_in = (z_const Bytef *)buf;
334 strm->next_in = state->in;
335 have = (unsigned)((strm->next_in + strm->avail_in) - state->in);
412 strm->next_in = state->in; in gzvprintf()
[all …]
/third_party/boost/libs/iostreams/src/
Dzlib.cpp104 s->next_in = reinterpret_cast<zlib::byte*>(const_cast<char*>(src_begin)); in before()
113 const char* next_in = reinterpret_cast<const char*>(s->next_in); in after() local
122 static_cast<zlib::uint>(next_in - src_begin) : in after()
128 src_begin = next_in; in after()
/third_party/zlib/contrib/pascal/
Dexample.pas198 c_stream.next_in := hello;
240 d_stream.next_in := compr;
290 c_stream.next_in := uncompr;
299 c_stream.next_in := compr;
306 c_stream.next_in := uncompr;
335 d_stream.next_in := compr;
382 c_stream.next_in := hello;
418 d_stream.next_in := compr;
468 c_stream.next_in := hello;
495 d_stream.next_in := compr;
/third_party/boost/tools/boost_install/test/iostreams/zlib-1.2.11/contrib/pascal/
Dexample.pas198 c_stream.next_in := hello;
240 d_stream.next_in := compr;
290 c_stream.next_in := uncompr;
299 c_stream.next_in := compr;
306 c_stream.next_in := uncompr;
335 d_stream.next_in := compr;
382 c_stream.next_in := hello;
418 d_stream.next_in := compr;
468 c_stream.next_in := hello;
495 d_stream.next_in := compr;

12345678910>>...13