HomeSort by relevance Sort by last modified time
    Searched refs:nbits (Results 51 - 75 of 102) sorted by null

1 23 4 5

  /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/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/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...]
  /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/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/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/openssh/
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...]
  /external/elfutils/libcpu/
i386_parse.c 2880 int nbits = 0; local
    [all...]
i386_parse.y 1278 int nbits = 0;
1286 if (++nbits == 8)
1289 byte = mask = nbits = 0;
1297 while (nbits + remaining > 8)
1300 mask << (8 - nbits), byte << (8 - nbits));
1301 remaining = nbits + remaining - 8;
1302 byte = mask = nbits = 0;
1308 nbits += remaining;
1309 if (nbits == 8
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
BitSet.cs 54 * We will often need to do a mod operator (i mod nbits). Its
56 * same as (i & (nbits-1)). Since mod is slow, we use a
83 * <param name="nbits">The size of the bitset in bits</param>
85 public BitSet(int nbits) {
86 _bits = new ulong[((nbits - 1) >> LOG_BITS) + 1];
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
BitSet.cs 56 * We will often need to do a mod operator (i mod nbits). Its
58 * same as (i & (nbits-1)). Since mod is slow, we use a
89 * <param name="nbits">The size of the bitset in bits</param>
91 public BitSet( int nbits )
93 _bits = new ulong[( ( nbits - 1 ) >> LOG_BITS ) + 1];
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
BitSet.java 40 /* We will often need to do a mod operator (i mod nbits). Its
42 * same as (i & (nbits-1)). Since mod is slow, we use a
70 * @param nbits The size of the bitset in bits
72 public BitSet(int nbits) {
73 bits = new long[((nbits - 1) >> LOG_BITS) + 1];
  /external/openssl/crypto/dsa/
dsa.h 267 #define EVP_PKEY_CTX_set_dsa_paramgen_bits(ctx, nbits) \
269 EVP_PKEY_CTRL_DSA_PARAMGEN_BITS, nbits, NULL)
  /external/openssl/include/openssl/
dsa.h 267 #define EVP_PKEY_CTX_set_dsa_paramgen_bits(ctx, nbits) \
269 EVP_PKEY_CTRL_DSA_PARAMGEN_BITS, nbits, NULL)
  /frameworks/av/media/libstagefright/codecs/amrwb/src/
dec_gain2_amr_wb.cpp 48 int16 nbits, (i) : number of bits (6 or 7)
171 int16 nbits, /* (i) : number of bits (6 or 7) */
327 if (nbits == 6)
pvamrwbdecoder_acelp.h 252 int16 nbits, /* (i) : number of bits (6 or 7) */
  /frameworks/av/media/libstagefright/codecs/amrwbenc/src/
q_gain2.c 71 Word16 nbits, /* (i) : number of bits (6 or 7) */
92 if (nbits == 6)
  /external/aac/libAACdec/src/
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);
  /frameworks/av/media/libstagefright/codecs/amrwbenc/inc/
acelp.h 394 Word16 nbits, /* (i) : number of bits (6 or 7) */
406 Word16 nbits, /* (i) : number of bits (6 or 7) */
  /hardware/broadcom/wlan/bcm4329/dhdutil/include/
bcmutils.h 553 #define NBITS(type) (sizeof(type) * 8)
554 #define NBITVAL(nbits) (1 << (nbits))
555 #define MAXBITVAL(nbits) ((1 << (nbits)) - 1)
556 #define NBITMASK(nbits) MAXBITVAL(nbits)
  /hardware/broadcom/wlan/bcmdhd/dhdutil/include/
bcmutils.h 553 #define NBITS(type) (sizeof(type) * 8)
554 #define NBITVAL(nbits) (1 << (nbits))
555 #define MAXBITVAL(nbits) ((1 << (nbits)) - 1)
556 #define NBITMASK(nbits) MAXBITVAL(nbits)
  /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/antlr/antlr-3.4/tool/src/main/java/org/antlr/misc/
BitSet.java 57 /* We will often need to do a mod operator (i mod nbits). Its
59 * same as (i & (nbits-1)). Since mod is slow, we use a
78 * @param nbits The size of the bitset in bits
80 public BitSet(int nbits) {
81 bits = new long[((nbits - 1) >> LOG_BITS) + 1];
  /external/qemu/
mips-dis.c     [all...]

Completed in 544 milliseconds

1 23 4 5