Searched refs:next_in (Results 1 – 25 of 29) sorted by relevance
12
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/zlib/ |
D | example.c | 184 c_stream.next_in = (Bytef*)hello; 220 d_stream.next_in = compr; 268 c_stream.next_in = uncompr; 279 c_stream.next_in = compr; 286 c_stream.next_in = uncompr; 316 d_stream.next_in = compr; 359 c_stream.next_in = (Bytef*)hello; 395 d_stream.next_in = compr; 448 c_stream.next_in = (Bytef*)hello; 476 d_stream.next_in = compr;
|
D | gzio.c | 114 s->stream.next_in = s->inbuf = Z_NULL; 165 s->stream.next_in = s->inbuf = (Byte*)ALLOC(Z_BUFSIZE); 273 s->stream.next_in = s->inbuf; 276 return *(s->stream.next_in)++; 301 if (len) s->inbuf[0] = s->stream.next_in[0]; 306 s->stream.next_in = s->inbuf; 314 if (s->stream.next_in[0] != gz_magic[0] || 315 s->stream.next_in[1] != gz_magic[1]) { 320 s->stream.next_in += 2; 432 zmemcpy(s->stream.next_out, s->stream.next_in, n); [all …]
|
D | uncompr.c | 35 stream.next_in = (Bytef*)source;
|
D | compress.c | 32 stream.next_in = (Bytef*)source;
|
D | infback.c | 123 next = strm->next_in; \ 134 strm->next_in = next; \ 273 next = strm->next_in; 609 strm->next_in = next;
|
D | inffast.c | 99 in = strm->next_in - OFF; 294 strm->next_in = in + OFF;
|
D | inflate.c | 407 next = strm->next_in; \ 418 strm->next_in = next; \ 578 (strm->next_in == Z_NULL && strm->avail_in != 0)) 1291 len = syncsearch(&(state->have), strm->next_in, strm->avail_in); 1293 strm->next_in += len;
|
D | deflate.c | 566 (strm->next_in == Z_NULL && strm->avail_in != 0) || 969 strm->adler = adler32(strm->adler, strm->next_in, len); 973 strm->adler = crc32(strm->adler, strm->next_in, len); 976 zmemcpy(buf, strm->next_in, len); 977 strm->next_in += len;
|
D | zlib.h | 83 Bytef *next_in; /* next input byte */ member
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/zlib/ |
D | example.c | 215 c_stream.next_in = (z_const unsigned char *)hello; 251 d_stream.next_in = compr; 299 c_stream.next_in = uncompr; 310 c_stream.next_in = compr; 317 c_stream.next_in = uncompr; 347 d_stream.next_in = compr; 390 c_stream.next_in = (z_const unsigned char *)hello; 426 d_stream.next_in = compr; 479 c_stream.next_in = (z_const unsigned char *)hello; 507 d_stream.next_in = compr;
|
D | gzwrite.c | 84 got = write(state->fd, strm->next_in, strm->avail_in); 155 strm->next_in = state->in; 213 strm->next_in = state->in; 214 have = (unsigned)((strm->next_in + strm->avail_in) - state->in); 234 strm->next_in = (z_const Bytef *)buf; 275 strm->next_in = state->in; 276 have = (unsigned)((strm->next_in + strm->avail_in) - state->in); 367 strm->next_in = state->in; in gzvprintf() 457 strm->next_in = state->in;
|
D | gzread.c | 62 unsigned const char *q = strm->next_in; 72 strm->next_in = state->in; 111 state->strm.next_in = Z_NULL; 137 strm->next_in[0] == 31 && strm->next_in[1] == 139) { 158 memcpy(state->x.next, strm->next_in, strm->avail_in);
|
D | uncompr.c | 33 stream.next_in = (z_const Bytef *)source;
|
D | minigzip.c | 214 gz->strm.next_in = 0; 247 strm->next_in = (void *)buf; 281 strm->next_in = in; 307 strm->next_in = Z_NULL;
|
D | compress.c | 32 stream.next_in = (z_const Bytef *)source;
|
D | infback.c | 132 next = strm->next_in; \ 143 strm->next_in = next; \ 282 next = strm->next_in; 626 strm->next_in = next;
|
D | inffast.c | 99 in = strm->next_in - OFF; 316 strm->next_in = in + OFF;
|
D | inflate.c | 463 next = strm->next_in; \ 474 strm->next_in = next; \ 629 (strm->next_in == Z_NULL && strm->avail_in != 0)) 1406 len = syncsearch(&(state->have), strm->next_in, strm->avail_in); 1408 strm->next_in += len;
|
D | deflate.c | 360 next = strm->next_in; 362 strm->next_in = (z_const Bytef *)dictionary; 385 strm->next_in = next; 679 (strm->next_in == Z_NULL && strm->avail_in != 0) || 1088 zmemcpy(buf, strm->next_in, len); 1097 strm->next_in += len;
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/ |
D | zlibmodule.c | 164 zst.next_in = (Byte *)input; in PyZlib_compress() 240 zst.next_in = (Byte *)input; in PyZlib_decompress() 324 self->zst.next_in = NULL; in PyZlib_compressobj() 360 self->zst.next_in = NULL; in PyZlib_decompressobj() 430 self->zst.next_in = input; in PyZlib_objcompress() 493 self->zst.next_in, self->zst.avail_in); in save_unconsumed_input() 504 (char *)self->zst.next_in, self->zst.avail_in); in save_unconsumed_input() 552 self->zst.next_in = input; in PyZlib_objdecompress() 834 self->zst.next_in = (Byte *)PyString_AS_STRING(self->unconsumed_tail); in PyZlib_unflush()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/ |
D | zlibmodule.c | 158 zst.next_in = (Byte *)input; in PyZlib_compress() 234 zst.next_in = (Byte *)input; in PyZlib_decompress() 318 self->zst.next_in = NULL; in PyZlib_compressobj() 354 self->zst.next_in = NULL; in PyZlib_decompressobj() 424 self->zst.next_in = input; in PyZlib_objcompress() 503 self->zst.next_in = input; in PyZlib_objdecompress() 542 self->unconsumed_tail = PyString_FromStringAndSize((char *)self->zst.next_in, in PyZlib_objdecompress() 565 (char *)self->zst.next_in, self->zst.avail_in); in PyZlib_objdecompress()
|
D | bz2module.c | 1651 bzs->next_in = data; in BZ2Comp_compress() 1937 bzs->next_in = data; in BZ2Decomp_decompress() 1952 PyString_FromStringAndSize(bzs->next_in, in BZ2Decomp_decompress() 2161 bzs->next_in = data; in bz2_compress() 2245 bzs->next_in = data; in bz2_decompress()
|
/device/linaro/bootloader/edk2/EmbeddedPkg/Library/ZLib/ |
D | ZLib.c | 70 stream.next_in = in; in GzipDecompress()
|
D | inffast.c | 82 in = strm->next_in; 299 strm->next_in = in;
|
D | inflate.c | 480 next = strm->next_in; \ 491 strm->next_in = next; \ 646 (strm->next_in == Z_NULL && strm->avail_in != 0)) 1430 len = syncsearch(&(state->have), strm->next_in, strm->avail_in); 1432 strm->next_in += len;
|
12