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

  /external/chromium_org/third_party/smhasher/src/
DifferentialTest.h 104 void DiffTestRecurse ( pfHash hash, keytype & k1, keytype & k2, hashtype & h1, hashtype & h2, int start, int bitsleft, std::vector<keytype> & diffs )
111 bitsleft--;
120 if(bitsleft)
122 DiffTestRecurse(hash,k1,k2,h1,h2,i+1,bitsleft,diffs);
126 bitsleft++;
KeysetTest.h 136 void SparseKeygenRecurse ( pfHash hash, int start, int bitsleft, bool inclusive, keytype & k, std::vector<hashtype> & hashes )
147 if(inclusive || (bitsleft == 1))
153 if(bitsleft > 1)
155 SparseKeygenRecurse(hash,i+1,bitsleft-1,inclusive,k,hashes);
  /external/llvm/include/llvm/Bitcode/
BitstreamReader.h 381 unsigned BitsLeft = NumBits-BitsInCurWord;
383 // Be careful here, BitsLeft is in the range [1..32]/[1..64] inclusive.
384 R |= uint32_t((CurWord & (word_t(~0ULL) >> (sizeof(word_t)*8-BitsLeft)))
387 // BitsLeft bits have just been used up from CurWord. BitsLeft is in the
389 if (BitsLeft != sizeof(word_t)*8)
390 CurWord >>= BitsLeft;
393 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 310 milliseconds