Home | History | Annotate | Download | only in enc

Lines Matching refs:trimmed_length

588     int trimmed_length = num_tokens;
595 --trimmed_length; // discount trailing zeros
606 write_trimmed_length = (trimmed_length > 1 && trailing_zero_bits > 12);
607 length = write_trimmed_length ? trimmed_length : num_tokens;
610 const int nbits = VP8LBitsLog2Ceiling(trimmed_length - 1);
613 assert(trimmed_length >= 2);
614 VP8LPutBits(bw, trimmed_length - 2, nbitpairs * 2);