Searched refs:exp (Results 1 - 25 of 58) sorted by relevance

123

/haiku/src/system/libroot/posix/musl/math/x86/
H A Dexp2.s1 # see exp.s
H A Dexp2f.s1 # see exp.s
H A Dexp2l.s1 # see exp.s
H A Dexpf.s1 # see exp.s
H A Dexpm1.s1 # see exp.s
H A Dexpm1f.s1 # see exp.s
H A Dexpm1l.s1 # see exp.s
H A Dexp.s83 .global exp
84 .type exp,@function
85 exp: label
/haiku/src/system/libroot/posix/glibc/include/arch/arm/
H A Dmath_ldbl.h42 #define GET_LDOUBLE_WORDS(exp,ix0,ix1,d) \
46 (exp) = ew_u.parts.sign_exponent; \
53 #define SET_LDOUBLE_WORDS(d,exp,ix0,ix1) \
56 iw_u.parts.sign_exponent = (exp); \
83 #define GET_LDOUBLE_EXP(exp,d) \
87 (exp) = ge_u.parts.sign_exponent; \
92 #define SET_LDOUBLE_EXP(d,exp) \
96 se_u.parts.sign_exponent = (exp); \
/haiku/src/system/libroot/posix/glibc/include/arch/x86/
H A Dmath_ldbl.h42 #define GET_LDOUBLE_WORDS(exp,ix0,ix1,d) \
46 (exp) = ew_u.parts.sign_exponent; \
53 #define SET_LDOUBLE_WORDS(d,exp,ix0,ix1) \
56 iw_u.parts.sign_exponent = (exp); \
83 #define GET_LDOUBLE_EXP(exp,d) \
87 (exp) = ge_u.parts.sign_exponent; \
92 #define SET_LDOUBLE_EXP(d,exp) \
96 se_u.parts.sign_exponent = (exp); \
/haiku/src/system/libroot/posix/glibc/include/arch/x86_64/
H A Dmath_ldbl.h23 #define GET_LDOUBLE_WORDS(exp,ix0,ix1,d) \
27 (exp) = ew_u.parts.sign_exponent; \
34 #define SET_LDOUBLE_WORDS(d,exp,ix0,ix1) \
37 iw_u.parts.sign_exponent = (exp); \
64 #define GET_LDOUBLE_EXP(exp,d) \
68 (exp) = ge_u.parts.sign_exponent; \
73 #define SET_LDOUBLE_EXP(d,exp) \
77 se_u.parts.sign_exponent = (exp); \
/haiku/src/system/libroot/posix/glibc/include/arch/riscv64/
H A Dmath_ldbl.h23 #define GET_LDOUBLE_WORDS(exp,ix0,ix1,d) \
27 (exp) = ew_u.parts.sign_exponent; \
34 #define SET_LDOUBLE_WORDS(d,exp,ix0,ix1) \
37 iw_u.parts.sign_exponent = (exp); \
64 #define GET_LDOUBLE_EXP(exp,d) \
68 (exp) = ge_u.parts.sign_exponent; \
73 #define SET_LDOUBLE_EXP(d,exp) \
77 se_u.parts.sign_exponent = (exp); \
/haiku/src/system/libroot/posix/glibc/include/arch/arm64/
H A Dmath_ldbl.h42 #define GET_LDOUBLE_WORDS(exp,ix0,ix1,d) \
46 (exp) = ew_u.parts.sign_exponent; \
53 #define SET_LDOUBLE_WORDS(d,exp,ix0,ix1) \
56 iw_u.parts.sign_exponent = (exp); \
83 #define GET_LDOUBLE_EXP(exp,d) \
87 (exp) = ge_u.parts.sign_exponent; \
92 #define SET_LDOUBLE_EXP(d,exp) \
96 se_u.parts.sign_exponent = (exp); \
/haiku/src/system/libroot/posix/musl/math/
H A D__expo2.c7 /* exp(x)/2 for x >= log(DBL_MAX), slightly better than 0.5*exp(x/2)*exp(x/2) */
14 /* exp(x - k ln2) * 2**(k-1) */
15 return exp(x - kln2) * scale * scale;
H A Dcosh.c3 /* cosh(x) = (exp(x) + 1/exp(x))/2
4 * = 1 + 0.5*(exp(x)-1)*(exp(x)-1)/exp(x)
31 t = exp(x);
H A Dexpl.c38 * A Pade' form of degree 5/6 is used to approximate exp(f) - 1
51 * exp( X(1+delta) ) = exp(X) ( 1 + X*delta + ... ),
63 * exp underflow x < MINLOG 0.0
64 * exp overflow x > MAXLOG MAXNUM
73 return exp(x);
126 return exp(x);
/haiku/src/system/libroot/os/arch/sparc/
H A Dfpu_implode.c204 int sign, exp; local
213 * If exp >= 2^32, overflow. Otherwise shift value right
222 if ((exp = fp->fp_exp) >= 32)
224 /* NB: the following includes exp < 0 cases */
225 if (__fpu_shr(fp, FP_NMANT - 1 - exp) != 0)
253 int sign, exp; local
263 * If exp >= 2^64, overflow. Otherwise shift value
273 if ((exp = fp->fp_exp) >= 64)
275 /* NB: the following includes exp < 0 cases */
276 if (__fpu_shr(fp, FP_NMANT - 1 - exp) !
306 int exp; local
394 int exp; local
456 int exp; local
[all...]
H A Dfpu_explode.c160 #define FP_TOF(exp, expbias, allfrac, f0, f1, f2, f3) \
161 if (exp == 0) { \
172 if (exp == (2 * expbias + 1)) { \
181 fp->fp_exp = exp - expbias; \
198 int exp; local
202 exp = (i >> (32 - 1 - SNG_EXPBITS)) & mask(SNG_EXPBITS);
206 FP_TOF(exp, SNG_EXP_BIAS, frac, f0, f1, 0, 0);
218 int exp; local
222 exp = (i >> (32 - 1 - DBL_EXPBITS)) & mask(DBL_EXPBITS);
228 FP_TOF(exp, DBL_EXP_BIA
239 int exp; local
[all...]
H A Dfpu_subr.c141 int lsh, rsh, exp; local
143 exp = fp->fp_exp;
152 m0 = m1, m1 = m2, m2 = m3, m3 = 0, exp -= 32;
154 m0 = m2, m1 = m3, m2 = 0, m3 = 0, exp -= 2 * 32;
156 m0 = m3, m1 = 0, m2 = 0, m3 = 0, exp -= 3 * 32;
173 exp += rsh;
186 exp -= lsh;
194 fp->fp_exp = exp;
/haiku/src/system/libroot/posix/glibc/include/
H A Dsysdep.h56 # define cfi_personality(enc, exp) .cfi_personality enc, exp
57 # define cfi_lsda(enc, exp) .cfi_lsda enc, exp
/haiku/src/tests/system/libroot/posix/
H A Dtst-swprintf.c10 ssize_t exp; member in struct:__anon6010
51 if (tests[n].exp < 0 && res >= 0) {
55 } else if (tests[n].exp >= 0 && tests[n].exp != res) {
57 tests[n].n, tests[n].str, tests[n].exp, res);
/haiku/src/libs/print/libprint/
H A DJSDSlider.cpp40 gamma = exp((Value() * log(2.0) * 0.01) );
/haiku/src/add-ons/kernel/file_systems/websearchfs/
H A Dquery.h33 struct query_exp *exp; member in struct:query_term
/haiku/src/libs/compat/freebsd_network/compat/sys/
H A Dcdefs.h156 #define __predict_true(exp) __builtin_expect((exp), 1)
157 #define __predict_false(exp) __builtin_expect((exp), 0)
159 #define __predict_true(exp) (exp)
160 #define __predict_false(exp) (exp)
/haiku/src/add-ons/kernel/drivers/disk/nvme/libnvme/
H A Dnvme_common.h275 #define _nvme_assert_default(exp) \
277 if (unlikely(!(exp))) \
279 __LINE__, # exp); \
282 #define _nvme_assert_msg(exp, msg) \
284 if (unlikely(!(exp))) \

Completed in 146 milliseconds

123