Home | History | Annotate | Download | only in C

Lines Matching defs:bit

672     UInt32 bit;

674 bit = (symbol >> i) & 1;
675 RangeEnc_EncodeBit(rc, probs + m, bit);
676 m = (m << 1) | bit;
686 UInt32 bit = symbol & 1;
687 RangeEnc_EncodeBit(rc, probs + m, bit);
688 m = (m << 1) | bit;
712 UInt32 bit = symbol & 1;
714 price += GET_PRICEa(probs[m], bit);
715 m = (m << 1) | bit;