Lines Matching defs:c1
1482 int32 c1 = GetJpegChar ();
1488 getBuffer = (getBuffer << 8) | c1;
3211 // Find the smallest nonzero frequency, set c1 = its symbol.
3214 int c1 = -1;
3224 c1 = i;
3239 if (freq [i] && freq [i] <= v && i != c1)
3254 freq [c1] += freq [c2];
3257 // Increment the codesize of everything in c1's tree branch.
3259 codesize [c1] ++;
3261 while (others [c1] >= 0)
3263 c1 = others [c1];
3264 codesize [c1] ++;
3267 // chain c2 onto c1's tree branch
3269 others [c1] = (short) c2;