| /src/external/gpl3/binutils/dist/gas/ |
| compress-debug.c | 42 static struct z_stream_s strm; local 43 memset (&strm, 0, sizeof (strm)); 44 deflateInit (&strm, Z_DEFAULT_COMPRESSION); 45 return &strm; 71 struct z_stream_s *strm = ctx; local 73 strm->next_in = (Bytef *) (*next_in); 74 strm->avail_in = *avail_in; 75 strm->next_out = (Bytef *) (*next_out); 76 strm->avail_out = *avail_out 117 struct z_stream_s *strm = ctx; local [all...] |
| /src/external/gpl3/binutils.old/dist/gas/ |
| compress-debug.c | 42 static struct z_stream_s strm; local 43 memset (&strm, 0, sizeof (strm)); 44 deflateInit (&strm, Z_DEFAULT_COMPRESSION); 45 return &strm; 71 struct z_stream_s *strm = ctx; local 73 strm->next_in = (Bytef *) (*next_in); 74 strm->avail_in = *avail_in; 75 strm->next_out = (Bytef *) (*next_out); 76 strm->avail_out = *avail_out 117 struct z_stream_s *strm = ctx; local [all...] |
| /src/common/dist/zlib/examples/ |
| zpipe.c | 40 z_stream strm; local 45 strm.zalloc = Z_NULL; 46 strm.zfree = Z_NULL; 47 strm.opaque = Z_NULL; 48 ret = deflateInit(&strm, level); 54 strm.avail_in = fread(in, 1, CHUNK, source); 56 (void)deflateEnd(&strm); 60 strm.next_in = in; 65 strm.avail_out = CHUNK; 66 strm.next_out = out 96 z_stream strm; local [all...] |
| gzjoin.c | 254 local void zpull(z_streamp strm, bin *in) 260 strm->avail_in = in->left; 261 strm->next_in = in->next; 289 z_stream strm; /* zlib inflate stream */ local 300 strm.zalloc = Z_NULL; 301 strm.zfree = Z_NULL; 302 strm.opaque = Z_NULL; 303 strm.avail_in = 0; 304 strm.next_in = Z_NULL; 305 ret = inflateInit2(&strm, -15) [all...] |
| gznorm.c | 60 inflateEnd(&strm); \ 88 z_stream strm; local 89 strm.zalloc = Z_NULL; 90 strm.zfree = Z_NULL; 91 strm.opaque = Z_NULL; 92 strm.avail_in = 0; 93 strm.next_in = Z_NULL; 94 if (inflateInit2(&strm, 15 + 16) != Z_OK) 128 strm.avail_in = fread(dat, 1, CHUNK, in); 129 if (strm.avail_in == 0 [all...] |
| gun.c | 193 of buffered input at next. strm is used for passing error information back 197 file, read error, or write error (a write error indicated by strm->next_in 201 int outfile, z_stream *strm) 230 strm->msg = (char *)"unknown lzw flags set"; 235 strm->msg = (char *)"lzw bits out of range"; 255 strm->msg = (char *)"invalid lzw code"; 282 strm->next_in = outbuf; /* signal write error */ 322 strm->msg = (char *)"invalid lzw code"; 354 strm->next_in = outbuf; /* signal write error */ 371 /* Decompress a gzip file from infile to outfile. strm is assumed to have bee 636 z_stream strm; local [all...] |
| gzappend.c | 255 /* decompress gzip file "name", return strm with a deflate stream ready to 259 local int gzscan(char *name, z_stream *strm, int level) 283 strm->zalloc = Z_NULL; 284 strm->zfree = Z_NULL; 285 strm->opaque = Z_NULL; 286 ret = inflateInit2(strm, -15); 293 strm->avail_in = gz.left; 294 strm->next_in = gz.next; 299 if (strm->avail_in == 0) { 301 strm->avail_in = gz.left 469 z_stream strm; local [all...] |
| zran.c | 134 z_stream strm = {0}; // inflate engine (gets fired up later) local 147 if (strm.avail_in == 0) { 148 strm.avail_in = fread(buf, 1, sizeof(buf), in); 149 totin += strm.avail_in; 150 strm.next_in = buf; 151 if (strm.avail_in < sizeof(buf) && ferror(in)) { 162 mode = strm.avail_in == 0 ? RAW : // empty -- will fail 163 (strm.next_in[0] & 0xf) == 8 ? ZLIB : 164 strm.next_in[0] == 0x1f ? GZIP : 166 ret = inflateInit2(&strm, mode) [all...] |
| /src/external/gpl3/binutils/dist/zlib/examples/ |
| zpipe.c | 40 z_stream strm; local 45 strm.zalloc = Z_NULL; 46 strm.zfree = Z_NULL; 47 strm.opaque = Z_NULL; 48 ret = deflateInit(&strm, level); 54 strm.avail_in = fread(in, 1, CHUNK, source); 56 (void)deflateEnd(&strm); 60 strm.next_in = in; 65 strm.avail_out = CHUNK; 66 strm.next_out = out 96 z_stream strm; local [all...] |
| gzjoin.c | 254 local void zpull(z_streamp strm, bin *in) 260 strm->avail_in = in->left; 261 strm->next_in = in->next; 289 z_stream strm; /* zlib inflate stream */ local 300 strm.zalloc = Z_NULL; 301 strm.zfree = Z_NULL; 302 strm.opaque = Z_NULL; 303 strm.avail_in = 0; 304 strm.next_in = Z_NULL; 305 ret = inflateInit2(&strm, -15) [all...] |
| gznorm.c | 60 inflateEnd(&strm); \ 88 z_stream strm; local 89 strm.zalloc = Z_NULL; 90 strm.zfree = Z_NULL; 91 strm.opaque = Z_NULL; 92 strm.avail_in = 0; 93 strm.next_in = Z_NULL; 94 if (inflateInit2(&strm, 15 + 16) != Z_OK) 128 strm.avail_in = fread(dat, 1, CHUNK, in); 129 if (strm.avail_in == 0 [all...] |
| /src/external/gpl3/binutils.old/dist/zlib/examples/ |
| zpipe.c | 40 z_stream strm; local 45 strm.zalloc = Z_NULL; 46 strm.zfree = Z_NULL; 47 strm.opaque = Z_NULL; 48 ret = deflateInit(&strm, level); 54 strm.avail_in = fread(in, 1, CHUNK, source); 56 (void)deflateEnd(&strm); 60 strm.next_in = in; 65 strm.avail_out = CHUNK; 66 strm.next_out = out 96 z_stream strm; local [all...] |
| gzjoin.c | 254 local void zpull(z_streamp strm, bin *in) 260 strm->avail_in = in->left; 261 strm->next_in = in->next; 289 z_stream strm; /* zlib inflate stream */ local 300 strm.zalloc = Z_NULL; 301 strm.zfree = Z_NULL; 302 strm.opaque = Z_NULL; 303 strm.avail_in = 0; 304 strm.next_in = Z_NULL; 305 ret = inflateInit2(&strm, -15) [all...] |
| gznorm.c | 60 inflateEnd(&strm); \ 88 z_stream strm; local 89 strm.zalloc = Z_NULL; 90 strm.zfree = Z_NULL; 91 strm.opaque = Z_NULL; 92 strm.avail_in = 0; 93 strm.next_in = Z_NULL; 94 if (inflateInit2(&strm, 15 + 16) != Z_OK) 128 strm.avail_in = fread(dat, 1, CHUNK, in); 129 if (strm.avail_in == 0 [all...] |
| zran.c | 142 z_stream strm; local 147 strm.zalloc = Z_NULL; 148 strm.zfree = Z_NULL; 149 strm.opaque = Z_NULL; 150 strm.avail_in = 0; 151 strm.next_in = Z_NULL; 152 ret = inflateInit2(&strm, 47); /* automatic zlib or gzip decoding */ 161 strm.avail_out = 0; 164 strm.avail_in = fread(input, 1, CHUNK, in); 169 if (strm.avail_in == 0) 252 z_stream strm; local [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/Support/ |
| Debug.cpp | 135 circular_raw_ostream strm; member in struct:dbgstream 138 strm(errs(), "*** Debug Log Output ***\n", 149 return thestrm.strm;
|
| /src/common/dist/zlib/ |
| gzwrite.c | 13 z_streamp strm = &(state->strm); local 33 strm->zalloc = Z_NULL; 34 strm->zfree = Z_NULL; 35 strm->opaque = Z_NULL; 36 ret = deflateInit2(strm, state->level, Z_DEFLATED, 44 strm->next_in = NULL; 52 strm->avail_out = state->size; 53 strm->next_out = state->out; 54 state->x.next = strm->next_out 70 z_streamp strm = &(state->strm); local 148 z_streamp strm = &(state->strm); local 293 z_streamp strm; local 366 z_streamp strm; local 452 z_streamp strm; local 561 z_streamp strm; local [all...] |
| gzread.c | 40 If strm->avail_in != 0, then the current data is moved to the beginning of 45 z_streamp strm = &(state->strm); local 50 if (strm->avail_in) { /* copy what's there to the start */ 52 unsigned const char *q = strm->next_in; 53 unsigned n = strm->avail_in; 58 if (gz_load(state, state->in + strm->avail_in, 59 state->size - strm->avail_in, &got) == -1) 61 strm->avail_in += got; 62 strm->next_in = state->in 77 z_streamp strm = &(state->strm); local 159 z_streamp strm = &(state->strm); local 209 z_streamp strm = &(state->strm); local [all...] |
| /src/external/bsd/zstd/dist/zlibWrapper/ |
| gzwrite.c | 24 z_streamp strm = &(state.state->strm); local 44 strm->zalloc = Z_NULL; 45 strm->zfree = Z_NULL; 46 strm->opaque = Z_NULL; 47 ret = deflateInit2(strm, state.state->level, Z_DEFLATED, 55 strm->next_in = NULL; 63 strm->avail_out = state.state->size; 64 strm->next_out = state.state->out; 65 state.state->x.next = strm->next_out 79 z_streamp strm = &(state.state->strm); local 148 z_streamp strm = &(state.state->strm); local 294 z_streamp strm; local 364 z_streamp strm; local 450 z_streamp strm; local 559 z_streamp strm; local [all...] |
| gzread.c | 60 If strm->avail_in != 0, then the current data is moved to the beginning of 66 z_streamp strm = &(state.state->strm); local 71 if (strm->avail_in) { /* copy what's there to the start */ 73 unsigned const char *q = strm->next_in; 74 unsigned n = strm->avail_in; 79 if (gz_load(state, state.state->in + strm->avail_in, 80 state.state->size - strm->avail_in, &got) == -1) 82 strm->avail_in += got; 83 strm->next_in = state.state->in 98 z_streamp strm = &(state.state->strm); local 183 z_streamp strm = &(state.state->strm); local 233 z_streamp strm = &(state.state->strm); local [all...] |
| /src/external/gpl3/binutils/dist/zlib/ |
| gzwrite.c | 13 z_streamp strm = &(state->strm); local 33 strm->zalloc = Z_NULL; 34 strm->zfree = Z_NULL; 35 strm->opaque = Z_NULL; 36 ret = deflateInit2(strm, state->level, Z_DEFLATED, 44 strm->next_in = NULL; 52 strm->avail_out = state->size; 53 strm->next_out = state->out; 54 state->x.next = strm->next_out 68 z_streamp strm = &(state->strm); local 146 z_streamp strm = &(state->strm); local 291 z_streamp strm; local 364 z_streamp strm; local 450 z_streamp strm; local 559 z_streamp strm; local [all...] |
| gzread.c | 40 If strm->avail_in != 0, then the current data is moved to the beginning of 45 z_streamp strm = &(state->strm); local 50 if (strm->avail_in) { /* copy what's there to the start */ 52 unsigned const char *q = strm->next_in; 53 unsigned n = strm->avail_in; 58 if (gz_load(state, state->in + strm->avail_in, 59 state->size - strm->avail_in, &got) == -1) 61 strm->avail_in += got; 62 strm->next_in = state->in 77 z_streamp strm = &(state->strm); local 159 z_streamp strm = &(state->strm); local 209 z_streamp strm = &(state->strm); local [all...] |
| /src/external/gpl3/binutils.old/dist/zlib/ |
| gzwrite.c | 21 z_streamp strm = &(state->strm); local 41 strm->zalloc = Z_NULL; 42 strm->zfree = Z_NULL; 43 strm->opaque = Z_NULL; 44 ret = deflateInit2(strm, state->level, Z_DEFLATED, 52 strm->next_in = NULL; 60 strm->avail_out = state->size; 61 strm->next_out = state->out; 62 state->x.next = strm->next_out 79 z_streamp strm = &(state->strm); local 160 z_streamp strm = &(state->strm); local 320 z_streamp strm; local 397 z_streamp strm; local 487 z_streamp strm; local 603 z_streamp strm; local [all...] |
| gzread.c | 53 If strm->avail_in != 0, then the current data is moved to the beginning of 60 z_streamp strm = &(state->strm); local 65 if (strm->avail_in) { /* copy what's there to the start */ 67 unsigned const char *q = strm->next_in; 68 unsigned n = strm->avail_in; 73 if (gz_load(state, state->in + strm->avail_in, 74 state->size - strm->avail_in, &got) == -1) 76 strm->avail_in += got; 77 strm->next_in = state->in 94 z_streamp strm = &(state->strm); local 180 z_streamp strm = &(state->strm); local 232 z_streamp strm = &(state->strm); local [all...] |
| /src/usr.bin/gzip/ |
| unxz.c | 43 lzma_stream strm = LZMA_STREAM_INIT; local 54 strm.next_in = NULL; 55 strm.avail_in = 0; 56 *bytes_in = strm.avail_in; 58 if ((ret = lzma_stream_decoder(&strm, UINT64_MAX, flags)) != LZMA_OK) 62 strm.next_out = obuf; 63 strm.avail_out = sizeof(obuf); 65 strm.next_in = (uint8_t *)pre; 66 strm.avail_in = prelen; 70 if (strm.avail_in == 0) 270 lzma_stream strm = LZMA_STREAM_INIT; local [all...] |