HomeSort by relevance Sort by last modified time
    Searched defs:bitcount (Results 1 - 12 of 12) sorted by null

  /external/ltrace/
bits.c 28 bitcount(uint64_t u) function
  /external/tinyalsa/
tinypcminfo.c 151 const unsigned bitcount = sizeof(m->bits[0]) * 8; local
159 for (j = 0; j < bitcount; ++j) {
163 name = pcm_get_format_name(j + k*bitcount);
  /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
  /system/bt/embdrv/sbc/decoder/srce/
bitalloc-sbc.c 55 OI_UINT bitcount; local
60 bitcount = computeBitneed(common, &bitneeds.uint8[0], 0, &bitpoolPreference);
61 bitcount += computeBitneed(common, &bitneeds.uint8[nrof_subbands], 1, &bitpoolPreference);
65 bitadjust = adjustToFitBitpool(common->frameInfo.bitpool, bitneeds.uint32, 2 * nrof_subbands, bitcount, &ex);
bitalloc.c 140 OI_UINT bitcount = 0; local
151 bitcount += bits;
176 bitcount += bits;
182 return bitcount;
240 * @param bitcount A starting point for the adjustment
249 OI_UINT bitcount,
253 OI_INT bitadjust = (bitcount > bitpool) ? -8 : 8;
259 while ((bitcount != bitpool) && chop) {
289 bitcount = count;
294 *excess = bitpool - bitcount;
382 OI_UINT bitcount; local
    [all...]
  /external/avahi/avahi-core/
iface-pfroute.c 49 static int bitcount (unsigned int n) function
170 prefixlen = bitcount((unsigned int)((struct sockaddr_in *)sa)->sin_addr.s_addr);
182 prefixlen = bitcount((unsigned int)((struct sockaddr_in6 *)sa)->sin6_addr.s6_addr);
411 prefixlen = bitcount((unsigned int) mask.sin_addr.s_addr);
  /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...]
  /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/aac/libAACenc/src/
qc_main.cpp 577 int i, bitcount = 0; local
596 bitcount += minElBits;
600 return bitcount;
    [all...]
  /external/aac/libSBRdec/src/
env_calc.cpp 246 int bitcount = 0; local
276 unsigned int mask = 1 << bitcount;
286 if ((++bitcount == 16) || i==1) {
287 bitcount = 0;
    [all...]
  /hardware/broadcom/wlan/bcmdhd/dhdutil/
bcmutils.c 1978 uint bitcount = 0, i; local
    [all...]
  /external/v8/src/arm/
simulator-arm.cc 2981 uint32_t bitcount = msbit - lsbit + 1; local
    [all...]

Completed in 591 milliseconds