Searched refs:exp (Results 226 - 250 of 451) sorted by relevance

1234567891011>>

/freebsd-current/contrib/nvi/ex/
H A Dex_filter.c304 EX_PRIVATE *exp; local
306 for (exp = EXP(sp); !ex_getline(sp, fp, &len) && !INTERRUPTED(sp);) {
307 FILE2INT5(sp, exp->ibcw, exp->ibp, len, wp, wlen);
H A Dex_script.c194 EX_PRIVATE *exp; local
205 exp = EXP(sp);
244 if (CHAR2INT5(sp, exp->ibcw, t, p - t, wp, wlen))
277 if (CHAR2INT5(sp, exp->ibcw, buf, llen, wp, wlen))
421 EX_PRIVATE *exp; local
433 exp = EXP(sp);
464 if (CHAR2INT5(sp, exp->ibcw, t, len, wp, wlen))
494 if (CHAR2INT5(sp, exp->ibcw, t, len, wp, wlen))
/freebsd-current/contrib/arm-optimized-routines/networking/test/
H A Dchksum.c23 #define Assert(exp) assert(exp)
25 #define Assert(exp) (void) (exp)
/freebsd-current/lib/msun/src/
H A Ds_modfl.c64 e = ux.bits.exp - LDBL_MAX_EXP + 1;
H A Ds_nexttoward.c41 (uy.bits.exp == 0x7fff &&
H A Dk_exp.c38 * Compute exp(x), scaled to avoid spurious overflow. An exponent is
51 * We use exp(x) = exp(x - kln2) * 2**k, carefully chosen to
52 * minimize |exp(kln2) - 2**k|. We also scale the exponent of
56 exp_x = exp(x - kln2);
64 * __ldexp_exp(x, expt) and __ldexp_cexp(x, expt) compute exp(x) * 2**expt.
H A Ds_ctanh.c120 * ctanh(+-huge +- I y) ~= +-1 +- I 2sin(2y)/exp(2x), using the
121 * approximation sinh^2(huge) ~= exp(2*huge) / 4.
125 double exp_mx = exp(-fabs(x));
/freebsd-current/lib/libc/gdtoa/
H A D_ldtoa.c76 be = u.bits.exp - (LDBL_MAX_EXP - 1) - (LDBL_MANT_DIG - 1);
/freebsd-current/usr.bin/lastcomm/
H A Dreadrec.c77 int result, exp; local
80 for (exp = v >> 13; exp; exp--)
/freebsd-current/tools/build/cross-build/include/common/sys/
H A Dcdefs.h104 #define __predict_true(exp) __builtin_expect((exp), 1)
107 #define __predict_false(exp) __builtin_expect((exp), 0)
/freebsd-current/contrib/sendmail/libsm/
H A Dt-qic.c49 quote_unquote(in, out, outlen, exp, mode)
53 int exp;
71 SM_TEST(exp == cmp);
72 if (cmp != exp && !SmTestVerbose)
184 fprintf(stderr, "exp:%s\n", bp);
211 fprintf(stderr, "exp:%s\n", bp);
240 fprintf(stderr, "exp:%s\n", bp);
/freebsd-current/contrib/arm-optimized-routines/math/include/
H A Dmathlib.h20 double exp (double);
/freebsd-current/contrib/llvm-project/libcxx/include/__math/
H A Dexponential_functions.h27 // exp
29 inline _LIBCPP_HIDE_FROM_ABI float exp(float __x) _NOEXCEPT { return __builtin_expf(__x); }
32 _LIBCPP_HIDE_FROM_ABI double exp(double __x) _NOEXCEPT {
36 inline _LIBCPP_HIDE_FROM_ABI long double exp(long double __x) _NOEXCEPT { return __builtin_expl(__x); }
39 inline _LIBCPP_HIDE_FROM_ABI double exp(_A1 __x) _NOEXCEPT {
/freebsd-current/contrib/ldns/
H A Drr_functions.c278 uint16_t exp; local
305 exp = ntohs(int16);
306 return (len - exp - 3)*8;
311 exp = keydata[0];
312 return (len-exp-1)*8;
/freebsd-current/usr.sbin/ppp/
H A Dchat.c229 ExpandString(c, c->argptr, c->exp + 2, sizeof c->exp - 2, needcr);
239 len = strlen(c->exp+2);
252 memcpy(c->abort.string[i].data, c->exp+2, len+1);
259 c->TimeoutSec = atoi(c->exp + 2);
263 } else if (c->nargptr == NULL && !strcmp(c->exp+2, "ABORT"))
265 else if (c->nargptr == NULL && !strcmp(c->exp+2, "TIMEOUT"))
268 if (c->exp[2] == '!' && c->exp[3] != '!')
269 ExecStr(c->physical, c->exp
[all...]
/freebsd-current/crypto/openssh/
H A Ddefines.h923 # define __predict_true(exp) __builtin_expect(((exp) != 0), 1)
924 # define __predict_false(exp) __builtin_expect(((exp) != 0), 0)
926 # define __predict_true(exp) ((exp) != 0)
927 # define __predict_false(exp) ((exp) != 0)
/freebsd-current/crypto/openssl/crypto/bio/
H A Dbio_print.c578 long exp = 0; local
620 exp--;
624 exp++;
636 max -= (exp + 1);
639 * Should not happen. If we're in F_FORMAT then exp < max?
717 if (exp < 0)
718 tmpexp = -exp;
720 tmpexp = exp;
806 if (exp < 0) {
/freebsd-current/lib/libdevdctl/
H A Dconsumer.cc197 } catch (const Exception &exp) {
198 exp.Log();
/freebsd-current/contrib/arm-optimized-routines/math/aarch64/
H A Dv_exp.c51 return v_call_f64 (exp, x, y, cmp);
77 float64x2_t VPCS_ATTR V_NAME_D1 (exp) (float64x2_t x) function
107 /* y = exp(r) - 1 ~= r + C0 r^2 + C1 r^3 + C2 r^4. */
/freebsd-current/contrib/llvm-project/libcxx/include/__random/
H A Dlognormal_distribution.h72 return std::exp(__nd_(__g));
78 return std::exp(__nd_(__g, __pn));
/freebsd-current/sys/sys/
H A Dcdefs.h425 #define __predict_true(exp) __builtin_expect((exp), 1)
426 #define __predict_false(exp) __builtin_expect((exp), 0)
428 #define __predict_true(exp) (exp)
429 #define __predict_false(exp) (exp)
/freebsd-current/contrib/atf/atf-sh/
H A Datf-check_test.sh239 echo foo >exp
240 cmp -s out exp || atf_fail "Saved output does not match expected results"
336 echo foo >exp
337 cmp -s out exp || atf_fail "Saved output does not match expected results"
/freebsd-current/contrib/netbsd-tests/ipf/
H A Dt_nat_parse.sh37 atf_check -o file:exp -e ignore ipnat -Rnvf reg
/freebsd-current/sys/netinet/libalias/
H A Dalias_sctp.h134 int exp; /**< timer expiration in seconds from uptime */ member in struct:sctp_nat_assoc
/freebsd-current/sys/ofed/include/rdma/
H A Dib_addr.h306 int exp; local
307 for (exp = dev->if_baudrate_pf; exp > 0; exp--)

Completed in 415 milliseconds

1234567891011>>