have 127 lib/zlib/contrib/infback9/infback9.c if (have == 0) { \
have 128 lib/zlib/contrib/infback9/infback9.c have = in(in_desc, &next); \
have 129 lib/zlib/contrib/infback9/infback9.c if (have == 0) { \
have 142 lib/zlib/contrib/infback9/infback9.c have--; \
have 227 lib/zlib/contrib/infback9/infback9.c unsigned have; /* available input */
have 266 lib/zlib/contrib/infback9/infback9.c have = next != Z_NULL ? strm->avail_in : 0;
have 333 lib/zlib/contrib/infback9/infback9.c if (copy > have) copy = have;
have 336 lib/zlib/contrib/infback9/infback9.c have -= copy;
have 363 lib/zlib/contrib/infback9/infback9.c state->have = 0;
have 364 lib/zlib/contrib/infback9/infback9.c while (state->have < state->ncode) {
have 366 lib/zlib/contrib/infback9/infback9.c state->lens[order[state->have++]] = (unsigned short)BITS(3);
have 369 lib/zlib/contrib/infback9/infback9.c while (state->have < 19)
have 370 lib/zlib/contrib/infback9/infback9.c state->lens[order[state->have++]] = 0;
have 384 lib/zlib/contrib/infback9/infback9.c state->have = 0;
have 385 lib/zlib/contrib/infback9/infback9.c while (state->have < state->nlen + state->ndist) {
have 394 lib/zlib/contrib/infback9/infback9.c state->lens[state->have++] = this.val;
have 400 lib/zlib/contrib/infback9/infback9.c if (state->have == 0) {
have 405 lib/zlib/contrib/infback9/infback9.c len = (unsigned)(state->lens[state->have - 1]);
have 423 lib/zlib/contrib/infback9/infback9.c if (state->have + copy > state->nlen + state->ndist) {
have 429 lib/zlib/contrib/infback9/infback9.c state->lens[state->have++] = (unsigned short)len;
have 595 lib/zlib/contrib/infback9/infback9.c strm->avail_in = have;
have 42 lib/zlib/contrib/infback9/inflate9.h unsigned have; /* number of code lengths in lens[] */
have 131 lib/zlib/examples/fitblk.c unsigned have; /* bytes written by deflate() call */
have 165 lib/zlib/examples/fitblk.c have = size + EXCESS - def.avail_out;
have 166 lib/zlib/examples/fitblk.c if (fwrite(blk, 1, have, stdout) != have || ferror(stdout))
have 175 lib/zlib/examples/fitblk.c size - have, size);
have 218 lib/zlib/examples/fitblk.c have = size - def.avail_out;
have 219 lib/zlib/examples/fitblk.c if (fwrite(blk, 1, have, stdout) != have || ferror(stdout))
have 231 lib/zlib/examples/fitblk.c size - have, size, def.total_in);
have 151 lib/zlib/examples/gun.c #define NEXT() (have ? 0 : (have = in(indp, &next)), \
have 152 lib/zlib/examples/gun.c last = have ? (have--, (int)(*next++)) : -1)
have 171 lib/zlib/examples/gun.c if (chunk > have) { \
have 172 lib/zlib/examples/gun.c chunk -= have; \
have 173 lib/zlib/examples/gun.c have = 0; \
have 177 lib/zlib/examples/gun.c if (chunk > have) { \
have 178 lib/zlib/examples/gun.c chunk = have = 0; \
have 182 lib/zlib/examples/gun.c have -= chunk; \
have 196 lib/zlib/examples/gun.c local int lunpipe(unsigned have, unsigned char *next, struct ind *indp,
have 377 lib/zlib/examples/gun.c unsigned have, flags, len;
have 388 lib/zlib/examples/gun.c have = 0; /* no input data read in yet */
have 406 lib/zlib/examples/gun.c ret = lunpipe(have, next, indp, outfile, strm);
have 435 lib/zlib/examples/gun.c while (len > have) {
have 436 lib/zlib/examples/gun.c len -= have;
have 437 lib/zlib/examples/gun.c have = 0;
have 442 lib/zlib/examples/gun.c have -= len;
have 465 lib/zlib/examples/gun.c strm->avail_in = have;
have 469 lib/zlib/examples/gun.c have = strm->avail_in;
have 260 lib/zlib/examples/gzappend.c unsigned have;
have 294 lib/zlib/examples/gzappend.c have = full = 0;
have 304 lib/zlib/examples/gzappend.c strm->avail_out = DSIZE - have;
have 305 lib/zlib/examples/gzappend.c strm->next_out = window + have;
have 315 lib/zlib/examples/gzappend.c crc = crc32(crc, window + have, DSIZE - have - strm->avail_out);
have 317 lib/zlib/examples/gzappend.c have = DSIZE - strm->avail_out;
have 319 lib/zlib/examples/gzappend.c have = 0;
have 361 lib/zlib/examples/gzappend.c rotate(window, DSIZE, have);
have 362 lib/zlib/examples/gzappend.c have = DSIZE;
have 368 lib/zlib/examples/gzappend.c deflateSetDictionary(strm, window, have);
have 29 lib/zlib/examples/zpipe.c unsigned have;
have 59 lib/zlib/examples/zpipe.c have = CHUNK - strm.avail_out;
have 60 lib/zlib/examples/zpipe.c if (fwrite(out, 1, have, dest) != have || ferror(dest)) {
have 85 lib/zlib/examples/zpipe.c unsigned have;
have 125 lib/zlib/examples/zpipe.c have = CHUNK - strm.avail_out;
have 126 lib/zlib/examples/zpipe.c if (fwrite(out, 1, have, dest) != have || ferror(dest)) {
have 71 lib/zlib/examples/zran.c int have; /* number of list entries filled in */
have 102 lib/zlib/examples/zran.c index->have = 0;
have 106 lib/zlib/examples/zran.c else if (index->have == index->size) {
have 117 lib/zlib/examples/zran.c next = index->list + index->have;
have 125 lib/zlib/examples/zran.c index->have++;
have 224 lib/zlib/examples/zran.c index = realloc(index, sizeof(struct point) * index->have);
have 225 lib/zlib/examples/zran.c index->size = index->have;
have 259 lib/zlib/examples/zran.c ret = index->have;
have 390 lib/zlib/examples/zran.c offset = (index->list[index->have - 1].out << 1) / 3;
have 124 lib/zlib/infback.c have = strm->avail_in; \
have 135 lib/zlib/infback.c strm->avail_in = have; \
have 151 lib/zlib/infback.c if (have == 0) { \
have 152 lib/zlib/infback.c have = in(in_desc, &next); \
have 153 lib/zlib/infback.c if (have == 0) { \
have 166 lib/zlib/infback.c have--; \
have 251 lib/zlib/infback.c unsigned have, left; /* available input and output */
have 274 lib/zlib/infback.c have = next != Z_NULL ? strm->avail_in : 0;
have 336 lib/zlib/infback.c if (copy > have) copy = have;
have 339 lib/zlib/infback.c have -= copy;
have 368 lib/zlib/infback.c state->have = 0;
have 369 lib/zlib/infback.c while (state->have < state->ncode) {
have 371 lib/zlib/infback.c state->lens[order[state->have++]] = (unsigned short)BITS(3);
have 374 lib/zlib/infback.c while (state->have < 19)
have 375 lib/zlib/infback.c state->lens[order[state->have++]] = 0;
have 389 lib/zlib/infback.c state->have = 0;
have 390 lib/zlib/infback.c while (state->have < state->nlen + state->ndist) {
have 399 lib/zlib/infback.c state->lens[state->have++] = this.val;
have 405 lib/zlib/infback.c if (state->have == 0) {
have 410 lib/zlib/infback.c len = (unsigned)(state->lens[state->have - 1]);
have 428 lib/zlib/infback.c if (state->have + copy > state->nlen + state->ndist) {
have 434 lib/zlib/infback.c state->lens[state->have++] = (unsigned short)len;
have 466 lib/zlib/infback.c if (have >= 6 && left >= 258) {
have 610 lib/zlib/infback.c strm->avail_in = have;
have 100 lib/zlib/inflate.c local unsigned syncsearch OF((unsigned FAR *have, unsigned const char FAR *buf,
have 408 lib/zlib/inflate.c have = strm->avail_in; \
have 419 lib/zlib/inflate.c strm->avail_in = have; \
have 435 lib/zlib/inflate.c if (have == 0) goto inf_leave; \
have 436 lib/zlib/inflate.c have--; \
have 561 lib/zlib/inflate.c unsigned have, left; /* available input and output */
have 584 lib/zlib/inflate.c in = have;
have 683 lib/zlib/inflate.c if (copy > have) copy = have;
have 694 lib/zlib/inflate.c have -= copy;
have 704 lib/zlib/inflate.c if (have == 0) goto inf_leave;
have 712 lib/zlib/inflate.c } while (len && copy < have);
have 715 lib/zlib/inflate.c have -= copy;
have 725 lib/zlib/inflate.c if (have == 0) goto inf_leave;
have 733 lib/zlib/inflate.c } while (len && copy < have);
have 736 lib/zlib/inflate.c have -= copy;
have 823 lib/zlib/inflate.c if (copy > have) copy = have;
have 827 lib/zlib/inflate.c have -= copy;
have 853 lib/zlib/inflate.c state->have = 0;
have 856 lib/zlib/inflate.c while (state->have < state->ncode) {
have 858 lib/zlib/inflate.c state->lens[order[state->have++]] = (unsigned short)BITS(3);
have 861 lib/zlib/inflate.c while (state->have < 19)
have 862 lib/zlib/inflate.c state->lens[order[state->have++]] = 0;
have 874 lib/zlib/inflate.c state->have = 0;
have 877 lib/zlib/inflate.c while (state->have < state->nlen + state->ndist) {
have 886 lib/zlib/inflate.c state->lens[state->have++] = this.val;
have 892 lib/zlib/inflate.c if (state->have == 0) {
have 897 lib/zlib/inflate.c len = state->lens[state->have - 1];
have 915 lib/zlib/inflate.c if (state->have + copy > state->nlen + state->ndist) {
have 921 lib/zlib/inflate.c state->lens[state->have++] = (unsigned short)len;
have 951 lib/zlib/inflate.c if (have >= 6 && left >= 258) {
have 1239 lib/zlib/inflate.c local unsigned syncsearch(have, buf, len)
have 1240 lib/zlib/inflate.c unsigned FAR *have;
have 1247 lib/zlib/inflate.c got = *have;
have 1258 lib/zlib/inflate.c *have = got;
have 1286 lib/zlib/inflate.c state->have = 0;
have 1287 lib/zlib/inflate.c syncsearch(&(state->have), buf, len);
have 1291 lib/zlib/inflate.c len = syncsearch(&(state->have), strm->next_in, strm->avail_in);
have 1297 lib/zlib/inflate.c if (state->have != 4) return Z_DATA_ERROR;
have 110 lib/zlib/inflate.h unsigned have; /* number of code lengths in lens[] */
have 467 source3/client/cifs.upcall.c unsigned int have;
have 527 source3/client/cifs.upcall.c have = decode_key_description(buf, &arg);
have 529 source3/client/cifs.upcall.c if ((have & DKD_MUSTHAVE_SET) != DKD_MUSTHAVE_SET) {
have 531 source3/client/cifs.upcall.c "description (0x%x)", have);
have 543 source3/client/cifs.upcall.c if (have & DKD_HAVE_UID) {
have 588 source3/client/cifs.upcall.c if (!try_dns || !(have & DKD_HAVE_IP))
have 229 source3/include/smb_macros.h Disable these now we have checked all code paths and ensured
have 2962 source3/lib/util.c Disable these now we have checked all code paths and ensured
have 100 source3/libaddns/dns.h Disable these now we have checked all code paths and ensured