Home | History | Annotate | Download | only in libjpeg-turbo

Lines Matching refs:ct

31   int ct;     /* bit shift counter, # of bits left in bit buffer part of C */
32 /* init: ct = -16 */
33 /* run: ct = 0..7 */
34 /* error: ct = -1 */
97 * (instead of fixed) with the bit shift counter CT.
118 if (--e->ct < 0) {
142 if ((e->ct += 8) < 0) /* update bit shift counter */
144 if (++e->ct == 0)
162 temp <<= e->ct;
220 entropy->ct = -16; /* force reading 2 initial bytes to fill C */
259 if (entropy->ct == -1) return TRUE; /* if error do nothing */
287 entropy->ct = -1; /* magnitude overflow */
338 if (entropy->ct == -1) return TRUE; /* if error do nothing */
354 entropy->ct = -1; /* spectral overflow */
371 entropy->ct = -1; /* magnitude overflow */
446 if (entropy->ct == -1) return TRUE; /* if error do nothing */
484 entropy->ct = -1; /* spectral overflow */
515 if (entropy->ct == -1) return TRUE; /* if error do nothing */
545 entropy->ct = -1; /* magnitude overflow */
582 entropy->ct = -1; /* spectral overflow */
599 entropy->ct = -1; /* magnitude overflow */
723 entropy->ct = -16; /* force reading 2 initial bytes to fill C */