Searched refs:lbits (Results 1 – 5 of 5) sorted by relevance
| /netbsd/src/external/lgpl3/gmp/dist/mpz/ |
| D | import.c | 104 int lbits, wbits; in mpz_import() local 126 ASSERT (lbits < GMP_NUMB_BITS); \ in mpz_import() 127 ASSERT (limb <= (CNST_LIMB(1) << lbits) - 1); \ in mpz_import() 129 limb |= (mp_limb_t) byte << lbits; \ in mpz_import() 130 lbits += (N); \ in mpz_import() 131 if (lbits >= GMP_NUMB_BITS) \ in mpz_import() 134 lbits -= GMP_NUMB_BITS; \ in mpz_import() 135 ASSERT (lbits < (N)); \ in mpz_import() 136 limb = byte >> ((N) - lbits); \ in mpz_import() 141 lbits = 0; in mpz_import() [all …]
|
| D | export.c | 119 int lbits, wbits; in mpz_export() local 141 if (lbits >= (N)) \ in mpz_export() 145 lbits -= (N); \ in mpz_export() 151 *dp = (limb | (newlimb << lbits)) MASK; \ in mpz_export() 152 limb = newlimb >> ((N)-lbits); \ in mpz_export() 153 lbits += GMP_NUMB_BITS - (N); \ in mpz_export() 158 lbits = 0; in mpz_export()
|
| /netbsd/src/sys/dev/isa/ |
| D | sbdsp.c | 1795 int lmask, rmask, lbits, rbits; in sbdsp_mixer_set_port() local 1987 lbits = sbdsp_mix_read(sc, SB16P_ISWITCH_L) & ~mask; in sbdsp_mixer_set_port() 2003 lbits = lbits | lmask; in sbdsp_mixer_set_port() 2006 sbdsp_mix_write(sc, SB16P_ISWITCH_L, lbits); in sbdsp_mixer_set_port()
|
| /netbsd/src/external/bsd/libarchive/dist/libarchive/ |
| D | archive_read_support_format_rar5.c | 3006 int lbits, length = 2; in decode_code_length() local 3009 lbits = 0; in decode_code_length() 3012 lbits = code / 4 - 1; in decode_code_length() 3013 length += (4 | (code & 3)) << lbits; in decode_code_length() 3016 if(lbits > 0) { in decode_code_length() 3019 if(ARCHIVE_OK != read_consume_bits(a, rar, p, lbits, &add)) in decode_code_length()
|
| /netbsd/src/sys/net/ |
| D | zlib.c | 5107 Byte lbits; /* ltree bits decoded per branch */ member 5124 c->lbits = (Byte)bl; in inflate_codes_new() 5159 r = inflate_fast(c->lbits, c->dbits, c->ltree, c->dtree, s, z); in inflate_codes() 5168 c->sub.code.need = c->lbits; in inflate_codes()
|