Home | History | Annotate | Download | only in dec

Lines Matching defs:bit

33   int missing_;               // number of missing bits in value_ (8bit)
36 // Initialize the bit reader and the boolean decoder.
49 // Read a bit with proba 'prob'. Speed-critical function!
63 uint32_t bit;
70 bit = (br->value_ >= value_split);
71 if (bit) {
77 return bit;
90 const uint32_t bit = VP8BitUpdate(br, split);
94 return bit;
99 const uint32_t bit = VP8BitUpdate(br, split);
101 return bit ? -v : v;