HomeSort by relevance Sort by last modified time
    Searched refs:LZ_MAX_CODE (Results 1 - 2 of 2) sorted by null

  /external/giflib/
gif_lib_private.h 18 #define LZ_MAX_CODE 4095 /* Biggest code possible in 12 bits. */
51 GifByteType Stack[LZ_MAX_CODE]; /* Decoded pixels are stacked here. */
52 GifByteType Suffix[LZ_MAX_CODE + 1]; /* So we can trace the codes. */
53 GifPrefixType Prefix[LZ_MAX_CODE + 1];
dgif_lib.c 720 for (i = 0; i <= LZ_MAX_CODE; i++)
751 if (StackPtr > LZ_MAX_CODE) {
776 for (j = 0; j <= LZ_MAX_CODE; j++)
815 * and stop if we got LZ_MAX_CODE. obviously we can not
818 while (j++ <= LZ_MAX_CODE &&
819 CrntPrefix > ClearCode && CrntPrefix <= LZ_MAX_CODE) {
823 if (j >= LZ_MAX_CODE || CrntPrefix > LZ_MAX_CODE) {
863 * the maximum possible if image O.k. - LZ_MAX_CODE times.
872 while (Code > ClearCode && i++ <= LZ_MAX_CODE) {
    [all...]

Completed in 29 milliseconds