Lines Matching refs:ct
77 if (mqc->ct == 0) { in opj_mqc_raw_decode()
83 mqc->ct = 8; in opj_mqc_raw_decode()
87 mqc->ct = 7; in opj_mqc_raw_decode()
92 mqc->ct = 8; in opj_mqc_raw_decode()
95 mqc->ct--; in opj_mqc_raw_decode()
96 d = ((OPJ_UINT32)mqc->c >> mqc->ct) & 0x01U; in opj_mqc_raw_decode()
102 #define opj_mqc_bytein_macro(mqc, c, ct) \ argument
111 ct = 8; \
116 ct = 7; \
121 ct = 8; \
126 #define opj_mqc_renormd_macro(mqc, a, c, ct) \ argument
129 if (ct == 0) { \
130 opj_mqc_bytein_macro(mqc, c, ct); \
134 ct--; \
138 #define opj_mqc_decode_macro(d, mqc, curctx, a, c, ct) \ argument
147 opj_mqc_renormd_macro(mqc, a, c, ct); \
152 opj_mqc_renormd_macro(mqc, a, c, ct); \
159 #define DOWNLOAD_MQC_VARIABLES(mqc, curctx, c, a, ct) \ argument
163 register OPJ_UINT32 ct = mqc->ct
165 #define UPLOAD_MQC_VARIABLES(mqc, curctx, c, a, ct) \ argument
169 mqc->ct = ct;
177 opj_mqc_bytein_macro(mqc, mqc->c, mqc->ct); in opj_mqc_bytein()
185 opj_mqc_renormd_macro(mqc, mqc->a, mqc->c, mqc->ct)
194 opj_mqc_decode_macro(d, mqc, mqc->curctx, mqc->a, mqc->c, mqc->ct)