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

  /external/flac/libFLAC/
bitreader.c 687 FLAC__uint32 lsbs = 0, msbs = 0; local
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; local
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 *
    [all...]
bitwriter.c 419 unsigned bits, msbs, uval;
434 msbs = uval >> k;
435 bits = 1 + k + msbs;
453 unsigned bits, msbs;
462 msbs = uval >> k;
463 bits = 1 + k + msbs;
482 unsigned total_bits, interesting_bits, msbs; local
492 msbs = uval >> parameter;
494 total_bits = interesting_bits + msbs;
502 FLAC__bitwriter_write_zeroes(bw, msbs) && /* write the unary MSBs *
    [all...]
  /cts/apps/CameraITS/pymodules/its/
image.py 126 Output image will have the 10 LSBs filled in each 16b word, and the 6 MSBs
139 # Cut out the 4x8b MSBs and shift to bits [9:2] in 16b words.
140 msbs = numpy.delete(img, numpy.s_[4::5], 1)
141 msbs = msbs.astype(numpy.uint16)
142 msbs = numpy.left_shift(msbs, 2)
143 msbs = msbs.reshape(h,w)
149 # Fuse the MSBs and LSBs back togethe
    [all...]

Completed in 71 milliseconds