Home
last modified time | relevance | path

Searched refs:cwords (Results 1 – 1 of 1) sorted by relevance

/external/flac/libFLAC/
Dbitreader.c718 unsigned cwords, words, lsbs, msbs, x, y; in FLAC__bitreader_read_rice_signed_block() local
747 cwords = br->consumed_words; in FLAC__bitreader_read_rice_signed_block()
751 if(cwords >= words) { in FLAC__bitreader_read_rice_signed_block()
757 b = br->buffer[cwords] << br->consumed_bits; /* keep unconsumed bits aligned to left */ in FLAC__bitreader_read_rice_signed_block()
766 crc16_update_word_(br, br->buffer[cwords++]); in FLAC__bitreader_read_rice_signed_block()
767 if (cwords >= words) in FLAC__bitreader_read_rice_signed_block()
769 b = br->buffer[cwords]; in FLAC__bitreader_read_rice_signed_block()
786 crc16_update_word_(br, br->buffer[cwords++]); in FLAC__bitreader_read_rice_signed_block()
787 if (cwords >= words) in FLAC__bitreader_read_rice_signed_block()
789 b = br->buffer[cwords]; in FLAC__bitreader_read_rice_signed_block()
[all …]