Home | History | Annotate | Download | only in jpeg

Lines Matching full:codesize

709   int codesize[257];		/* codesize[k] = code length of symbol k */
718 MEMZERO(codesize, SIZEOF(codesize));
761 /* Increment the codesize of everything in c1's tree branch */
762 codesize[c1]++;
765 codesize[c1]++;
770 /* Increment the codesize of everything in c2's tree branch */
771 codesize[c2]++;
774 codesize[c2]++;
780 if (codesize[i]) {
783 if (codesize[i] > MAX_CLEN)
786 bits[codesize[i]]++;
829 if (codesize[j] == i) {