Lines Matching defs:bits
1083 * @return Returns error status or number of consumed bits. <0 - error
1554 const int bits = (ics->window_sequence[0] == EIGHT_SHORT_SEQUENCE) ? 3 : 5;
1566 sect_len_incr = get_bits(gb, bits);
1578 } while (sect_len_incr == (1 << bits) - 1);
1859 uint32_t bits;
1865 bits = nnz ? GET_CACHE(re, gb) : 0;
1868 cf = DEC_UQUAD(cf, cb_idx, bits);
1870 cf = VMUL4S(cf, vq, cb_idx, bits, sf + idx);
1939 uint32_t bits;
1954 bits = SHOW_UBITS(re, gb, nnz) << (32-nnz);
1961 /* The total length of escape_sequence must be < 22 bits according
1978 if (bits & 1U<<31)
1982 *icf++ = ff_cbrt_tab[n] | (bits & 1U<<31);
1984 bits <<= 1;
1988 if (bits & 1U<<31)
1993 *icf++ = (bits & 1U<<31) | v;
1995 bits <<= !!v;