Searched defs:bitCount (Results 1 - 25 of 33) sorted by relevance

12

/external/dexmaker/src/dx/java/com/android/dx/util/
H A DBits.java131 public static int bitCount(int[] bits) { method in class:Bits
136 count += Integer.bitCount(bits[i]);
/external/guava/guava/src/com/google/common/hash/
H A DBloomFilterStrategies.java142 long bitCount; field in class:BloomFilterStrategies.BitArray
152 long bitCount = 0;
154 bitCount += Long.bitCount(value);
156 this.bitCount = bitCount;
163 bitCount++;
179 long bitCount() { method in class:BloomFilterStrategies.BitArray
180 return bitCount;
191 bitCount
[all...]
/external/jmonkeyengine/engine/src/android/com/jme3/util/
H A DFastInteger.java200 return bitCount(~i);
213 return bitCount((i & -i) - 1);
225 public static int bitCount(int i) { method in class:FastInteger
/external/sonivox/arm-wt-22k/lib_src/
H A Deas_otadata.h53 EAS_U8 bitCount; /* bit count in char */ member in struct:__anon16361
/external/aac/libSBRdec/src/
H A Dpsbitdec.cpp108 UCHAR bitCount = 0; local
112 bitCount++;
116 *length = bitCount;
/external/pdfium/xfa/src/fxbarcode/pdf417/
H A DBC_PDF417CodewordDecoder.cpp62 CFX_Int32Array* bitCount = new CFX_Int32Array(); local
63 bitCount->SetSize(CBC_PDF417Common::BARS_IN_MODULE);
74 bitCount->SetAt(bitCountIndex, bitCount->GetAt(bitCountIndex) + 1);
76 return bitCount;
/external/skia/include/utils/
H A DSkRandom.h71 at most bitCount bits.
72 @param bitCount The maximum number of bits to be returned
74 uint32_t nextBits(unsigned bitCount) { argument
75 SkASSERT(bitCount > 0 && bitCount <= 32);
76 return this->nextU() >> (32 - bitCount);
/external/aac/libAACenc/src/
H A Dbit_cnt.cpp105 output: bitCount for tables 1-11
111 INT *bitCount)
160 bitCount[1]=HI_LTAB(bc1_2);
161 bitCount[2]=LO_LTAB(bc1_2);
162 bitCount[3]=HI_LTAB(bc3_4)+sc;
163 bitCount[4]=LO_LTAB(bc3_4)+sc;
164 bitCount[5]=HI_LTAB(bc5_6);
165 bitCount[6]=LO_LTAB(bc5_6);
166 bitCount[7]=HI_LTAB(bc7_8)+sc;
167 bitCount[
109 FDKaacEnc_count1_2_3_4_5_6_7_8_9_10_11(const SHORT *RESTRICT values, const INT width, INT *bitCount) argument
185 FDKaacEnc_count3_4_5_6_7_8_9_10_11(const SHORT *RESTRICT values, const INT width, INT *bitCount) argument
256 FDKaacEnc_count5_6_7_8_9_10_11(const SHORT *RESTRICT values, const INT width, INT *bitCount) argument
311 FDKaacEnc_count7_8_9_10_11(const SHORT *RESTRICT values, const INT width, INT *bitCount) argument
361 FDKaacEnc_count9_10_11(const SHORT *RESTRICT values, const INT width, INT *bitCount) argument
408 FDKaacEnc_count11(const SHORT *RESTRICT values, const INT width, INT *bitCount) argument
449 FDKaacEnc_countEsc(const SHORT *RESTRICT values, const INT width, INT *RESTRICT bitCount) argument
519 FDKaacEnc_bitCount(const SHORT *values, const INT width, INT maxVal, INT *bitCount) argument
[all...]
/external/skia/src/images/
H A DSkImageDecoder_libico.cpp45 //helpers - my function pointer will call one of these, depending on the bitCount, each time through the inner loop
63 static int calculateRowBytesFor8888(int w, int bitCount) argument
69 if (4 == bitCount && (w & 0x1)) {
171 int bitCount = read2Bytes(buf, offset+14); local
176 switch (bitCount)
199 SkDEBUGF(("Decoding %ibpp is unimplemented\n", bitCount));
234 int bitWidth = w*bitCount;
238 int lineWidth = lineBitWidth/bitCount;
242 int andOffset = xorOffset + ((lineWidth*h*bitCount) >> 3);
253 bm->setInfo(SkImageInfo::MakeN32Premul(w, h), calculateRowBytesFor8888(w, bitCount));
[all...]
/external/freetype/src/cff/
H A Dcf2hints.h78 size_t bitCount; member in struct:CF2_HintMaskRec_
H A Dcf2hints.c759 size_t bitCount, i; local
796 bitCount = cf2_arrstack_size( hStemHintArray );
799 if ( bitCount > hintMask->bitCount )
822 for ( i = 0, maskByte = 0x80; i < bitCount; i++ )
923 for ( i = 0, maskByte = 0x80; i < bitCount; i++ )
/external/pdfium/third_party/freetype/src/cff/
H A Dcf2hints.h78 size_t bitCount; member in struct:CF2_HintMaskRec_
H A Dcf2hints.c758 size_t bitCount, i; local
795 bitCount = cf2_arrstack_size( hStemHintArray );
798 if ( bitCount > hintMask->bitCount )
821 for ( i = 0, maskByte = 0x80; i < bitCount; i++ )
922 for ( i = 0, maskByte = 0x80; i < bitCount; i++ )
/external/skia/src/ports/
H A DSkScalerContext_win_dw.cpp569 int bitCount = width & 7; local
587 if (bitCount > 0) {
590 for (int i = 0; i < bitCount; i++) {
596 src += bitCount;
H A DSkFontHost_win.cpp1150 int bitCount = width & 7; local
1172 if (bitCount > 0) {
1175 for (int i = 0; i < bitCount; i++) {
1189 *last |= bitCount == 0 ? 1 : 1 << (8 - bitCount);
1284 int bitCount = width & 7; local
1288 *last |= bitCount == 0 ? 1 : 1 << (8 - bitCount);
/external/clang/lib/CodeGen/
H A DCGObjCGNU.cpp2000 int bitCount = bits.size(); local
2002 if (bitCount < ptrBits) {
2004 for (int i=0 ; i<bitCount ; ++i) {
2011 while (v < bitCount) {
2013 for (int i=0 ; (i<32) && (v<bitCount) ; ++i) {
/external/lzma/C/
H A DLzmaEnc.c617 UInt32 bitCount = 0; local
622 bitCount <<= 1;
626 bitCount++;
629 ProbPrices[i >> kNumMoveReducingBits] = ((kNumBitModelTotalBits << kCyclesBits) - 15 - bitCount);
/external/skia/src/core/
H A DSkPaint.cpp1829 static void ASSERT_FITS_IN(uint32_t value, int bitCount) { argument
1830 SkASSERT(bitCount > 0 && bitCount <= 32);
1832 mask >>= (32 - bitCount);
/external/v8/benchmarks/
H A Dcrypto.js1318 BigInteger.prototype.bitCount = bnBitCount;
/external/zxing/core/
H A Dcore.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/zxing/ com/google/zxing/oned/ ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.equinox.p2.publisher_1.1.2.v20100824-2220.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.swt.gtk.linux.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.swt.win32.win32.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.pde.build_3.6.1.R36x_v20100823/
H A Dpdebuild.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/eclipse/ org/eclipse/pde/ org/eclipse/pde/build/ ...
/external/guice/lib/
H A Dguava-16.0.1.jarMETA-INF/MANIFEST.MF META-INF/ META-INF/maven/ META-INF/maven/com. ...

Completed in 1384 milliseconds

12