Lines Matching refs:LZWInfo
130 } LZWInfo; typedef
136 GetNextLZWCode(LZWInfo *,const size_t);
169 static LZWInfo *RelinquishLZWInfo(LZWInfo *lzw_info) in RelinquishLZWInfo()
184 lzw_info=(LZWInfo *) RelinquishMagickMemory(lzw_info); in RelinquishLZWInfo()
185 return((LZWInfo *) NULL); in RelinquishLZWInfo()
188 static inline void ResetLZWInfo(LZWInfo *lzw_info) in ResetLZWInfo()
200 static LZWInfo *AcquireLZWInfo(Image *image,const size_t data_size) in AcquireLZWInfo()
202 LZWInfo in AcquireLZWInfo()
211 lzw_info=(LZWInfo *) AcquireMagickMemory(sizeof(*lzw_info)); in AcquireLZWInfo()
212 if (lzw_info == (LZWInfo *) NULL) in AcquireLZWInfo()
213 return((LZWInfo *) NULL); in AcquireLZWInfo()
229 return((LZWInfo *) NULL); in AcquireLZWInfo()
251 return((LZWInfo *) NULL); in AcquireLZWInfo()
258 return((LZWInfo *) NULL); in AcquireLZWInfo()
265 static inline int GetNextLZWCode(LZWInfo *lzw_info,const size_t bits) in GetNextLZWCode()
324 static int ReadBlobLZWByte(LZWInfo *lzw_info) in ReadBlobLZWByte()
401 LZWInfo in DecodeImage()
426 if (lzw_info == (LZWInfo *) NULL) in DecodeImage()