Searched refs:bits (Results 101 - 125 of 727) sorted by relevance

1234567891011>>

/freebsd-current/lib/msun/src/
H A Ds_cosl.c63 z.bits.sign = 0;
66 if (z.bits.exp == 0)
70 if (z.bits.exp == 32767)
H A Ds_sincosl.c54 z.bits.sign = 0;
64 if (z.bits.exp == 0) {
73 if (z.bits.exp == 32767) {
H A Ds_nexttoward.c41 (uy.bits.exp == 0x7fff &&
42 ((uy.bits.manh&~LDBL_NBIT)|uy.bits.manl) != 0))
46 INSERT_WORDS(x,uy.bits.sign<<31,1); /* return +-minsubnormal */
/freebsd-current/contrib/llvm-project/compiler-rt/lib/builtins/
H A Dint_to_fp_impl.inc37 // P = bit dstMantDig-1 bits to the right of 1
38 // Q = bit dstMantDig bits to the right of 1
39 // R = "or" of all bits to the right of Q
52 // a is now rounded to dstMantDig or dstMantDig+1 bits
57 // a is now rounded to dstMantDig bits
60 // a is now rounded to dstMantDig bits
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/Language/ObjC/
H A DCFBasicHash.cpp37 "Unsupported architecture. Only 32bits and 64bits supported.");
58 m_multi = m_ht->bits.counts_offset;
59 m_type = static_cast<HashType>(m_ht->bits.keys_offset);
80 return (m_ptr_size == 4) ? m_ht_32->bits.used_buckets
81 : m_ht_64->bits.used_buckets;
101 return m_ht_32->pointers[m_ht_32->bits.keys_offset];
103 return m_ht_64->pointers[m_ht_64->bits.keys_offset];
/freebsd-current/crypto/openssl/crypto/bn/
H A Dbn_rand.c23 static int bnrand(BNRAND_FLAG flag, BIGNUM *rnd, int bits, int top, int bottom, argument
30 if (bits == 0) {
36 if (bits < 0 || (bits == 1 && top > 0))
39 bytes = (bits + 7) / 8;
40 bit = (bits - 1) % 8;
49 /* make a random number and set the top and bottom bits */
102 int BN_rand_ex(BIGNUM *rnd, int bits, int top, int bottom, argument
105 return bnrand(NORMAL, rnd, bits, top, bottom, strength, ctx);
108 int BN_rand(BIGNUM *rnd, int bits, in argument
113 BN_bntest_rand(BIGNUM *rnd, int bits, int top, int bottom) argument
119 BN_priv_rand_ex(BIGNUM *rnd, int bits, int top, int bottom, unsigned int strength, BN_CTX *ctx) argument
126 BN_priv_rand(BIGNUM *rnd, int bits, int top, int bottom) argument
231 BN_pseudo_rand(BIGNUM *rnd, int bits, int top, int bottom) argument
[all...]
H A Dbn_prime.c22 static int probable_prime(BIGNUM *rnd, int bits, int safe, prime_t *mods,
24 static int probable_prime_dh(BIGNUM *rnd, int bits, int safe, prime_t *mods,
74 static int calc_trial_divisions(int bits) argument
76 if (bits <= 512)
78 else if (bits <= 1024)
80 else if (bits <= 2048)
82 else if (bits <= 4096)
94 static int bn_mr_min_checks(int bits) argument
96 if (bits > 2048)
123 int BN_generate_prime_ex2(BIGNUM *ret, int bits, in argument
213 BN_generate_prime_ex(BIGNUM *ret, int bits, int safe, const BIGNUM *add, const BIGNUM *rem, BN_GENCB *cb) argument
478 probable_prime(BIGNUM *rnd, int bits, int safe, prime_t *mods, BN_CTX *ctx) argument
536 probable_prime_dh(BIGNUM *rnd, int bits, int safe, prime_t *mods, const BIGNUM *add, const BIGNUM *rem, BN_CTX *ctx) argument
[all...]
/freebsd-current/crypto/openssl/crypto/whrlpool/
H A Dwp_dgst.c92 void WHIRLPOOL_BitUpdate(WHIRLPOOL_CTX *c, const void *_inp, size_t bits) argument
96 bitrem = bitoff % 8, inpgap = (8 - (unsigned int)bits % 8) & 7;
104 c->bitlen[0] += bits;
105 if (c->bitlen[0] < bits) { /* overflow */
115 while (bits) {
116 if (bitoff == 0 && (n = bits / WHIRLPOOL_BBLOCK)) {
119 bits %= WHIRLPOOL_BBLOCK;
124 if (bits >= bitrem) {
125 bits -= bitrem;
132 memcpy(c->data + byteoff, inp, bits /
[all...]
/freebsd-current/crypto/openssl/include/crypto/
H A Daria.h43 int ossl_aria_set_encrypt_key(const unsigned char *userKey, const int bits,
45 int ossl_aria_set_decrypt_key(const unsigned char *userKey, const int bits,
/freebsd-current/lib/libc/gdtoa/
H A D_hldtoa.c88 *sign = u.bits.sign;
92 *decpt = u.bits.exp - LDBL_ADJ;
102 *decpt = u.bits.exp - (514 + LDBL_ADJ);
129 float redux = one[u.bits.sign];
134 u.bits.exp = offset;
137 *decpt += u.bits.exp - offset;
144 manh = u.bits.manh;
145 manl = u.bits.manl;
/freebsd-current/sys/contrib/zlib/
H A Dinfback.c84 unsigned sym, bits; local
95 bits = 9;
96 inflate_table(LENS, state->lens, 288, &(next), &(bits), state->work);
102 bits = 5;
103 inflate_table(DISTS, state->lens, 32, &(next), &(bits), state->work);
127 bits = state->bits; \
138 state->bits = bits; \
145 bits
249 unsigned bits; /* bits in bit buffer */ local
[all...]
H A Dinflate.c30 * - Add comments on state->bits assertion in inffast.c
122 state->bits = 0;
164 /* set number of window bits, free window if different */
223 int ZEXPORT inflatePrime(z_streamp strm, int bits, int value) { argument
227 if (bits == 0)
230 if (bits < 0) {
232 state->bits = 0;
235 if (bits > 16 || state->bits + (uInt)bits > 3
260 unsigned sym, bits; local
596 unsigned bits; /* bits in bit buffer */ local
[all...]
/freebsd-current/lib/libiconv_modules/UTF7/
H A Dcitrus_utf7.c65 bits: 4, /* need to hold 0 - 15 */ member in struct:__anon324
175 if (psenc->bits > 0 || psenc->cache > 0)
195 if (psenc->bits >= BASE64_BIT)
198 psenc->bits = psenc->cache = 0;
211 switch (psenc->bits) {
213 psenc->bits += BASE64_BIT;
216 psenc->bits -= (UTF16_BIT - BASE64_BIT);
217 *u16 = (psenc->cache >> psenc->bits) &
302 int bits, i; local
304 if (psenc->chlen != 0 || psenc->bits > BASE64_BI
389 int bits, pos; local
[all...]
/freebsd-current/contrib/bsnmp/tests/
H A Dconstbuf.h65 count_hex(A c, Constbuf_mode &mode, std::size_t &bits) argument
69 if (bits % 4 != 0)
71 bits += 4;
117 handle_check(A c, Constbuf_mode &mode, std::size_t &bits, std::size_t &addr) argument
123 if (bits % 8 != 0 || bits / 8 != addr)
131 count_goto(A c, Constbuf_mode &mode, std::size_t &bits, std::size_t &addr) argument
137 if (8 * addr < bits)
139 bits = 8 * addr;
146 count_bin(A c, Constbuf_mode &mode, std::size_t &bits, st argument
[all...]
/freebsd-current/contrib/netbsd-tests/include/sys/
H A Dt_bitops.c48 } bits[] = { variable in typeref:struct:__anon5193
123 for (i = 1; i < __arraycount(bits); i++) {
125 a = bits[i].val;
126 b = bits[i].ffs;
158 for (i = 1; i < __arraycount(bits); i++) {
160 ATF_REQUIRE(ffs32(bits[i].val) == bits[i].ffs);
161 ATF_REQUIRE(fls32(bits[i].val) == bits[i].fls);
162 ATF_REQUIRE(ffs64(bits[
[all...]
/freebsd-current/contrib/gdtoa/
H A Dg_ffmt.c43 ULong bits[1], *L, sign; local
78 bits[0] = L[0] & 0x7fffff;
80 bits[0] |= 0x800000;
91 s = gdtoa(fpi, ex, bits, &i, mode, ndig, &decpt, &se);
H A DstrtopxL.c58 ULong bits[2]; local
68 k = strtodg(s, sp, fpi, &exp, bits);
78 L[_2] = bits[0];
79 L[_1] = bits[1];
/freebsd-current/contrib/unbound/util/
H A Dub_event.h89 int fd, short bits, void (*cb)(int, short, void*), void* arg);
97 /** Add event bits for this event to fire on */
98 void ub_event_add_bits(struct ub_event*, short bits);
99 /** Configure the event so it will not longer fire on given bits */
100 void ub_event_del_bits(struct ub_event*, short bits);
123 void ub_winsock_tcp_wouldblock(struct ub_event*, int bits);
/freebsd-current/contrib/wpa/src/crypto/
H A Dmd5_i.h14 u32 bits[2]; member in struct:MD5Context
/freebsd-current/sys/dev/qcom_mdio/
H A Dqcom_mdio_ipq4018_var.h53 #define MDIO_SET_BITS(sc, reg, bits) \
54 GPIO_WRITE(sc, reg, MDIO_READ(sc, (reg)) | (bits))
56 #define MDIO_CLEAR_BITS(sc, reg, bits) \
57 GPIO_WRITE(sc, reg, MDIO_READ(sc, (reg)) & ~(bits))
/freebsd-current/sys/geom/vinum/
H A Dgeom_vinum_raid5.h47 TAILQ_HEAD(,gv_bioq) bits; /* List of subrequests. */ member in struct:gv_raid5_packet
/freebsd-current/sys/dev/bhnd/cores/chipc/
H A Dchipc_spi.h87 #define SPI_SET_BITS(sc, reg, bits) \
88 SPI_WRITE(sc, reg, SPI_READ(sc, (reg)) | (bits))
90 #define SPI_CLEAR_BITS(sc, reg, bits) \
91 SPI_WRITE(sc, reg, SPI_READ(sc, (reg)) & ~(bits))
/freebsd-current/usr.bin/netstat/
H A Dcommon.h35 struct bits { struct
40 extern struct bits rt_bits[];
42 const char *fmt_flags(const struct bits *p, int f);
43 void print_flags_generic(int flags, const struct bits *pbits,
/freebsd-current/crypto/openssl/providers/implementations/ciphers/
H A Dcipher_camellia_hw_t4.inc19 int ret = 0, bits, mode = dat->mode;
24 bits = keylen * 8;
26 cmll_t4_set_key(key, bits, ks);
30 switch (bits) {
54 switch (bits) {
/freebsd-current/contrib/opencsd/decoder/include/opencsd/etmv4/
H A Dtrc_pkt_elem_etmv4i.h133 void setTS(const uint64_t value, const uint8_t bits);
172 return pkt_valid.bits.commit_elem_valid ? true : false;
195 const uint64_t getTS() const { return pkt_valid.bits.ts_valid ? ts.timestamp : 0; };
198 const uint32_t getCC() const { return pkt_valid.bits.cc_valid ? cycle_count : 0; };
242 pkt_valid.bits.ts_valid = 0;
243 pkt_valid.bits.trace_info_valid = 0;
244 pkt_valid.bits.p0_key_valid = 0;
245 pkt_valid.bits.spec_depth_valid = 0;
246 pkt_valid.bits.cc_thresh_valid = 0;
260 pkt_valid.bits
281 setTS(const uint64_t value, const uint8_t bits) argument
[all...]

Completed in 303 milliseconds

1234567891011>>