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

123

/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/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/
H A DSecureRandom2Test.java165 assertEquals(numBits, Integer.bitCount(random));
169 assertEquals(numBits, Integer.bitCount(random));
173 assertEquals(32, Integer.bitCount(random));
177 assertEquals(0, Integer.bitCount(random));
/external/chromium_org/third_party/freetype/src/cff/
H A Dcf2intrp.h64 size_t bitCount );
H A Dcf2intrp.c110 size_t bitCount )
112 if ( bitCount > CF2_MAX_HINTS )
119 hintmask->bitCount = bitCount;
120 hintmask->byteCount = ( hintmask->bitCount + 7 ) / 8;
125 return bitCount;
134 size_t bitCount )
142 CF2_UInt mask = ( 1 << ( -(CF2_Int)bitCount & 7 ) ) - 1;
147 if ( cf2_hintmask_setCounts( hintmask, bitCount ) == 0 )
165 /* bitCount
[all...]
H A Dcf2hints.h78 size_t bitCount; member in struct:CF2_HintMaskRec_
/external/freetype/src/cff/
H A Dcf2intrp.h64 size_t bitCount );
H A Dcf2intrp.c110 size_t bitCount )
112 if ( bitCount > CF2_MAX_HINTS )
119 hintmask->bitCount = bitCount;
120 hintmask->byteCount = ( hintmask->bitCount + 7 ) / 8;
125 return bitCount;
134 size_t bitCount )
142 CF2_UInt mask = ( 1 << ( -(CF2_Int)bitCount & 7 ) ) - 1;
147 if ( cf2_hintmask_setCounts( hintmask, bitCount ) == 0 )
165 /* bitCount
[all...]
H A Dcf2hints.h78 size_t bitCount; member in struct:CF2_HintMaskRec_
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/cff/
H A Dcf2intrp.h64 size_t bitCount );
H A Dcf2intrp.c110 size_t bitCount )
112 if ( bitCount > CF2_MAX_HINTS )
119 hintmask->bitCount = bitCount;
120 hintmask->byteCount = ( hintmask->bitCount + 7 ) / 8;
125 return bitCount;
134 size_t bitCount )
142 CF2_UInt mask = ( 1 << ( -(CF2_Int)bitCount & 7 ) ) - 1;
147 if ( cf2_hintmask_setCounts( hintmask, bitCount ) == 0 )
165 /* bitCount
[all...]
/external/sonivox/arm-fm-22k/lib_src/
H A Deas_otadata.h53 EAS_U8 bitCount; /* bit count in char */ member in struct:__anon30866
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:__anon30916
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:__anon30968
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/chromium_org/third_party/skia/include/utils/
H A DSkRandom.h56 at most bitCount bits.
57 @param bitCount The maximum number of bits to be returned
59 uint32_t nextBits(unsigned bitCount) { argument
60 SkASSERT(bitCount > 0 && bitCount <= 32);
61 return this->nextU() >> (32 - bitCount);
210 at most bitCount bits.
211 @param bitCount The maximum number of bits to be returned
213 uint32_t nextBits(unsigned bitCount) { argument
214 SkASSERT(bitCount >
[all...]
/external/skia/include/utils/
H A DSkRandom.h56 at most bitCount bits.
57 @param bitCount The maximum number of bits to be returned
59 uint32_t nextBits(unsigned bitCount) { argument
60 SkASSERT(bitCount > 0 && bitCount <= 32);
61 return this->nextU() >> (32 - bitCount);
210 at most bitCount bits.
211 @param bitCount The maximum number of bits to be returned
213 uint32_t nextBits(unsigned bitCount) { argument
214 SkASSERT(bitCount >
[all...]
/external/chromium_org/third_party/skia/src/images/
H A DSkImageDecoder_libico.cpp44 //helpers - my function pointer will call one of these, depending on the bitCount, each time through the inner loop
62 static int calculateRowBytesFor8888(int w, int bitCount) argument
68 if (4 == bitCount && (w & 0x1)) {
112 int bitCount = read2Bytes(buf, offset+14); local
116 switch (bitCount)
131 SkDEBUGF(("Image with %ibpp not supported\n", bitCount));
183 int bitCount = read2Bytes(buf, offset+14); local
188 switch (bitCount)
211 SkDEBUGF(("Decoding %ibpp is unimplemented\n", bitCount));
240 int bitWidth = w*bitCount;
[all...]
/external/skia/src/images/
H A DSkImageDecoder_libico.cpp44 //helpers - my function pointer will call one of these, depending on the bitCount, each time through the inner loop
62 static int calculateRowBytesFor8888(int w, int bitCount) argument
68 if (4 == bitCount && (w & 0x1)) {
115 int bitCount = read2Bytes(buf, offset+14); local
119 switch (bitCount)
134 SkDEBUGF(("Image with %ibpp not supported\n", bitCount));
192 int bitCount = read2Bytes(buf, offset+14); local
197 switch (bitCount)
220 SkDEBUGF(("Decoding %ibpp is unimplemented\n", bitCount));
249 int bitWidth = w*bitCount;
[all...]
/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]);
H A DBitIntSet.java96 return Bits.bitCount(bits);
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DBitVector.h186 static size_t byteCount(size_t bitCount)
188 return (bitCount + 7) >> 3;
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/spdy/
H A DSettings.java128 return Integer.bitCount(set);
/external/aac/libSBRdec/src/
H A Dpsbitdec.cpp108 UCHAR bitCount = 0; local
112 bitCount++;
116 *length = bitCount;

Completed in 5542 milliseconds

123