Searched refs:msbits (Results 1 - 2 of 2) sorted by relevance

/external/flac/libFLAC/
H A Dbitwriter.c548 unsigned msbits; local
560 msbits = uval >> parameter;
563 if(bw->bits && bw->bits + msbits + lsbits <= FLAC__BITS_PER_WORD) { /* i.e. if the whole thing fits in the current bwword */
565 bw->bits = bw->bits + msbits + lsbits;
568 /* NOT: bw->accum <<= msbits + lsbits because msbits+lsbits could be 32, then the shift would be a NOP */
569 bw->accum <<= msbits;
584 if(bw->bits && bw->bits + msbits + lsbits < FLAC__BITS_PER_WORD) { /* i.e. if the whole thing fits in the current bwword */
586 bw->bits = bw->bits + msbits + lsbits;
589 bw->accum <<= msbits
[all...]
/external/kernel-headers/original/uapi/sound/
H A Dasound.h368 unsigned int msbits; /* R: used most significant bits */ member in struct:snd_pcm_hw_params

Completed in 80 milliseconds