Lines Matching refs:avail_out
162 assert(sizeof(sp->stream.avail_out)==4); /* if this assert gets raised, in ZIPDecode()
166 sp->stream.avail_out = (uInt) occ; in ZIPDecode()
167 if ((tmsize_t)sp->stream.avail_out != occ) in ZIPDecode()
189 } while (sp->stream.avail_out > 0); in ZIPDecode()
190 if (sp->stream.avail_out != 0) { in ZIPDecode()
193 (unsigned long) tif->tif_row, (TIFF_UINT64_T) sp->stream.avail_out); in ZIPDecode()
239 assert(sizeof(sp->stream.avail_out)==4); /* if this assert gets raised, in ZIPPreEncode()
243 sp->stream.avail_out = tif->tif_rawdatasize; in ZIPPreEncode()
244 if ((tmsize_t)sp->stream.avail_out != tif->tif_rawdatasize) in ZIPPreEncode()
283 if (sp->stream.avail_out == 0) { in ZIPEncode()
287 …sp->stream.avail_out = (uInt) tif->tif_rawdatasize; /* this is a safe typecast, as check is made … in ZIPEncode()
310 if ((tmsize_t)sp->stream.avail_out != tif->tif_rawdatasize) in ZIPPostEncode()
312 tif->tif_rawcc = tif->tif_rawdatasize - sp->stream.avail_out; in ZIPPostEncode()
315 …sp->stream.avail_out = (uInt) tif->tif_rawdatasize; /* this is a safe typecast, as check is made … in ZIPPostEncode()