Searched defs:have (Results 1 - 5 of 5) sorted by relevance
/forgerock/web-agents-v4/zlib/ |
H A D | gzwrite.c | 75 unsigned have; local 100 have = (unsigned)(strm->next_out - state->x.next); 101 if (have && ((got = write(state->fd, state->x.next, have)) < 0 || 102 (unsigned)got != have)) { 114 have = strm->avail_out; 121 have -= strm->avail_out; 122 } while (have); 210 unsigned have, copy; local 214 have 249 unsigned have; local [all...] |
H A D | infback.c | 133 have = strm->avail_in; \ 144 strm->avail_in = have; \ 160 if (have == 0) { \ 161 have = in(in_desc, &next); \ 162 if (have == 0) { \ 175 have--; \ 260 unsigned have, left; /* available input and output */ local 283 have = next != Z_NULL ? strm->avail_in : 0; 345 if (copy > have) copy = have; [all...] |
H A D | inflate.c | 101 local unsigned syncsearch OF((unsigned FAR *have, const unsigned char FAR *buf, 464 have = strm->avail_in; \ 475 strm->avail_in = have; \ 491 if (have == 0) goto inf_leave; \ 492 have--; \ 566 would all have to actually be part of the saved state in case NEEDBITS() 612 unsigned have, left; /* available input and output */ local 635 in = have; 736 if (copy > have) copy = have; [all...] |
H A D | inflate.h | 114 unsigned have; /* number of code lengths in lens[] */ member in struct:inflate_state
|
H A D | zlib.h | 51 but other algorithms will be added later and will have the same stream 150 returned by zalloc for objects of exactly 65536 bytes *must* have their 456 operation to complete. (The size of the uncompressed data may have been 553 compressed data instead of a zlib wrapper. The gzip header will have no 654 may have been set by deflateInit2. 673 a call of deflate(), since the currently available input may have to be 717 deflatePending() returns the number of bytes and bits of output that have 848 to dictionary. dictionary must have enough space, where 32768 bytes is 864 All full flush points have this pattern, but not all occurrences of this 896 stream will keep attributes that may have bee 1671 unsigned have; member in struct:gzFile_s [all...] |
Completed in 63 milliseconds