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

1234567891011>>

/freebsd-10.0-release/lib/libc/ia64/
H A D_fpmath.h48 } bits; member in union:IEEEl2bits
64 #define mask_nbit_l(u) ((u).bits.manh &= ~LDBL_NBIT)
73 #define mask_nbit_l(u) ((u).bits.manh &= ~LDBL_NBIT)
80 (a)[0] = (uint32_t)(u).bits.manl; \
81 (a)[1] = (uint32_t)(u).bits.manh; \
/freebsd-10.0-release/sys/fs/nfs/
H A Dnfs.h284 * The access, deny, NFSLCK_READ and NFSLCK_WRITE bits must be defined as
322 /* And bits for nid_flag */
339 * Here is the definition of the attribute bits array and macros that
347 u_int32_t bits[NFSATTRBIT_MAXWORDS]; member in struct:__anon9760
350 #define NFSZERO_ATTRBIT(b) do { (b)->bits[0] = 0; (b)->bits[1] = 0; } while (0)
351 #define NFSSET_ATTRBIT(t, f) do { (t)->bits[0] = (f)->bits[0]; \
352 (t)->bits[1] = (f)->bits[
[all...]
/freebsd-10.0-release/contrib/llvm/tools/lldb/include/lldb/Host/
H A DPredicate.h40 /// of type T. Threads can efficiently wait for bits within T to be set
134 /// Set some bits in \a m_value.
136 /// Logically set the bits \a bits in the contained \a m_value in a
139 /// @param[in] bits
140 /// The bits to set in \a m_value.
149 SetValueBits (T bits, PredicateBroadcastType broadcast_type) argument
153 printf("%s (bits = 0x%8.8x, broadcast_type = %i)\n", __FUNCTION__, bits, broadcast_type);
156 m_value |= bits;
177 ResetValueBits(T bits, PredicateBroadcastType broadcast_type) argument
216 WaitForSetValueBits(T bits, const TimeValue *abstime = NULL) argument
265 WaitForResetValueBits(T bits, const TimeValue *abstime = NULL) argument
[all...]
/freebsd-10.0-release/lib/libc/gdtoa/
H A D_ldtoa.c63 uint32_t bits[(LDBL_MANT_DIG + 31) / 32]; local
64 void *vbits = bits;
73 *sign = u.bits.sign;
74 fpi.rounding ^= (fpi.rounding >> 1) & u.bits.sign;
76 be = u.bits.exp - (LDBL_MAX_EXP - 1) - (LDBL_MANT_DIG - 1);
77 LDBL_TO_ARRAY32(u, bits);
83 bits[LDBL_MANT_DIG / 32] |= 1 << ((LDBL_MANT_DIG - 1) % 32);
H A D_hdtoa.c81 *sign = u.bits.sign;
85 *decpt = u.bits.exp - DBL_ADJ;
92 *decpt = u.bits.exp - (514 + DBL_ADJ);
116 float redux = one[u.bits.sign];
118 u.bits.exp = offset;
121 *decpt += u.bits.exp - offset;
124 manh = u.bits.manh;
125 manl = u.bits.manl;
/freebsd-10.0-release/lib/msun/src/
H A Ds_nan.c42 * the same as gcc's __builtin_nan(), namely, discard the high order bits.
54 int bitpos; /* index into words (in bits) */
66 /* Scan backwards, filling in the bits in words[] as we go. */
83 uint32_t bits[2]; member in union:__anon5743
86 _scan_nan(u.bits, 2, s);
88 u.bits[1] |= 0x7ff80000;
90 u.bits[0] |= 0x7ff80000;
100 uint32_t bits[1]; member in union:__anon5744
103 _scan_nan(u.bits, 1, s);
104 u.bits[
[all...]
H A Ds_sinl.c54 s = z.bits.sign;
55 z.bits.sign = 0;
58 if (z.bits.exp == 0)
62 if (z.bits.exp == 32767)
H A Ds_tanl.c60 s = z.bits.sign;
61 z.bits.sign = 0;
64 if (z.bits.exp == 0)
68 if (z.bits.exp == 32767)
H A Ds_scalbnl.c50 k = u.bits.exp; /* extract exponent */
52 if ((u.bits.manh|u.bits.manl)==0) return x; /* +-0 */
54 k = u.bits.exp - 128;
61 {u.bits.exp = k; return u.e;}
67 u.bits.exp = k;
/freebsd-10.0-release/contrib/pam_modules/pam_passwdqc/
H A Dpasswdqc_random.c39 int bits; local
46 if (!(bits = params->random_bits))
49 count = 1 + ((bits - 12) + 14) / 15;
50 use_separators = ((bits + 11) / 12 != count);
75 bits -= 12;
77 if (use_separators && bits > 3) {
80 bits -= 3;
82 if (bits > 0)
84 } while (bits > 0);
/freebsd-10.0-release/lib/libc/arm/
H A D_fpmath.h54 } bits; member in union:IEEEl2bits
65 (a)[0] = (uint32_t)(u).bits.manl; \
66 (a)[1] = (uint32_t)(u).bits.manh; \
/freebsd-10.0-release/lib/libc/inet/
H A Dinet_net_pton.c54 * number of bits, either imputed classfully or specified with /CIDR,
67 int n, ch, tmp = 0, dirty, bits; local
127 bits = -1;
132 bits = 0;
136 bits *= 10;
137 bits += n;
138 if (bits > 32)
153 if (bits == -1) {
155 bits = 32;
157 bits
273 int bits; local
[all...]
H A Dinet_cidr_pton.c48 int *bits, int ipv6));
50 int *bits));
56 * inet_cidr_pton(af, src, dst, *bits)
59 * "dst" is assumed large enough for its "af". "bits" is set to the
72 inet_cidr_pton(int af, const char *src, void *dst, int *bits) { argument
75 return (inet_cidr_pton_ipv4(src, dst, bits, 0));
77 return (inet_cidr_pton_ipv6(src, dst, bits));
89 int n, ch, tmp, bits; local
113 bits = -1;
115 bits
161 int bits; local
258 int bits = 0; local
[all...]
/freebsd-10.0-release/contrib/gdtoa/
H A Dstrtopf.c42 ULong bits[1], *L; local
51 k = strtodg(s, sp, fpi, &exp, bits);
61 L[0] = (bits[0] & 0x7fffff) | ((exp + 0x7f + 23) << 23);
65 L[0] = bits[0];
H A Dstrtopx.c62 ULong bits[2]; local
72 k = strtodg(s, sp, fpi, &exp, bits);
87 L[_4] = (UShort)bits[0];
88 L[_3] = (UShort)(bits[0] >> 16);
89 L[_2] = (UShort)bits[1];
90 L[_1] = (UShort)(bits[1] >> 16);
/freebsd-10.0-release/contrib/libstdc++/include/c/
H A Dstd_cwchar.h39 #include <bits/c++config.h>
/freebsd-10.0-release/contrib/libstdc++/include/c_std/
H A Dstd_cstdarg.h50 #include <bits/c++config.h>
H A Dstd_cstddef.h50 #include <bits/c++config.h>
/freebsd-10.0-release/contrib/libstdc++/libsupc++/
H A Ddel_op.cc31 #include <bits/c++config.h>
H A Deh_term_handler.cc30 #include <bits/c++config.h>
/freebsd-10.0-release/sys/mips/atheros/
H A Dar71xx_gpiovar.h48 #define GPIO_SET_BITS(sc, reg, bits) \
49 GPIO_WRITE(sc, reg, GPIO_READ(sc, (reg)) | (bits))
51 #define GPIO_CLEAR_BITS(sc, reg, bits) \
52 GPIO_WRITE(sc, reg, GPIO_READ(sc, (reg)) & ~(bits))
/freebsd-10.0-release/crypto/openssl/crypto/dsa/
H A Ddsa_locl.h57 int dsa_builtin_paramgen(DSA *ret, size_t bits, size_t qbits,
/freebsd-10.0-release/lib/libc/include/
H A Dfpmath.h49 } bits; member in union:IEEEf2bits
74 } bits; member in union:IEEEd2bits
/freebsd-10.0-release/sys/netipsec/
H A Dkey_var.h53 #define _KEYLEN(key) ((u_int)((key)->bits >> 3))
54 #define _KEYBITS(key) ((u_int)((key)->bits))
/freebsd-10.0-release/contrib/jemalloc/src/
H A Drtree.c5 rtree_new(unsigned bits) argument
11 height = bits / bits_per_level;
12 if (height * bits_per_level != bits)
14 assert(height * bits_per_level >= bits);
28 if (bits_per_level * height > bits)
29 ret->level2bits[0] = bits % bits_per_level;

Completed in 290 milliseconds

1234567891011>>