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