Home
last modified time | relevance | path

Searched refs:lbits (Results 1 – 4 of 4) sorted by relevance

/dragonfly/contrib/gmp/mpz/
H A Dimport.c95 int lbits, wbits; in mpz_import() local
117 ASSERT (lbits < GMP_NUMB_BITS); \ in mpz_import()
118 ASSERT (limb <= (CNST_LIMB(1) << lbits) - 1); \ in mpz_import()
120 limb |= (mp_limb_t) byte << lbits; \ in mpz_import()
121 lbits += (N); \ in mpz_import()
122 if (lbits >= GMP_NUMB_BITS) \ in mpz_import()
125 lbits -= GMP_NUMB_BITS; \ in mpz_import()
126 ASSERT (lbits < (N)); \ in mpz_import()
132 lbits = 0; in mpz_import()
150 if (lbits != 0) in mpz_import()
[all …]
H A Dexport.c122 int lbits, wbits; in mpz_export() local
144 if (lbits >= (N)) \ in mpz_export()
148 lbits -= (N); \ in mpz_export()
154 *dp = (limb | (newlimb << lbits)) MASK; \ in mpz_export()
155 limb = newlimb >> ((N)-lbits); \ in mpz_export()
156 lbits += GMP_NUMB_BITS - (N); \ in mpz_export()
161 lbits = 0; in mpz_export()
/dragonfly/contrib/libarchive/libarchive/
H A Darchive_read_support_format_rar5.c2955 int lbits, length = 2; in decode_code_length() local
2958 lbits = 0; in decode_code_length()
2961 lbits = code / 4 - 1; in decode_code_length()
2962 length += (4 | (code & 3)) << lbits; in decode_code_length()
2965 if(lbits > 0) { in decode_code_length()
2968 if(ARCHIVE_OK != read_consume_bits(a, rar, p, lbits, &add)) in decode_code_length()
/dragonfly/sys/net/
H A Dzlib.c4676 Byte lbits; /* ltree bits decoded per branch */ member
4697 c->lbits = (Byte)bl;
4733 r = inflate_fast(c->lbits, c->dbits, c->ltree, c->dtree, s, z);
4742 c->sub.code.need = c->lbits;