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

  /external/flac/libFLAC/
bitreader.c 780 FLAC__uint32 lsbs = 0, msbs = 0; local
791 /* read the binary LSBs */
792 if(!FLAC__bitreader_read_raw_uint32(br, &lsbs, parameter))
796 uval = (msbs << parameter) | lsbs;
813 unsigned bits; /* the # of binary LSBs left to read to finish a rice codeword */
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/
r300_fragprog_emit.c 71 * @param lsbs The number of least significant bits
73 static unsigned int get_msbs_tex(unsigned int bits, unsigned int lsbs)
75 return (bits >> lsbs) & 0x15;
78 #define R400_EXT_GET_MSBS(x, lsbs, mask) (((x) >> lsbs) & mask)
  /external/mesa3d/src/gallium/drivers/r300/compiler/
r300_fragprog_emit.c 71 * @param lsbs The number of least significant bits
73 static unsigned int get_msbs_tex(unsigned int bits, unsigned int lsbs)
75 return (bits >> lsbs) & 0x15;
78 #define R400_EXT_GET_MSBS(x, lsbs, mask) (((x) >> lsbs) & mask)

Completed in 996 milliseconds