Lines Matching refs:msbs
70 /* counts the # of zero MSBs in a word */
780 FLAC__uint32 lsbs = 0, msbs = 0;
787 /* read the unary MSBs and end bit */
788 if(!FLAC__bitreader_read_unary_unsigned(br, &msbs))
796 uval = (msbs << parameter) | lsbs;
1183 FLAC__uint32 lsbs = 0, msbs = 0;
1191 /* read the unary MSBs and end bit */
1192 if(!FLAC__bitreader_read_unary_unsigned(br, &msbs))
1201 uval = (msbs << k) | lsbs;
1213 uval = msbs * parameter + lsbs;
1227 FLAC__uint32 lsbs, msbs = 0;
1235 /* read the unary MSBs and end bit */
1236 if(!FLAC__bitreader_read_unary_unsigned(br, &msbs))
1245 *val = (msbs << k) | lsbs;
1257 *val = msbs * parameter + lsbs;