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

  /external/llvm/include/llvm/Bitcode/
BitstreamReader.h 382 unsigned BitsLeft = NumBits-BitsInCurWord;
384 // Be careful here, BitsLeft is in the range [1..32]/[1..64] inclusive.
385 R |= uint32_t((CurWord & (word_t(~0ULL) >> (sizeof(word_t)*8-BitsLeft)))
388 // BitsLeft bits have just been used up from CurWord. BitsLeft is in the
390 if (BitsLeft != sizeof(word_t)*8)
391 CurWord >>= BitsLeft;
394 BitsInCurWord = sizeof(word_t)*8-BitsLeft;
  /external/llvm/utils/TableGen/
AsmWriterEmitter.cpp 367 unsigned BitsLeft = 64-AsmStrBits;
386 if (NumBits > BitsLeft) {
395 OpcodeInfo[i] |= (uint64_t)InstIdxs[i] << (64-BitsLeft);
397 BitsLeft -= NumBits;
427 if (BitsLeft < 32) {
431 << ((BitsLeft < 16) ? "32" : (BitsLeft < 24) ? "16" : "8")
450 if (BitsLeft < 32) {
464 BitsLeft = 64-AsmStrBits;
471 assert(NumBits <= BitsLeft && "consistency error")
    [all...]
  /external/sonivox/arm-fm-22k/lib_src/
eas_ota.c 992 EAS_I32 bitsLeft;
998 bitsLeft = pData->current.bitCount - numBits;
1001 if (bitsLeft < 0)
1006 value = pData->current.dataByte << -bitsLeft;
1011 bitsLeft += 8;
1015 if (bitsLeft > 0)
1017 value |= pData->current.dataByte >> bitsLeft;
1018 pData->current.bitCount = (EAS_U8) bitsLeft;
1019 pData->current.dataByte = pData->current.dataByte & (0xff >> (8 - bitsLeft));
    [all...]
  /external/sonivox/arm-hybrid-22k/lib_src/
eas_ota.c 992 EAS_I32 bitsLeft;
998 bitsLeft = pData->current.bitCount - numBits;
1001 if (bitsLeft < 0)
1006 value = pData->current.dataByte << -bitsLeft;
1011 bitsLeft += 8;
1015 if (bitsLeft > 0)
1017 value |= pData->current.dataByte >> bitsLeft;
1018 pData->current.bitCount = (EAS_U8) bitsLeft;
1019 pData->current.dataByte = pData->current.dataByte & (0xff >> (8 - bitsLeft));
    [all...]
  /external/sonivox/arm-wt-22k/lib_src/
eas_ota.c 992 EAS_I32 bitsLeft;
998 bitsLeft = pData->current.bitCount - numBits;
1001 if (bitsLeft < 0)
1006 value = pData->current.dataByte << -bitsLeft;
1011 bitsLeft += 8;
1015 if (bitsLeft > 0)
1017 value |= pData->current.dataByte >> bitsLeft;
1018 pData->current.bitCount = (EAS_U8) bitsLeft;
1019 pData->current.dataByte = pData->current.dataByte & (0xff >> (8 - bitsLeft));
    [all...]
  /external/zxing/core/
core.jar 

Completed in 547 milliseconds