Home | History | Annotate | Download | only in encoder

Lines Matching refs:code_len

117 *  inserts code_len number of bits from lsb of code_val into the
129 * @param[in] code_len
133 * @remarks Assumptions: all bits from bit position code_len to msb of
142 WORD32 code_len)
149 ASSERT(code_len > 0 && code_len <= WORD_SIZE);
151 if(code_len < WORD_SIZE)
152 ASSERT((u4_code_val >> code_len) == 0);
162 if(bits_left_in_cw > code_len)
168 bits_left_in_cw -= code_len;
193 WORD32 i, rem_bits = (code_len - bits_left_in_cw);