Home | History | Annotate | Download | only in giflib

Lines Matching refs:LZ_MAX_CODE

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) {
873 if (Code > LZ_MAX_CODE) {
963 if (Private->RunningCode < LZ_MAX_CODE + 2 &&