Lines Matching refs:msbs
687 FLAC__uint32 lsbs = 0, msbs = 0;
694 /* read the unary MSBs and end bit */
695 if(!FLAC__bitreader_read_unary_unsigned(br, &msbs))
703 uval = (msbs << parameter) | lsbs;
718 unsigned cwords, words, lsbs, msbs, x, y;
735 /* read the unary MSBs and end bit */
736 if(!FLAC__bitreader_read_unary_unsigned(br, &msbs))
739 *val++ = (int)(msbs >> 1) ^ -(int)(msbs & 1);
760 /* read the unary MSBs and end bit */
777 msbs = x;
797 x = (msbs << parameter) | lsbs;
811 /* read the unary MSBs and end bit */
812 if(!FLAC__bitreader_read_unary_unsigned(br, &msbs))
814 msbs += x;
829 x = (msbs << parameter) | lsbs;
855 FLAC__uint32 lsbs = 0, msbs = 0;
863 /* read the unary MSBs and end bit */
864 if(!FLAC__bitreader_read_unary_unsigned(br, &msbs))
873 uval = (msbs << k) | lsbs;
885 uval = msbs * parameter + lsbs;
899 FLAC__uint32 lsbs, msbs = 0;
907 /* read the unary MSBs and end bit */
908 if(!FLAC__bitreader_read_unary_unsigned(br, &msbs))
917 *val = (msbs << k) | lsbs;
929 *val = msbs * parameter + lsbs;