Searched refs:exp (Results 176 - 200 of 451) sorted by relevance

1234567891011>>

/freebsd-current/usr.bin/ctags/
H A Dctags.h42 #define GETC(op,exp) ((c = getc(inf)) op (int)exp)
/freebsd-current/contrib/nvi/ex/
H A Dex_cscope.c109 EX_PRIVATE *exp; local
117 exp = EXP(sp);
118 if (!F_ISSET(exp, EXP_CSCINIT) && start_cscopes(sp, cmdp))
120 F_SET(exp, EXP_CSCINIT);
196 EX_PRIVATE *exp; local
204 exp = EXP(sp);
286 SLIST_INSERT_HEAD(exp->cscq, csc, q);
460 EX_PRIVATE *exp; local
470 exp = EXP(sp);
473 if (SLIST_EMPTY(exp
905 EX_PRIVATE *exp; local
976 EX_PRIVATE *exp; local
993 EX_PRIVATE *exp; local
[all...]
/freebsd-current/sys/contrib/openzfs/include/sys/
H A Dvdev_raidz_impl.h333 vdev_raidz_exp2(const uint8_t a, const unsigned exp) argument
338 return (vdev_raidz_pow2[(exp + (unsigned)vdev_raidz_log2[a]) % 255]);
394 gf_exp2(gf_log_t exp) argument
396 return (vdev_raidz_pow2[exp % 255]);
400 gf_exp4(gf_log_t exp) argument
402 ASSERT3U(exp, <=, 255);
403 return ((gf_t)vdev_raidz_pow2[(2 * exp) % 255]);
/freebsd-current/contrib/atf/atf-c++/
H A Dtests_test.cpp65 const std::string& exp)
67 if (str != exp) {
73 print_indented(exp);
64 check_equal(const atf::tests::tc& tc, const std::string& str, const std::string& exp) argument
/freebsd-current/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zfs_create/
H A Dzfs_create_dryrun.ksh80 typeset -n exp=$1
106 if [[ -z "${exp[$prop]}" ]]; then
111 if [[ ${exp[$prop]} != "*" ]]; then
112 log_must test "${exp[$prop]}" == "$val"
114 unset exp[$prop]
123 log_must test "extra props: ${!exp[@]}" == "extra props: "
H A Dzfs_create_verbose.ksh41 typeset -n exp=$1
95 if [[ -z "${exp[$prop]}" ]]; then
100 if [[ ${exp[$prop]} != "*" ]]; then
101 log_must test "${exp[$prop]}" == "$val"
103 unset exp[$prop]
112 log_must test "extra props: ${!exp[@]}" == "extra props: "
/freebsd-current/tests/sys/capsicum/
H A Dioctls_test.c44 #define CHILD_REQUIRE(exp) do { \
45 if (!(exp)) \
47 #exp " not met"); \
/freebsd-current/contrib/llvm-project/compiler-rt/lib/builtins/
H A Dfp_trunc.h130 static inline dst_rep_t construct_dst_rep(dst_rep_t sign, dst_rep_t exp, dst_rep_t sigFrac) { argument
131 dst_rep_t result = (sign << (dstBits - 1)) | (exp << (dstBits - 1 - dstExpBits)) | sigFrac;
133 if (dstBits == 80 && exp) {
/freebsd-current/sys/kern/
H A Dsubr_physmem.c189 const struct region *exp, *hwp; local
203 for (exi = 0, exp = exregions; exi < excnt; ++exi, ++exp) {
208 if ((exp->flags & exflags) == 0)
210 xstart = exp->addr;
211 xend = exp->size + xstart;
508 const struct region *exp; local
511 for (exi = 0, exp = exregions; exi < excnt; ++exi, ++exp) {
512 if (pa < exp
[all...]
/freebsd-current/contrib/netbsd-tests/ipf/
H A Dh_common.sh40 cp $(atf_get_srcdir)/expected/$1 exp
/freebsd-current/contrib/arm-optimized-routines/math/
H A Dexp.c77 /* Computes exp(x+xtail) where |xtail| < 2^-8/N and |xtail| <= |x|.
109 /* exp(x) = 2^(k/N) * exp(r), with exp(r) in [2^(-1/2N),2^(1/2N)]. */
136 /* exp(x) = 2^(k/N) * exp(r) ~= scale + scale * (tail + exp(r) - 1). */
157 exp (double x) function
170 strong_alias (exp, __exp_finite)
171 hidden_alias (exp, __ieee754_ex
[all...]
/freebsd-current/tools/regression/zfs/zpool/create/
H A Doption-m.t14 exp=`(
18 expect "${exp}" ${ZPOOL} get altroot ${name0}
/freebsd-current/lib/msun/src/
H A Ds_nexttowardf.c32 (uy.bits.exp == LDBL_INFNAN_EXP &&
H A Ds_cpow.c67 r = r * exp (-y * arga);
H A De_sinh.c15 * mathematically sinh(x) if defined to be (exp(x)-exp(-x))/2
22 * 22 <= x <= lnovft : sinh(x) := exp(x)/2
23 * lnovft <= x <= ln2ovft: sinh(x) := exp(x/2)/2 * exp(x/2)
62 /* |x| in [22, log(maxdouble)] return 0.5*exp(|x|) */
63 if (ix < 0x40862E42) return h*exp(fabs(x));
H A Ds_truncl.c40 int e = u.bits.exp - LDBL_MAX_EXP + 1;
H A De_hypotl.c33 #define DESW(exp) (exp) /* delta expsign word */
34 #define ESW(exp) (MAX_EXP - 1 + (exp)) /* expsign word */
H A De_exp.c12 /* exp(x)
25 * 2. Approximation of exp(r) by a special rational function on
28 * R(r**2) = r*(exp(r)+1)/(exp(r)-1) = 2 + r*r/6 - r**4/360 + ...
39 * The computation of exp(r) thus becomes
41 * exp(r) = 1 + -------
50 * 3. Scale back to obtain exp(x):
52 * exp(x) = 2^k * exp(r)
55 * exp(IN
101 exp(double x) /* default IEEE double exp */ function
[all...]
/freebsd-current/usr.sbin/ppp/
H A Dchat.h51 char exp[LINE_LEN]; /* Our translated current argument */ member in struct:chat
/freebsd-current/contrib/llvm-project/clang/lib/Analysis/
H A DThreadSafetyLogical.cpp61 return implies(LHS, LNeg, cast<Not>(RHS)->exp(), !RNeg);
86 return implies(cast<Not>(LHS)->exp(), !LNeg, RHS, RNeg);
/freebsd-current/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zpool_add/
H A Dadd-o_ashift.ksh93 exp=$(( (ashift <= max_auto_ashift) ? ashift : logical_ashift ))
94 log_must verify_ashift $disk2 $exp
/freebsd-current/contrib/netbsd-tests/lib/libc/time/
H A Dt_strptime.c49 const char *ret, *exp; local
51 exp = buf + len;
55 ATF_CHECK_MSG(ret == exp,
57 "expected: %p, got: %p", buf, fmt, exp, ret);
65 ATF_REQUIRE_MSG(ret == exp,
67 "expected: %p, got: %p", buf, fmt, exp, ret);
/freebsd-current/contrib/arm-optimized-routines/math/test/
H A Drunulp.sh35 t exp 0 0xffff000000000000 10000
36 t exp 0x1p-6 0x1p6 40000
37 t exp -0x1p-6 -0x1p6 40000
38 t exp 633.3 733.3 10000
39 t exp -633.3 -777.3 10000
264 exp _ZGVnN2v_exp
/freebsd-current/contrib/llvm-project/compiler-rt/lib/asan/
H A Dasan_rtl.cpp118 void __asan_report_exp_ ## type ## size(uptr addr, u32 exp) { \
120 ReportGenericError(pc, bp, sp, addr, is_write, size, exp, true); \
146 void __asan_report_exp_ ## type ## _n(uptr addr, uptr size, u32 exp) { \
148 ReportGenericError(pc, bp, sp, addr, is_write, size, exp, true); \
177 void __asan_exp_##type##size(uptr addr, u32 exp) { \
178 ASAN_MEMORY_ACCESS_CALLBACK_BODY(type, is_write, size, exp, true) \
207 void __asan_exp_loadN(uptr addr, uptr size, u32 exp) { argument
210 ReportGenericError(pc, bp, sp, addr, false, size, exp, true);
234 void __asan_exp_storeN(uptr addr, uptr size, u32 exp) { argument
237 ReportGenericError(pc, bp, sp, addr, true, size, exp, tru
[all...]
/freebsd-current/crypto/openssl/crypto/bn/
H A Drsaz_exp_x2.c59 const BN_ULONG *exp, const BN_ULONG *m, BN_ULONG k0);
61 const BN_ULONG *exp[2], const BN_ULONG *m,
78 const BN_ULONG *exp, const BN_ULONG *m,
81 const BN_ULONG *exp[2], const BN_ULONG *m,
107 * [in] exp|i| - exponent
150 const BN_ULONG *exp[2] = {0};
211 exp[0] = exp1;
212 exp[1] = exp2;
217 exp_x2(rr1_red, base1_red, exp, m1_red, rr1_red, k0);
248 * [in] exp
[all...]

Completed in 155 milliseconds

1234567891011>>