Searched refs:bitCount (Results 1 - 16 of 16) sorted by relevance

/external/skia/include/core/
H A DSkRandom.h51 at most bitCount bits.
52 @param bitCount The maximum number of bits to be returned
54 uint32_t nextBits(unsigned bitCount) { argument
55 SkASSERT(bitCount > 0 && bitCount <= 32);
56 return this->nextU() >> (32 - bitCount);
H A DSk64.h113 /** extract 32bits after shifting right by bitCount.
117 int32_t getShiftRight(unsigned bitCount) const;
/external/sonivox/arm-fm-22k/lib_src/
H A Deas_otadata.h53 EAS_U8 bitCount; /* bit count in char */ member in struct:__anon4854
H A Deas_ota.c858 pData->current.bitCount = 0;
883 pData->current.bitCount = 0;
998 bitsLeft = pData->current.bitCount - numBits;
1004 if (pData->current.bitCount)
1018 pData->current.bitCount = (EAS_U8) bitsLeft;
1026 pData->current.bitCount = 0;
/external/sonivox/arm-hybrid-22k/lib_src/
H A Deas_otadata.h53 EAS_U8 bitCount; /* bit count in char */ member in struct:__anon4904
H A Deas_ota.c858 pData->current.bitCount = 0;
883 pData->current.bitCount = 0;
998 bitsLeft = pData->current.bitCount - numBits;
1004 if (pData->current.bitCount)
1018 pData->current.bitCount = (EAS_U8) bitsLeft;
1026 pData->current.bitCount = 0;
/external/sonivox/arm-wt-22k/lib_src/
H A Deas_otadata.h53 EAS_U8 bitCount; /* bit count in char */ member in struct:__anon4956
H A Deas_ota.c858 pData->current.bitCount = 0;
883 pData->current.bitCount = 0;
998 bitsLeft = pData->current.bitCount - numBits;
1004 if (pData->current.bitCount)
1018 pData->current.bitCount = (EAS_U8) bitsLeft;
1026 pData->current.bitCount = 0;
/external/skia/src/images/
H A DSkImageDecoder_libico.cpp50 //helpers - my function pointer will call one of these, depending on the bitCount, each time through the inner loop
68 static int calculateRowBytesFor8888(int w, int bitCount) argument
74 if (4 == bitCount && (w & 0x1)) {
116 int bitCount = read2Bytes(buf, offset+14); local
120 switch (bitCount)
135 SkDEBUGF(("Image with %ibpp not supported\n", bitCount));
164 int bitCount = read2Bytes(buf, offset+14); local
169 switch (bitCount)
192 SkDEBUGF(("Decoding %ibpp is unimplemented\n", bitCount));
221 int bitWidth = w*bitCount;
[all...]
/external/opencore/codecs_v2/video/m4v_h263/enc/src/
H A Dcombined_encode.cpp285 Int byteCount = 0, byteCount1 = 0, bitCount = 0; local
367 bitCount = BitstreamGetPos(bs1);
368 byteCount1 = byteCount = bitCount >> 3; /* save the position before GOB header */
369 bitCount = bitCount & 0x7;
437 bitCount = BitstreamGetPos(bs1);
438 byteCount = bitCount >> 3; /* save the state before encoding */
439 bitCount = bitCount & 0x7;
469 BitstreamRepos(bs1, byteCount, bitCount); /* rewin
[all...]
H A Dbitstream_io.h44 PV_STATUS BitstreamRepos(BitstreamEncVideo *bitstream, Int byteCount, Int bitCount);
H A Dbitstream_io.cpp573 /* Int byteCount, Int bitCount) */
580 PV_STATUS BitstreamRepos(BitstreamEncVideo *bitstream, Int byteCount, Int bitCount) argument
590 if (bitCount)
592 bitstream->bitLeft = (WORD_SIZE << 3) - bitCount; /* bitCount should be 0-31 */
726 //bitstream1->bitCount += bitstream2->bitCount;
/external/webkit/JavaScriptCore/wtf/
H A DStdLibExtras.h73 inline size_t bitCount(unsigned bits) function in namespace:WTF
/external/webkit/JavaScriptCore/runtime/
H A DCollector.h219 result += WTF::bitCount(bits[i]);
/external/v8/benchmarks/
H A Dcrypto.js1318 BigInteger.prototype.bitCount = bnBitCount;
/external/webkit/SunSpider/tests/v8-v4/
H A Dv8-crypto.js1310 BigInteger.prototype.bitCount = bnBitCount;

Completed in 181 milliseconds