HomeSort by relevance Sort by last modified time
    Searched refs:msbs (Results 1 - 3 of 3) sorted by null

  /external/flac/libFLAC/
bitwriter.c 454 unsigned bits, msbs, uval;
469 msbs = uval >> k;
470 bits = 1 + k + msbs;
488 unsigned bits, msbs;
497 msbs = uval >> k;
498 bits = 1 + k + msbs;
517 unsigned total_bits, interesting_bits, msbs; local
527 msbs = uval >> parameter;
529 total_bits = interesting_bits + msbs;
537 FLAC__bitwriter_write_zeroes(bw, msbs) && /* write the unary MSBs *
    [all...]
bitreader.c 70 /* counts the # of zero MSBs in a word */
780 FLAC__uint32 lsbs = 0, msbs = 0; local
787 /* read the unary MSBs and end bit */
788 if(!FLAC__bitreader_read_unary_unsigned(br, &msbs))
796 uval = (msbs << parameter) | lsbs;
    [all...]
  /cts/apps/CameraITS/pymodules/its/
image.py 104 Output image will have the 10 LSBs filled in each 16b word, and the 6 MSBs
117 # Cut out the 4x8b MSBs and shift to bits [10:2] in 16b words.
118 msbs = numpy.delete(img, numpy.s_[4::5], 1)
119 msbs = msbs.astype(numpy.uint16)
120 msbs = numpy.left_shift(msbs, 2)
121 msbs = msbs.reshape(h,w)
127 # Fuse the MSBs and LSBs back togethe
    [all...]

Completed in 5421 milliseconds