Home
last modified time | relevance | path

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

/external/flac/libFLAC/
Dbitreader.c744 unsigned cwords, words, lsbs, msbs, x, y; in FLAC__bitreader_read_rice_signed_block() local
773 cwords = br->consumed_words; in FLAC__bitreader_read_rice_signed_block()
777 if(cwords >= words) { in FLAC__bitreader_read_rice_signed_block()
783 b = br->buffer[cwords] << br->consumed_bits; /* keep unconsumed bits aligned to left */ in FLAC__bitreader_read_rice_signed_block()
792 crc16_update_word_(br, br->buffer[cwords++]); in FLAC__bitreader_read_rice_signed_block()
793 if (cwords >= words) in FLAC__bitreader_read_rice_signed_block()
795 b = br->buffer[cwords]; in FLAC__bitreader_read_rice_signed_block()
812 crc16_update_word_(br, br->buffer[cwords++]); in FLAC__bitreader_read_rice_signed_block()
813 if (cwords >= words) in FLAC__bitreader_read_rice_signed_block()
815 b = br->buffer[cwords]; in FLAC__bitreader_read_rice_signed_block()
[all …]