HomeSort by: relevance | last modified time | path
    Searched refs:dbits (Results 1 - 9 of 9) sorted by relevancy

  /src/external/lgpl3/gmp/dist/mpz/
divis_2exp.c 38 unsigned dbits; variable
57 dbits = d % GMP_NUMB_BITS;
58 dmask = (CNST_LIMB(1) << dbits) - 1;
cong_2exp.c 38 unsigned dbits; variable
56 dbits = d % GMP_NUMB_BITS;
57 dmask = (CNST_LIMB(1) << dbits) - 1;
140 if (dbits == 0)
  /src/external/lgpl3/gmp/dist/tests/mpn/
t-hgcd_appr.c 407 mp_bitcnt_t dbits, abits, margin; local
440 dbits = mpz_sizeinbase (t, 2);
441 if (dbits > s*GMP_NUMB_BITS)
492 if (abits < dbits)
510 if (verbose_flag && abits > dbits)
513 (unsigned) dbits, (unsigned) abits,
t-bdiv.c 132 unsigned long maxnbits, maxdbits, nbits, dbits; local
173 dbits = random_word (rands) % nbits + 1;
175 dbits = random_word (rands) % maxdbits + 1;
188 RANDFUNC (d, rands, dbits);
t-div.c 129 unsigned long maxnbits, maxdbits, nbits, dbits; local
174 dbits = (test + 300) % (nbits - 1) + 1;
176 dbits = urandom () % (nbits - 1) % maxdbits + 1;
185 RANDFUNC (d, rands, dbits);
202 RANDFUNC (q, rands, urandom () % (nbits - dbits + 1));
  /src/external/zlib/pigz/dist/zopfli/
squeeze.c 126 int dbits = ZopfliGetDistExtraBits(dist); local
133 return cost + dbits + lbits;
149 int dbits = ZopfliGetDistExtraBits(dist); local
150 return stats->ll_symbols[lsym] + lbits + stats->d_symbols[dsym] + dbits;
  /src/external/mpl/bind/dist/bin/dnssec/
dnssec-keygen.c 101 int dbits; member in struct:keygen_ctx
659 dst_key_setbits(key, ctx->dbits);
940 ctx.dbits = strtol(isc_commandline_argument, &endp, 10);
941 if (*endp != '\0' || ctx.dbits < 0) {
  /src/external/bsd/libarchive/dist/libarchive/
archive_read_support_format_rar5.c 3198 dbits, local
3220 dbits = 0;
3223 dbits = dist_slot / 2 - 1;
3230 (dist_slot & 1)) << dbits;
3233 if(dbits > 0) {
3234 if(dbits >= 4) {
3238 if(dbits > 4) {
3247 skip_bits(rar, dbits - 4);
3249 36 - dbits)) << 4;
3276 /* dbits is one of [0,1,2,3] *
    [all...]
  /src/sys/net/
zlib.c 4492 This results of this trade are in the variables lbits and dbits
4494 length codes can decode in one step, and dbits is the same thing for
4507 about one bit more than those, so lbits is 8+1 and dbits is 5+1.
5108 Byte dbits; /* dtree bits decoder per branch */ member in struct:inflate_codes_state
5125 c->dbits = (Byte)bd;
5159 r = inflate_fast(c->lbits, c->dbits, c->ltree, c->dtree, s, z);
5215 c->sub.code.need = c->dbits;

Completed in 25 milliseconds