HomeSort by relevance Sort by last modified time
    Searched full:lsbits (Results 1 - 6 of 6) sorted by null

  /external/flac/libFLAC/
bitwriter.c 547 const unsigned lsbits = 1 + parameter; local
563 if(bw->bits && bw->bits + msbits + lsbits <= FLAC__BITS_PER_WORD) { /* i.e. if the whole thing fits in the current bwword */
565 bw->bits = bw->bits + msbits + lsbits;
568 /* NOT: bw->accum <<= msbits + lsbits because msbits+lsbits could be 32, then the shift would be a NOP */
570 bw->accum <<= lsbits;
584 if(bw->bits && bw->bits + msbits + lsbits < FLAC__BITS_PER_WORD) { /* i.e. if the whole thing fits in the current bwword */
586 bw->bits = bw->bits + msbits + lsbits;
589 bw->accum <<= msbits + lsbits;
594 /* slightly pessimistic size check but faster than "<= bw->words + (bw->bits+msbits+lsbits+FLAC__BITS_PER_WORD-1)/FLAC__BITS_PER_WORD" *
    [all...]
  /hardware/ti/wlan/wl1271/TWD/FirmwareApi/
public_commands.h 491 uint32 bssIdL; /* 32 LSBits of BSSID of the AP to scan for. */
605 uint32 bssIdL; /* This field indicates the 32 LSBits of the MAC*/
    [all...]
  /frameworks/av/media/libstagefright/codecs/amrnb/enc/src/
g_pitch.cpp 268 // clear 2 LSBits
458 /* clear 2 LSBits */
q_gain_p.cpp 258 /* clear 2 LSBits */
  /frameworks/av/media/libstagefright/codecs/amrnb/dec/src/
d_gain_p.cpp 187 /* clear 2 LSBits */
  /external/llvm/docs/
ProgrammersManual.html     [all...]

Completed in 464 milliseconds