Lines Matching defs:bits
59 * @param buffer the buffer where to put bits
78 * @return the total number of bits written to the bitstream.
96 * @param round_up When set, the number of bits written so far will be
108 * @param buffer the buffer where to put bits
123 * @return the number of bits available in the bitstream.
131 * @param round_up When set, the number of bits written will be
192 * @param length the number of bits of src to copy
244 * Write up to 31 bits into a bitstream.
245 * Use put_bits32 to write 32 bits.
289 * Write exactly 32 bits into a bitstream.
332 * Write up to 64 bits into a bitstream.
388 * Skip the given number of bits.
394 unsigned bits = BUF_BITS - s->bit_left + n;
395 s->buf_ptr += sizeof(BitBuf) * (bits / BUF_BITS);
396 s->bit_left = BUF_BITS - (bits & (BUF_BITS - 1));
402 * @param size the new size in bytes of the buffer where to put bits