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

  /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/openssh/openbsd-compat/
sha2.h 70 u_int64_t bitcount; member in struct:_SHA256_CTX
75 u_int64_t bitcount[2]; member in struct:_SHA512_CTX
  /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 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);
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...]
  /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...]
  /libcore/ojluni/src/main/java/sun/misc/
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/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 3100 uint32_t bitcount = msbit - lsbit + 1; local
    [all...]

Completed in 493 milliseconds