HomeSort by relevance Sort by last modified time
    Searched defs:nbits (Results 1 - 25 of 41) sorted by null

1 2

  /external/aac/libAACdec/src/
channelinfo.cpp 104 int nbits; local
107 nbits = 6;
110 nbits = 4;
113 pIcsInfo->MaxSfBands = (UCHAR) FDKreadBits(bs, nbits);
block.cpp 292 const int nbits = (IsLongBlock(&pAacDecoderChannelInfo->icsInfo) == 1) ? 5 : 3; local
294 int sect_esc_val = (1 << nbits) - 1 ;
309 sect_len_incr = FDKreadBits(bs, nbits);
313 sect_len_incr = FDKreadBits(bs, nbits);
  /external/webrtc/src/common_audio/signal_processing/
get_scaling_square.c 22 int nbits = WebRtcSpl_GetSizeInBits(times); local
42 return (t > nbits) ? 0 : nbits - t;
auto_correlation.c 53 int nbits = WebRtcSpl_GetSizeInBits(in_vector_length); // # of bits in the sum loop local
56 if (t > nbits)
61 scaling = nbits - t;
  /external/openssh/
kexgexc.c 58 int min, max, nbits; local
61 nbits = dh_estimate(kex->we_need * 8);
66 packet_put_int(nbits);
70 debug("SSH2_MSG_KEX_DH_GEX_REQUEST_OLD(%u) sent", nbits);
77 packet_put_int(nbits);
81 min, nbits, max);
84 fprintf(stderr, "\nmin = %d, nbits = %d, max = %d\n",
85 min, nbits, max);
179 min, nbits, max,
kexgexs.c 61 int omin = -1, min = -1, omax = -1, max = -1, onbits = -1, nbits = -1; local
81 onbits = nbits = packet_get_int();
85 nbits = MAX(DH_GRP_MIN, nbits);
86 nbits = MIN(DH_GRP_MAX, nbits);
90 onbits = nbits = packet_get_int();
105 dh = PRIVSEP(choose_dh(min, nbits, max));
umac.c 673 int nh_len, nbits; local
688 nbits = (hc->bytes_hashed << 3);
689 ((UINT64 *)result)[0] = ((UINT64 *)hc->state)[0] + nbits;
691 ((UINT64 *)result)[1] = ((UINT64 *)hc->state)[1] + nbits;
694 ((UINT64 *)result)[2] = ((UINT64 *)hc->state)[2] + nbits;
697 ((UINT64 *)result)[3] = ((UINT64 *)hc->state)[3] + nbits;
711 UINT32 nbits; local
714 nbits = (unpadded_len << 3);
716 ((UINT64 *)result)[0] = nbits;
718 ((UINT64 *)result)[1] = nbits;
    [all...]
  /frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
packet_util.cpp 36 int nbits = video->nBitsForMBID; local
55 *next_MB = (int) BitstreamReadBits16(stream, nbits);
  /external/openssl/crypto/dsa/
dsa_pmeth.c 72 int nbits; /* size of p in bits (default: 1024) */ member in struct:__anon9950
87 dctx->nbits = 1024;
106 dctx->nbits = sctx->nbits;
167 dctx->nbits = p1;
222 int nbits; local
223 nbits = atoi(value);
224 return EVP_PKEY_CTX_set_dsa_paramgen_bits(ctx, nbits);
257 ret = dsa_builtin_paramgen(dsa, dctx->nbits, dctx->qbits, dctx->pmd,
  /external/e2fsprogs/lib/ext2fs/
rw_bitmaps.c 35 unsigned int nbits; local
84 nbits = ((fs->super->s_blocks_count
87 if (nbits)
88 for (j = nbits; j < fs->blocksize * 8; j++)
  /external/openssl/crypto/rsa/
rsa_pmeth.c 80 int nbits; member in struct:__anon10094
102 rctx->nbits = 1024;
125 dctx->nbits = sctx->nbits;
530 rctx->nbits = p1;
636 int nbits; local
637 nbits = atoi(value);
638 return EVP_PKEY_CTX_set_rsa_keygen_bits(ctx, nbits);
678 ret = RSA_generate_key_ex(rsa, rctx->nbits, rctx->pub_exp, pcb);
  /external/aac/libMpegTPEnc/src/
tpenc_lib.cpp 499 INT nbits = 0, nPceBits = 0; local
510 nbits = 0; /* Do not consider the ADIF header into the total bitrate */
513 nbits = adtsWrite_GetHeaderBits(&hTp->writer.adts);
518 nbits = transportEnc_LatmCountTotalBitDemandHeader( &hTp->writer.latm, auBits );
521 nbits = 0;
526 nbits += nPceBits;
528 return nbits;
  /external/jpeg/
jcphuff.c 298 unsigned int nbits)
303 while (nbits > 0) {
306 nbits--;
318 register int temp, nbits; local
322 nbits = 0;
324 nbits++;
326 if (nbits > 14)
329 emit_symbol(entropy, entropy->ac_tbl_no, nbits << 4);
330 if (nbits)
331 emit_bits(entropy, entropy->EOBRUN, nbits);
381 register int nbits; local
468 register int nbits; local
    [all...]
jchuff.c 357 register int nbits; local
372 nbits = 0;
374 nbits++;
380 if (nbits > MAX_COEF_BITS+1)
384 if (! emit_bits(state, dctbl->ehufco[nbits], dctbl->ehufsi[nbits]))
389 if (nbits) /* emit_bits rejects calls with size 0 */
390 if (! emit_bits(state, (unsigned int) temp2, nbits))
416 nbits = 1; /* there must be at least one 1 bit */
418 nbits++
576 register int nbits; local
    [all...]
  /external/qemu/distrib/jpeg-6b/
jcphuff.c 298 unsigned int nbits)
303 while (nbits > 0) {
306 nbits--;
318 register int temp, nbits; local
322 nbits = 0;
324 nbits++;
326 if (nbits > 14)
329 emit_symbol(entropy, entropy->ac_tbl_no, nbits << 4);
330 if (nbits)
331 emit_bits(entropy, entropy->EOBRUN, nbits);
381 register int nbits; local
468 register int nbits; local
    [all...]
jchuff.c 357 register int nbits; local
372 nbits = 0;
374 nbits++;
380 if (nbits > MAX_COEF_BITS+1)
384 if (! emit_bits(state, dctbl->ehufco[nbits], dctbl->ehufsi[nbits]))
389 if (nbits) /* emit_bits rejects calls with size 0 */
390 if (! emit_bits(state, (unsigned int) temp2, nbits))
416 nbits = 1; /* there must be at least one 1 bit */
418 nbits++
576 register int nbits; local
    [all...]
  /external/skia/src/core/
Sk64.cpp 240 int nbits = SkCLZ(hi); local
242 bits = 32 + dbits - nbits;
250 shift_left_bits(hi, lo, nbits - 1);
SkMath.cpp 270 int nbits = SkCLZ(numer) - 1; local
272 int bits = shift_bias - nbits + dbits;
282 numer <<= nbits; local
  /external/freetype/src/sfnt/
ttsbit0.c 516 FT_Int bit_height, bit_width, pitch, width, height, h, nbits; local
559 nbits = 0;
575 nbits = x_pos;
577 else if ( nbits < w )
581 nbits += 8 - w;
586 nbits -= w;
589 *write++ |= ( ( rval >> nbits ) & 0xFF ) &
600 *write++ |= ( rval >> nbits ) & 0xFF;
608 if ( nbits < w )
612 *write |= ( ( rval >> nbits ) & 0xFF ) & ( 0xFF00U >> w )
    [all...]
  /libcore/luni/src/main/java/java/util/concurrent/
Exchanger.java 361 * with "nbits", the ceiling power of two of table size (looked up
363 * retried after rotating the hash by nbits bits, while forcing new
377 int nbits = (((0xfffffc00 >> m) & 4) | // Compute ceil(log2(m+1)) local
381 while ((index = hash & ((1 << nbits) - 1)) > m) // May retry on
382 hash = (hash >>> nbits) | (hash << (33 - nbits)); // non-power-2 m
  /external/dbus/dbus/
dbus-md5.c 335 dbus_uint32_t nbits = (dbus_uint32_t)(nbytes << 3); local
342 context->count[0] += nbits;
343 if (context->count[0] < nbits)
  /external/chromium/base/third_party/dmg_fp/
dtoa.cc 350 #define Nbits 53
407 #define Nbits 56
436 #define Nbits 56
1743 int big, denorm, esign, havedig, k, n, nbits, up, zret; variable
    [all...]
  /external/elfutils/libcpu/
i386_parse.c 2880 int nbits = 0; local
    [all...]
  /external/v8/benchmarks/
crypto.js 301 function nbits(x) { function
315 return BI_DB*(this.t-1)+nbits(this_array[this.t-1]^(this.s&BI_DM));
464 var nsh = BI_DB-nbits(pm_array[pm.t-1]); // normalize modulus
623 var r = nbi(), r2 = nbi(), g = z.convert(this), i = nbits(e)-1;
1128 i = nbits(e_array[j])-1;
    [all...]
  /external/webkit/PerformanceTests/SunSpider/tests/v8-v4/
v8-crypto.js 293 function nbits(x) { function
307 return BI_DB*(this.t-1)+nbits(this_array[this.t-1]^(this.s&BI_DM));
456 var nsh = BI_DB-nbits(pm_array[pm.t-1]); // normalize modulus
615 var r = nbi(), r2 = nbi(), g = z.convert(this), i = nbits(e)-1;
1120 i = nbits(e_array[j])-1;
    [all...]

Completed in 863 milliseconds

1 2