Lines Matching defs:width
540 int width, const char *name,
547 av_assert0(width > 0 && width <= 32);
549 if (get_bits_left(gbc) < width) {
558 value = get_bits_long(gbc, width);
563 for (i = 0; i < width; i++)
564 bits[i] = value >> (width - i - 1) & 1 ? '1' : '0';
583 int width, const char *name,
587 av_assert0(width > 0 && width <= 32);
596 if (put_bits_left(pbc) < width)
602 for (i = 0; i < width; i++)
603 bits[i] = value >> (width - i - 1) & 1 ? '1' : '0';
610 if (width < 32)
611 put_bits(pbc, width, value);
619 int width, const char *name,
626 av_assert0(width > 0 && width <= 32);
628 if (get_bits_left(gbc) < width) {
637 value = get_sbits_long(gbc, width);
642 for (i = 0; i < width; i++)
643 bits[i] = value & (1U << (width - i - 1)) ? '1' : '0';
662 int width, const char *name,
666 av_assert0(width > 0 && width <= 32);
675 if (put_bits_left(pbc) < width)
681 for (i = 0; i < width; i++)
682 bits[i] = value & (1U << (width - i - 1)) ? '1' : '0';
689 if (width < 32)
690 put_sbits(pbc, width, value);