Searched defs:stack_info (Results 1 - 1 of 1) sorted by relevance

/external/ImageMagick/coders/
H A Dgif.c308 static inline int PopLZWStack(LZWStack *stack_info)
310 if (stack_info->index <= stack_info->codes)
312 stack_info->index--;
313 return((int) *stack_info->index);
316 static inline void PushLZWStack(LZWStack *stack_info,const size_t value)
318 if (stack_info->index >= stack_info->top)
320 *stack_info->index=value;
321 stack_info
303 PopLZWStack(LZWStack *stack_info) argument
311 PushLZWStack(LZWStack *stack_info,const size_t value) argument
[all...]

Completed in 70 milliseconds