Lines Matching refs:avail_out
178 sp->stream.avail_out = (size_t) occ; in LZMADecode()
179 if ((tmsize_t)sp->stream.avail_out != occ) { in LZMADecode()
215 } while (sp->stream.avail_out > 0); in LZMADecode()
216 if (sp->stream.avail_out != 0) { in LZMADecode()
219 (unsigned long) tif->tif_row, (unsigned long) sp->stream.avail_out); in LZMADecode()
259 sp->stream.avail_out = (size_t)tif->tif_rawdatasize; in LZMAPreEncode()
260 if ((tmsize_t)sp->stream.avail_out != tif->tif_rawdatasize) { in LZMAPreEncode()
296 if (sp->stream.avail_out == 0) { in LZMAEncode()
300 …sp->stream.avail_out = (size_t)tif->tif_rawdatasize; /* this is a safe typecast, as check is made… in LZMAEncode()
323 if ((tmsize_t)sp->stream.avail_out != tif->tif_rawdatasize) { in LZMAPostEncode()
325 tif->tif_rawdatasize - sp->stream.avail_out; in LZMAPostEncode()
328 …sp->stream.avail_out = (size_t)tif->tif_rawdatasize; /* this is a safe typecast, as check is made… in LZMAPostEncode()