Lines Matching full:nvals
606 FLAC__bool FLAC__bitreader_skip_byte_block_aligned_no_crc(FLAC__BitReader *br, unsigned nvals)
615 while(nvals && br->consumed_bits) { /* i.e. run until we read 'nvals' bytes or we hit the end of the head word */
618 nvals--;
620 if(0 == nvals)
623 while(nvals >= FLAC__BYTES_PER_WORD) {
626 nvals -= FLAC__BYTES_PER_WORD;
632 while(nvals) {
635 nvals--;
641 FLAC__bool FLAC__bitreader_read_byte_block_aligned_no_crc(FLAC__BitReader *br, FLAC__byte *val, unsigned nvals)
650 while(nvals && br->consumed_bits) { /* i.e. run until we read 'nvals' bytes or we hit the end of the head word */
654 nvals--;
656 if(0 == nvals)
659 while(nvals >= FLAC__BYTES_PER_WORD) {
681 nvals -= FLAC__BYTES_PER_WORD;
687 while(nvals) {
691 nvals--;
807 FLAC__bool FLAC__bitreader_read_rice_signed_block(FLAC__BitReader *br, int vals[], unsigned nvals, unsigned parameter)
828 if(nvals == 0)
979 --nvals;
980 if(nvals == 0) {
1010 if(nvals == 0)
1166 --nvals;
1167 if(nvals == 0) {