Lines Matching refs:avail_out
166 assert(sizeof(sp->stream.avail_out)==4); /* if this assert gets raised, in ZIPDecode()
170 sp->stream.avail_out = (uInt) occ; in ZIPDecode()
171 if ((tmsize_t)sp->stream.avail_out != occ) in ZIPDecode()
193 } while (sp->stream.avail_out > 0); in ZIPDecode()
194 if (sp->stream.avail_out != 0) { in ZIPDecode()
197 (unsigned long) tif->tif_row, (TIFF_UINT64_T) sp->stream.avail_out); in ZIPDecode()
243 assert(sizeof(sp->stream.avail_out)==4); /* if this assert gets raised, in ZIPPreEncode()
247 sp->stream.avail_out = (uInt)tif->tif_rawdatasize; in ZIPPreEncode()
248 if ((tmsize_t)sp->stream.avail_out != tif->tif_rawdatasize) in ZIPPreEncode()
287 if (sp->stream.avail_out == 0) { in ZIPEncode()
291 …sp->stream.avail_out = (uInt) tif->tif_rawdatasize; /* this is a safe typecast, as check is made … in ZIPEncode()
314 if ((tmsize_t)sp->stream.avail_out != tif->tif_rawdatasize) in ZIPPostEncode()
316 tif->tif_rawcc = tif->tif_rawdatasize - sp->stream.avail_out; in ZIPPostEncode()
319 …sp->stream.avail_out = (uInt) tif->tif_rawdatasize; /* this is a safe typecast, as check is made … in ZIPPostEncode()