Lines Matching defs:action0
216 /// Decodes one bit and runs action0 or action1 depending on the decoded bit.
220 #define rc_bit_last(prob, action0, action1) \
224 action0; \
232 #define rc_bit_last_safe(prob, action0, action1, seq) \
236 action0; \
244 /// Decodes one bit, updates "symbol", and runs action0 or action1 depending
246 #define rc_bit(prob, action0, action1) \
248 symbol <<= 1; action0, \
252 #define rc_bit_safe(prob, action0, action1, seq) \
254 symbol <<= 1; action0, \