Searched refs:bits (Results 176 - 200 of 785) sorted by relevance

1234567891011>>

/freebsd-9.3-release/sys/ia64/disasm/
H A Ddisasm_decode.c50 asm_decodeA(uint64_t bits, struct asm_bundle *b, int slot) argument
56 switch((int)OPCODE(bits)) {
58 switch (FIELD(bits, 34, 2)) { /* x2a */
60 if (FIELD(bits, 33, 1) == 0) { /* ve */
61 switch (FIELD(bits, 29, 4)) { /* x4 */
63 if (FIELD(bits, 27, 2) <= 1) /* x2b */
68 if (FIELD(bits, 27, 2) <= 1) /* x2b */
73 if (FIELD(bits, 27, 2) == 0) /* x2b */
78 switch (FIELD(bits, 27, 2)) { /* x2b */
98 switch (FIELD(bits, 2
536 uint64_t bits; local
652 uint64_t bits; local
903 uint64_t bits; local
1315 uint64_t bits; local
2474 uint64_t bits; local
[all...]
/freebsd-9.3-release/contrib/libstdc++/config/cpu/ia64/
H A Datomic_word.h33 #include <bits/cxxabi_tweaks.h>
/freebsd-9.3-release/contrib/libstdc++/include/std/
H A Dstd_iostream.h44 #include <bits/c++config.h>
/freebsd-9.3-release/contrib/libstdc++/libsupc++/
H A Dnew_opnt.cc30 #include <bits/c++config.h>
/freebsd-9.3-release/lib/msun/src/
H A De_asinl.c43 if(expt==BIAS && ((u.bits.manh&~LDBL_NBIT)|u.bits.manl)==0)
63 if(u.bits.manh>=THRESH) { /* if |x| is close to 1 */
68 u.bits.manl = 0;
H A Ds_cbrt.c42 uint64_t bits; member in union:__anon5401
54 * Rough cbrt to 5 bits:
62 * ordinary integer divison of the value in bits magically gives
79 * New cbrt to 23 bits:
92 * Round t away from zero to 23 bits (sloppily except for ensuring that
102 u.bits=(u.bits+0x80000000)&0xffffffffc0000000ULL;
105 /* one step Newton iteration to 53 bits with error < 0.667 ulps */
/freebsd-9.3-release/sys/i386/include/xen/
H A Dxenvar.h98 #define BITS_TO_LONGS(bits) \
99 (((bits)+BITS_PER_LONG-1)/BITS_PER_LONG)
100 #define DECLARE_BITMAP(name,bits) \
101 unsigned long name[BITS_TO_LONGS(bits)]
/freebsd-9.3-release/sys/netgraph/
H A Dng_mppc.h61 /* MPPC/MPPE PPP negotiation bits */
62 #define MPPC_BIT 0x00000001 /* mppc compression bits */
66 #define MPPE_BITS 0x000000e0 /* mppe encryption bits */
68 #define MPPC_VALID_BITS 0x010000e1 /* possibly valid bits */
73 u_int32_t bits; /* config bits */ member in struct:ng_mppc_config
/freebsd-9.3-release/contrib/libarchive/libarchive/
H A Darchive_read_support_compression_compress.c111 int section_end_code; /* When to increase bits. */
112 int bits; /* Current code length. */ member in struct:private_data
245 state->bits = 9;
246 state->section_end_code = (1<<state->bits) - 1;
329 code = newcode = getbits(self, state->bits);
346 int skip_bytes = state->bits -
347 (state->bytes_in_section % state->bits);
348 skip_bytes %= state->bits;
357 state->bits = 9;
358 state->section_end_code = (1 << state->bits)
[all...]
/freebsd-9.3-release/contrib/libstdc++/include/ext/
H A Datomicity.h38 #include <bits/c++config.h>
39 #include <bits/gthr.h>
40 #include <bits/atomic_word.h>
/freebsd-9.3-release/crypto/openssl/crypto/dsa/
H A Ddsa_gen.c91 static int dsa_builtin_paramgen(DSA *ret, int bits,
96 int DSA_generate_parameters_ex(DSA *ret, int bits, argument
102 return ret->meth->dsa_paramgen(ret, bits, seed_in, seed_len,
104 return dsa_builtin_paramgen(ret, bits, seed_in, seed_len,
108 static int dsa_builtin_paramgen(DSA *ret, int bits, argument
126 if (bits < 512)
127 bits = 512;
128 bits = (bits + 63) / 64 * 64;
139 * restricted to 160 bits */
[all...]
/freebsd-9.3-release/usr.bin/compress/
H A Dcompress.c74 int bits, cat, ch; local
92 bits = 0;
96 bits = strtol(optarg, &p, 10);
122 (void)compress("/dev/stdin", "/dev/stdout", bits);
125 (void)decompress("/dev/stdin", "/dev/stdout", bits);
138 compress("/dev/stdin", "/dev/stdout", bits);
141 compress(*argv, "/dev/stdout", bits);
159 compress(*argv, newname, bits);
163 decompress("/dev/stdin", "/dev/stdout", bits);
178 cat ? "/dev/stdout" : *argv, bits);
195 compress(const char *in, const char *out, int bits) argument
285 decompress(const char *in, const char *out, int bits) argument
[all...]
/freebsd-9.3-release/crypto/openssl/crypto/bn/
H A Dbn_prime.c134 static int probable_prime(BIGNUM *rnd, int bits);
135 static int probable_prime_dh(BIGNUM *rnd, int bits,
138 static int probable_prime_dh_safe(BIGNUM *rnd, int bits, const BIGNUM *add,
163 int BN_generate_prime_ex(BIGNUM *ret, int bits, int safe, argument
170 int checks = BN_prime_checks_for_size(bits);
180 /* make a random number and set the top and bottom bits */
182 if (!probable_prime(ret, bits))
186 if (!probable_prime_dh_safe(ret, bits, add, rem, ctx))
189 if (!probable_prime_dh(ret, bits, add, rem, ctx))
378 static int probable_prime(BIGNUM *rnd, int bits) argument
410 probable_prime_dh(BIGNUM *rnd, int bits, const BIGNUM *add, const BIGNUM *rem, BN_CTX *ctx) argument
455 probable_prime_dh_safe(BIGNUM *p, int bits, const BIGNUM *padd, const BIGNUM *rem, BN_CTX *ctx) argument
[all...]
/freebsd-9.3-release/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/
H A DHexagonMCInst.cpp128 // Return number of bits in the constant extended operand.
153 unsigned bits = (F >> HexagonII::ExtentBitsPos) local
157 return -1 << (bits - 1);
168 unsigned bits = (F >> HexagonII::ExtentBitsPos) local
172 return ~(-1 << (bits - 1));
174 return ~(-1 << bits);
/freebsd-9.3-release/sys/gnu/fs/xfs/
H A Dxfs_bit.c69 * Count of bits set in byte, 0..8.
144 if (w) { /* lower bits */
146 } else { /* upper bits */
170 * Count the number of bits set in the bitmap starting with bit
174 * bits for that value using the xfs_countbit array, i.e.
181 register int bits; local
186 bits = 0;
204 * Shift off the bits we don't want to look at,
207 bits += xfs_countbit[(*bytep >> byte_bit)];
212 * Count the bits i
[all...]
/freebsd-9.3-release/sys/contrib/octeon-sdk/
H A Dcvmx-helper-jtag.c100 * Write up to 32bits into the QLM jtag chain. Bits are shifted
102 * order bits followed by the high order bits. The JTAG chain for
103 * CN52XX and CN56XX is 4 * 268 bits long, or 1072. The JTAG chain
104 * for CN63XX is 4 * 300 bits long, or 1200.
107 * @param bits Number of bits to shift in (1-32).
111 * @return The low order bits of the JTAG chain that shifted out of the
114 uint32_t cvmx_helper_qlm_jtag_shift(int qlm, int bits, uint32_t data) argument
128 jtgd.s.shft_cnt = bits
151 cvmx_helper_qlm_jtag_shift_zeros(int qlm, int bits) argument
[all...]
/freebsd-9.3-release/contrib/binutils/bfd/
H A Dcpu-ia64-opc.c65 if (value >= 1u << self->field[0].bits)
76 & ((1u << self->field[0].bits) - 1));
86 for (i = 0; i < NELEMS (self->field) && self->field[i].bits; ++i)
88 new |= ((value & ((((ia64_insn) 1) << self->field[i].bits) - 1))
90 value >>= self->field[i].bits;
103 int i, bits = 0, total = 0; local
105 for (i = 0; i < NELEMS (self->field) && self->field[i].bits; ++i)
107 bits = self->field[i].bits;
109 & ((((BFD_HOST_U_64_BIT) 1) << bits)
188 int i, bits = 0, total = 0; local
[all...]
/freebsd-9.3-release/contrib/binutils/opcodes/
H A Ds390-dis.c69 int bits; local
73 bits = (operand->shift & 7) + operand->bits;
79 bits -= 8;
81 while (bits > 0);
82 val >>= -bits;
83 val &= ((1U << (operand->bits - 1)) << 1) - 1;
86 if (operand->bits == 20 && operand->shift == 20)
91 && (val & (1U << (operand->bits - 1))))
92 val |= (-1U << (operand->bits
[all...]
/freebsd-9.3-release/contrib/gcclibs/libdecnumber/
H A Ddecimal128.c82 uByte isneg = dn->bits & DECNEG; /* non-0 if original sign set */
88 if (!(dn->bits & DECSPECIAL))
107 if (dn->bits & DECSPECIAL)
110 if (dn->bits & DECINF)
119 if (dn->bits & DECNAN)
145 exp &= 0xfff; /* remaining exponent bits */
165 msd = ((unsigned) d128->bytes[1] << 2) & 0x0c; /* top 2 bits */
166 msd |= ((unsigned) d128->bytes[2] >> 6); /* low 2 bits */
176 exp &= 0xfff; /* remaining exponent bits */
204 dn->bits
[all...]
H A Ddecimal32.c82 uByte isneg = dn->bits & DECNEG; /* non-0 if original sign set */
88 if (!(dn->bits & DECSPECIAL))
107 if (dn->bits & DECSPECIAL)
110 if (dn->bits & DECINF)
119 if (dn->bits & DECNAN)
145 exp &= 0x3f; /* remaining exponent bits */
173 exp &= 0x3f; /* remaining exponent bits */
201 dn->bits = DECNEG;
206 dn->bits |= DECINF;
208 dn->bits |
[all...]
H A Ddecimal64.c82 uByte isneg = dn->bits & DECNEG; /* non-0 if original sign set */
88 if (!(dn->bits & DECSPECIAL))
107 if (dn->bits & DECSPECIAL)
110 if (dn->bits & DECINF)
119 if (dn->bits & DECNAN)
145 exp &= 0xff; /* remaining exponent bits */
172 exp &= 0xff; /* remaining exponent bits */
200 dn->bits = DECNEG;
205 dn->bits |= DECINF;
207 dn->bits |
[all...]
/freebsd-9.3-release/contrib/ipfilter/lib/
H A Dprintnat.c27 int bits; local
95 bits = count4bits(np->in_outmsk);
96 if (bits != -1)
97 printf("/%d", bits);
143 bits = count4bits(np->in_inmsk);
144 if (bits != -1)
145 printf("%d", bits);
155 bits = count4bits(np->in_outmsk);
156 if (bits != -1)
157 printf("%d", bits);
[all...]
/freebsd-9.3-release/sys/cddl/contrib/opensolaris/uts/common/zmod/
H A Dinftrees.c25 whose indices are 0..2^bits-1. work is a writable array of at least
29 on return points to the next available entry's address. bits is the
30 requested root table index bits, and on return it is the actual root
31 table index bits. It will differ if the request is greater than the
34 int inflate_table(type, lens, codes, table, bits, work)
39 unsigned FAR *bits;
42 unsigned len; /* a code's length in bits */
45 unsigned root; /* number of index bits for root table */
46 unsigned curr; /* number of index bits for current table */
47 unsigned drop; /* code bits t
[all...]
/freebsd-9.3-release/sys/dev/ath/ath_hal/ar5212/
H A Dar5212_recv.c48 * Set Receive Enable bits.
108 * Set multicast filter 0 (lower 32-bits)
109 * filter 1 (upper 32-bits)
164 uint32_t bits = OS_REG_READ(ah, AR_RX_FILTER); local
167 bits |= HAL_RX_FILTER_PHYRADAR;
169 bits |= HAL_RX_FILTER_PHYERR;
172 bits |= HAL_RX_FILTER_BSSID;
173 return bits;
180 ar5212SetRxFilter(struct ath_hal *ah, uint32_t bits) argument
186 bits
[all...]
/freebsd-9.3-release/crypto/openssl/crypto/rc2/
H A Drc2_skey.c100 * shipped is the same as specifying 1024 for the 'bits' parameter. Bsafe
101 * uses a version where the bits parameter is the same as len*8
105 void RC2_set_key(RC2_KEY *key, int len, const unsigned char *data, int bits) argument
109 private_RC2_set_key(key, len, data, bits);
113 int bits)
115 void RC2_set_key(RC2_KEY *key, int len, const unsigned char *data, int bits)
128 if (bits <= 0)
129 bits = 1024;
130 if (bits > 1024)
131 bits
112 private_RC2_set_key(RC2_KEY *key, int len, const unsigned char *data, int bits) argument
[all...]

Completed in 234 milliseconds

1234567891011>>