/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/api/ |
armCOMM_BitDec_s.h | 89 GBLS BitCount ;// Register name for BitCount 99 ;// BitCount - is offset (from the top bit) to the next unused bitstream bit 100 ;// 0<=BitCount<=15 (so BitBuffer holds at least 17 unused bits) 116 ;// $RBitCount - register to use for BitCount (can be $pBitOffset) 124 ;// $BitCount / 131 BitCount SETS "$RBitCount" 135 LDR $BitCount, [$pBitOffset] 143 ADD $BitCount, $BitCount, # [all...] |
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/api/ |
armCOMM_BitDec_s.h | 89 GBLS BitCount ;// Register name for BitCount 99 ;// BitCount - is offset (from the top bit) to the next unused bitstream bit 100 ;// 0<=BitCount<=15 (so BitBuffer holds at least 17 unused bits) 116 ;// $RBitCount - register to use for BitCount (can be $pBitOffset) 124 ;// $BitCount / 131 BitCount SETS "$RBitCount" 135 LDR $BitCount, [$pBitOffset] 143 ADD $BitCount, $BitCount, # [all...] |
/frameworks/av/media/libstagefright/codecs/aacenc/src/ |
bit_cnt.c | 38 * output: bitCount for tables 1-11 44 Word16 *bitCount) 94 bitCount[1]=extract_h(bc1_2); 95 bitCount[2]=extract_l(bc1_2); 96 bitCount[3]=extract_h(bc3_4) + sc; 97 bitCount[4]=extract_l(bc3_4) + sc; 98 bitCount[5]=extract_h(bc5_6); 99 bitCount[6]=extract_l(bc5_6); 100 bitCount[7]=extract_h(bc7_8) + sc; 101 bitCount[8]=extract_l(bc7_8) + sc [all...] |
/external/aac/libAACenc/src/ |
bit_cnt.cpp | 105 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[8]=LO_LTAB(bc7_8)+sc [all...] |
/external/guava/guava/src/com/google/common/hash/ |
BloomFilterStrategies.java | 142 long bitCount; 152 long bitCount = 0; 154 bitCount += Long.bitCount(value); 156 this.bitCount = bitCount; 163 bitCount++; 179 long bitCount() { 180 return bitCount; 191 bitCount = 0 [all...] |
/system/bt/embdrv/sbc/decoder/srce/ |
bitalloc.c | 137 OI_UINT bitcount = 0; local 149 bitcount += bits; 175 bitcount += bits; 181 return bitcount; 239 * @param bitcount A starting point for the adjustment 246 const OI_UINT subbands, OI_UINT bitcount, 249 OI_INT bitadjust = (bitcount > bitpool) ? -8 : 8; 255 while ((bitcount != bitpool) && chop) { 285 bitcount = count; 290 *excess = bitpool - bitcount; 369 OI_UINT bitcount; local [all...] |
bitalloc-sbc.c | 54 OI_UINT bitcount; local 59 bitcount = computeBitneed(common, &bitneeds.uint8[0], 0, &bitpoolPreference); 60 bitcount += computeBitneed(common, &bitneeds.uint8[nrof_subbands], 1, 66 2 * nrof_subbands, bitcount, &ex);
|
/external/tremolo/Tremolo/ |
bitwise.c | 391 long i,bitcount=0; local 414 bitcount+=tbit; 416 if(bitcount!=oggpack_bits(&r)) 418 if((bitcount+7)/8!=oggpack_bytes(&r)) 422 if(oggpack_bytes(&r)!=(bitcount+7)/8){ 423 fprintf(stderr, "%d vs %d\n", oggpack_bytes(&r), (bitcount+7)/8); 441 report("\nERROR: read to but not past exact end reported bad bitcount.\n"); 447 report("\nERROR: read past exact end reported bad bitcount.\n"); 454 report("\nERROR: read past exact end reported bad bitcount.\n"); 475 report("\nERROR: read to but not past exact end reported bad bitcount.\n") 691 long j,count=0,count2=0,bitcount=0; local 760 int bitoffset,bitcount=0; local [all...] |
/external/vulkan-validation-layers/libs/glm/detail/ |
func_integer.inl | 428 // bitCount 430 GLM_FUNC_QUALIFIER int bitCount(genIUType const & Value) 432 GLM_STATIC_ASSERT(std::numeric_limits<genIUType>::is_integer, "'bitCount' only accept integer values"); 444 GLM_FUNC_QUALIFIER detail::tvec2<int, P> bitCount 450 bitCount(value[0]), 451 bitCount(value[1])); 455 GLM_FUNC_QUALIFIER detail::tvec3<int, P> bitCount 461 bitCount(value[0]), 462 bitCount(value[1]), 463 bitCount(value[2])) [all...] |
/external/skia/include/utils/ |
SkRandom.h | 72 at most bitCount bits. 73 @param bitCount The maximum number of bits to be returned 75 uint32_t nextBits(unsigned bitCount) { 76 SkASSERT(bitCount > 0 && bitCount <= 32); 77 return this->nextU() >> (32 - bitCount);
|
/libcore/luni/src/main/java/java/math/ |
BitLevel.java | 61 /** @see BigInteger#bitCount() */ 62 static int bitCount(BigInteger val) { 73 bCount += Integer.bitCount(val.digits[i]); 77 bCount += Integer.bitCount(-val.digits[i]); 79 bCount += Integer.bitCount(~val.digits[i]); 105 int bitCount = numberOfBits & 31; 111 return ((i != intCount) || (digits[i] << (32 - bitCount) != 0));
|
/libcore/ojluni/src/main/java/sun/misc/ |
FDBigInt.java | 102 int bitcount = c & 0x1f; local 103 int anticount = 32-bitcount; 112 if ( bitcount == 0 ){ 119 t[target--] = (s[src]<<bitcount) | (s[--src]>>>anticount); 121 t[target--] = s[src]<<bitcount; 149 int bitcount = 0; local 173 for( bitcount = 32 ; (v & 0xf0000000) != 0 ; bitcount-- ) 179 bitcount += 8; 183 bitcount += 1 [all...] |
FDBigInteger.java | 257 int bitcount = p2 & 0x1f; local 258 if (bitcount == 0) { 262 pow5 << bitcount, 263 pow5 >>> (32 - bitcount) 294 int bitcount = p2 & 0x1f; local 304 if (bitcount == 0) { 308 v0 << bitcount, 309 (v1 << bitcount) | (v0 >>> (32 - bitcount)), 310 (v2 << bitcount) | (v1 >>> (32 - bitcount)) 354 int bitcount = p2 & 0x1f; local 462 int bitcount = shift & 0x1f; local 994 int bitcount = p2 & 0x1f; local [all...] |
/external/libvncserver/webclients/novnc/include/ |
jsunzip.js | 224 this.bitcount = 0; 340 if (!d.bitcount--) 344 d.bitcount = 7; 355 function read_bits_direct(source, bitcount, tag, idx, num) 358 while (bitcount < 24) { 359 tag = tag | (source[idx++] & 0xff) << bitcount; 360 bitcount += 8; 364 bitcount -= num; 365 return [bitcount, tag, idx, val]; 372 var ret = read_bits_direct(d.source, d.bitcount, d.tag, d.sourceIndex, num) [all...] |
/art/test/564-checker-bitcount/src/ |
Main.java | 29 return Integer.bitCount(x ? 1 : 0); 37 return Integer.bitCount(x); 45 return Integer.bitCount(x); 53 return Integer.bitCount(x); 61 return Integer.bitCount(x); 69 return Long.bitCount(x);
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/ |
IntegerTest.java | [all...] |
LongTest.java | [all...] |
/external/pdfium/core/fxcodec/lbmp/ |
fx_bmp.h | 14 #define BMP_WIDTHBYTES(width, bitCount) ((width * bitCount) + 31) / 32 * 4
|
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/ |
combined_encode.cpp | 285 Int byteCount = 0, byteCount1 = 0, bitCount = 0; 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); /* rewind one MB * [all...] |
/external/ipsec-tools/src/racoon/missing/crypto/sha2/ |
sha2.h | 92 uint64_t bitcount; 97 uint64_t bitcount[2]; 105 u_int64_t bitcount; member in struct:_SHA256_CTX 110 u_int64_t bitcount[2]; member in struct:_SHA512_CTX
|
sha2.c | 340 context->bitcount = 0; 529 usedspace = (context->bitcount >> 3) % SHA256_BLOCK_LENGTH; 537 context->bitcount += freespace << 3; 544 context->bitcount += len << 3; 553 context->bitcount += SHA256_BLOCK_LENGTH << 3; 560 context->bitcount += len << 3; 575 usedspace = (context->bitcount >> 3) % SHA256_BLOCK_LENGTH; 578 REVERSE64(context->bitcount,context->bitcount); 605 *(sha2_word64*)&context->buffer[SHA256_SHORT_BLOCK_LENGTH] = context->bitcount; [all...] |
/external/lzma/Java/Tukaani/src/org/tukaani/xz/rangecoder/ |
RangeEncoder.java | 40 int bitCount = 0; 44 bitCount <<= 1; 48 ++bitCount; 54 - 15 - bitCount;
|
/libcore/benchmarks/src/benchmarks/regression/ |
IntegerBenchmark.java | 64 // delegate to Integer.bitCount(i); consider using native code 83 int count = Integer.bitCount((int) (l & 0xffffffffL)); 84 count += Integer.bitCount((int) (l >>> 32)); 91 t += Long.bitCount((long) i);
|
/external/openssh/openbsd-compat/ |
sha2.c | 294 context->bitcount = 0; 464 usedspace = (context->bitcount >> 3) % SHA256_BLOCK_LENGTH; 472 context->bitcount += freespace << 3; 479 context->bitcount += len << 3; 488 context->bitcount += SHA256_BLOCK_LENGTH << 3; 495 context->bitcount += len << 3; 506 usedspace = (context->bitcount >> 3) % SHA256_BLOCK_LENGTH; 535 context->bitcount); 574 context->bitcount[0] = context->bitcount[1] = 0 [all...] |
/prebuilts/go/darwin-x86/src/compress/flate/ |
huffman_code.go | 20 bitCount [17]int32 233 bitCount := h.bitCount[:maxBits+1] 239 bitCount[bits] = counts[level] - counts[level-1] 242 return bitCount 247 func (h *huffmanEncoder) assignEncodingAndSize(bitCount []int32, list []literalNode) { 249 for n, bits := range bitCount { 308 bitCount := h.bitCounts(list, maxBits) 310 h.assignEncodingAndSize(bitCount, list)
|