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

12

/external/aac/libAACenc/src/
H A Dbit_cnt.cpp117 output: bitCount for tables 1-11
123 INT *RESTRICT bitCount) {
164 bitCount[1] = HI_LTAB(bc1_2);
165 bitCount[2] = LO_LTAB(bc1_2);
166 bitCount[3] = HI_LTAB(bc3_4) + sc;
167 bitCount[4] = LO_LTAB(bc3_4) + sc;
168 bitCount[5] = HI_LTAB(bc5_6);
169 bitCount[6] = LO_LTAB(bc5_6);
170 bitCount[7] = HI_LTAB(bc7_8) + sc;
171 bitCount[
121 FDKaacEnc_count1_2_3_4_5_6_7_8_9_10_11(const SHORT *const values, const INT width, INT *RESTRICT bitCount) argument
187 FDKaacEnc_count3_4_5_6_7_8_9_10_11(const SHORT *const values, const INT width, INT *RESTRICT bitCount) argument
253 FDKaacEnc_count5_6_7_8_9_10_11(const SHORT *const values, const INT width, INT *RESTRICT bitCount) argument
315 FDKaacEnc_count7_8_9_10_11(const SHORT *const values, const INT width, INT *RESTRICT bitCount) argument
375 FDKaacEnc_count9_10_11(const SHORT *const values, const INT width, INT *RESTRICT bitCount) argument
431 FDKaacEnc_count11(const SHORT *const values, const INT width, INT *RESTRICT bitCount) argument
484 FDKaacEnc_countEsc(const SHORT *const values, const INT width, INT *RESTRICT bitCount) argument
543 FDKaacEnc_bitCount(const SHORT *const values, const INT width, const INT maxVal, INT *const RESTRICT bitCount) argument
[all...]
/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...]
H A DBloomFilter.java180 return Math.pow((double) bits.bitCount() / bitSize(), numHashFunctions);
/external/freetype/src/psaux/
H A Dpsintrp.h64 size_t bitCount );
H A Dpsintrp.c109 size_t bitCount )
111 if ( bitCount > CF2_MAX_HINTS )
118 hintmask->bitCount = bitCount;
119 hintmask->byteCount = ( hintmask->bitCount + 7 ) / 8;
124 return bitCount;
133 size_t bitCount )
141 CF2_UInt mask = ( 1 << ( -(CF2_Int)bitCount & 7 ) ) - 1;
146 if ( cf2_hintmask_setCounts( hintmask, bitCount ) == 0 )
164 /* bitCount
[all...]
H A Dpshints.h77 size_t bitCount; member in struct:CF2_HintMaskRec_
H A Dpshints.c820 size_t bitCount, i; local
865 bitCount = cf2_arrstack_size( hStemHintArray );
868 if ( bitCount > hintMask->bitCount )
891 for ( i = 0, maskByte = 0x80; i < bitCount; i++ )
992 for ( i = 0, maskByte = 0x80; i < bitCount; i++ )
/external/skia/include/utils/
H A DSkRandom.h73 at most bitCount bits.
74 @param bitCount The maximum number of bits to be returned
76 uint32_t nextBits(unsigned bitCount) { argument
77 SkASSERT(bitCount > 0 && bitCount <= 32);
78 return this->nextU() >> (32 - bitCount);
/external/skqp/include/utils/
H A DSkRandom.h73 at most bitCount bits.
74 @param bitCount The maximum number of bits to be returned
76 uint32_t nextBits(unsigned bitCount) { argument
77 SkASSERT(bitCount > 0 && bitCount <= 32);
78 return this->nextU() >> (32 - bitCount);
/external/sonivox/arm-wt-22k/lib_src/
H A Deas_otadata.h53 EAS_U8 bitCount; /* bit count in char */ member in struct:__anon21802
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/lzma/Java/Tukaani/src/org/tukaani/xz/rangecoder/
H A DRangeEncoder.java40 int bitCount = 0;
44 bitCount <<= 1;
48 ++bitCount;
54 - 15 - bitCount;
/external/pdfium/core/fxcrt/
H A Dfx_extension.cpp131 int bitCount = bitpos & 0x07; local
132 if (nbits < 8 && nbits + bitCount <= 8) {
133 bitShift = 8 - nbits - bitCount;
138 int bitOffset = 8 - bitCount;
/external/vulkan-validation-layers/libs/glm/detail/
H A Dfunc_integer.hpp163 /// @see <a href="http://www.opengl.org/sdk/docs/manglsl/xhtml/bitCount.xml">GLSL bitCount man page</a>
168 GLM_FUNC_DECL typename genIUType<T>::signed_type bitCount(genIUType<T> const & Value);
/external/pdfium/core/fxcodec/lbmp/
H A Dfx_bmp.h17 #define BMP_WIDTHBYTES(width, bitCount) ((width * bitCount) + 31) / 32 * 4
/external/conscrypt/common/src/main/java/org/conscrypt/
H A DKeyGeneratorImpl.java143 if (Integer.bitCount(keyData[i]) % 2 == 0) {
/external/aac/libSBRdec/src/
H A Dpsbitdec.cpp125 UCHAR bitCount = 0; local
129 bitCount++;
133 *length = bitCount;
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/framed/
H A DSettings.java132 return Integer.bitCount(set);
/external/skia/tests/
H A DPathOpsChalkboardTest.cpp102 int bitCount = samples < 32 ? samples : 64 - samples; local
105 switch (bitCount) {
121 switch (bitCount) {
142 for (int i = 0; i < bitCount; ++i) {
/external/skqp/tests/
H A DPathOpsChalkboardTest.cpp102 int bitCount = samples < 32 ? samples : 64 - samples; local
105 switch (bitCount) {
121 switch (bitCount) {
142 for (int i = 0; i < bitCount; ++i) {
/external/skia/src/ports/
H A DSkScalerContext_win_dw.cpp671 int bitCount = width & 7; local
689 if (bitCount > 0) {
692 for (int i = 0; i < bitCount; i++) {
698 src += bitCount;
H A DSkFontHost_win.cpp1137 int bitCount = width & 7; local
1159 if (bitCount > 0) {
1162 for (int i = 0; i < bitCount; i++) {
1176 *last |= bitCount == 0 ? 1 : 1 << (8 - bitCount);
1271 int bitCount = width & 7; local
1275 *last |= bitCount == 0 ? 1 : 1 << (8 - bitCount);
/external/skqp/src/ports/
H A DSkScalerContext_win_dw.cpp671 int bitCount = width & 7; local
689 if (bitCount > 0) {
692 for (int i = 0; i < bitCount; i++) {
698 src += bitCount;
H A DSkFontHost_win.cpp1137 int bitCount = width & 7; local
1159 if (bitCount > 0) {
1162 for (int i = 0; i < bitCount; i++) {
1176 *last |= bitCount == 0 ? 1 : 1 << (8 - bitCount);
1271 int bitCount = width & 7; local
1275 *last |= bitCount == 0 ? 1 : 1 << (8 - bitCount);
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
H A DWNafUtil.java297 return diff.bitCount();

Completed in 1445 milliseconds

12