Home
last modified time | relevance | path

Searched refs:polyeval (Results 1 – 25 of 57) sorted by relevance

123

/dports/devel/wasi-libcxx/llvm-project-13.0.1.src/libc/utils/FPUtil/
H A DPolyEval.h27 template <typename T> static inline T polyeval(T x, T a0) { return a0; } in polyeval() function
30 static inline T polyeval(T x, T a0, Ts... a) { in polyeval() function
31 return fma(x, polyeval(x, a...), a0); in polyeval()
42 template <typename T> static inline T polyeval(T x, T a0) { return a0; } in polyeval() function
45 static inline T polyeval(T x, T a0, Ts... a) { in polyeval() function
46 return x * polyeval(x, a...) + a0; in polyeval()
/dports/devel/llvm-devel/llvm-project-f05c95f10fc1d8171071735af8ad3a9e87633120/libc/src/__support/FPUtil/
H A DPolyEval.h27 template <typename T> static inline T polyeval(T x, T a0) { return a0; } in polyeval() function
30 static inline T polyeval(T x, T a0, Ts... a) { in polyeval() function
31 return fma(x, polyeval(x, a...), a0); in polyeval()
42 template <typename T> static inline T polyeval(T x, T a0) { return a0; } in polyeval() function
45 static inline T polyeval(T x, T a0, Ts... a) { in polyeval() function
46 return x * polyeval(x, a...) + a0; in polyeval()
/dports/devel/wasi-compiler-rt13/llvm-project-13.0.1.src/libc/utils/FPUtil/
H A DPolyEval.h27 template <typename T> static inline T polyeval(T x, T a0) { return a0; } in polyeval() function
30 static inline T polyeval(T x, T a0, Ts... a) { in polyeval() function
31 return fma(x, polyeval(x, a...), a0); in polyeval()
42 template <typename T> static inline T polyeval(T x, T a0) { return a0; } in polyeval() function
45 static inline T polyeval(T x, T a0, Ts... a) { in polyeval() function
46 return x * polyeval(x, a...) + a0; in polyeval()
/dports/devel/llvm13/llvm-project-13.0.1.src/libc/utils/FPUtil/
H A DPolyEval.h27 template <typename T> static inline T polyeval(T x, T a0) { return a0; } in polyeval() function
30 static inline T polyeval(T x, T a0, Ts... a) { in polyeval() function
31 return fma(x, polyeval(x, a...), a0); in polyeval()
42 template <typename T> static inline T polyeval(T x, T a0) { return a0; } in polyeval() function
45 static inline T polyeval(T x, T a0, Ts... a) { in polyeval() function
46 return x * polyeval(x, a...) + a0; in polyeval()
/dports/science/teem/teem-1.11.0-src/Testing/gage/
H A DprobePolynomial.c45 polyeval(double coef[POWER_MAX+1][POWER_MAX+1][POWER_MAX+1], in polyeval() function
272 vanal = polyeval(coef, 0, 0, 0, pos); in main()
273 ganal[0] = polyeval(coef, 1, 0, 0, pos); in main()
274 ganal[1] = polyeval(coef, 0, 1, 0, pos); in main()
275 ganal[2] = polyeval(coef, 0, 0, 1, pos); in main()
276 hanal[0] = polyeval(coef, 2, 0, 0, pos); in main()
277 hanal[1] = polyeval(coef, 1, 1, 0, pos); in main()
278 hanal[2] = polyeval(coef, 1, 0, 1, pos); in main()
280 hanal[4] = polyeval(coef, 0, 2, 0, pos); in main()
281 hanal[5] = polyeval(coef, 0, 1, 1, pos); in main()
[all …]
/dports/devel/wasi-libcxx/llvm-project-13.0.1.src/libc/src/math/generic/
H A Dexpm1f.cpp33 return x * __llvm_libc::fputil::polyeval(
40 return __llvm_libc::fputil::polyeval(
47 return __llvm_libc::fputil::polyeval(
/dports/devel/llvm-devel/llvm-project-f05c95f10fc1d8171071735af8ad3a9e87633120/libc/src/math/generic/
H A Dexpm1f.cpp33 return x * __llvm_libc::fputil::polyeval(
40 return __llvm_libc::fputil::polyeval(
47 return __llvm_libc::fputil::polyeval(
/dports/devel/wasi-compiler-rt13/llvm-project-13.0.1.src/libc/src/math/generic/
H A Dexpm1f.cpp33 return x * __llvm_libc::fputil::polyeval(
40 return __llvm_libc::fputil::polyeval(
47 return __llvm_libc::fputil::polyeval(
/dports/devel/llvm13/llvm-project-13.0.1.src/libc/src/math/generic/
H A Dexpm1f.cpp33 return x * __llvm_libc::fputil::polyeval(
40 return __llvm_libc::fputil::polyeval(
47 return __llvm_libc::fputil::polyeval(
/dports/lang/gcc10/gcc-10.3.0/gcc/testsuite/gcc.dg/
H A Dpr36584.c21 polyeval (double x, int n, double *Coeffs) in polyeval() function
39 fa = polyeval (a, order, coef); in regula_falsa()
40 fb = polyeval (b, order, coef); in regula_falsa()
62 fx = polyeval (x, order, coef); in regula_falsa()
135 lf = polyeval (a, sseq[0].ord, sseq[0].coef); in numchanges()
139 f = polyeval (a, s->ord, s->coef); in numchanges()
/dports/devel/arm-none-eabi-gcc492/gcc-4.9.2/gcc/testsuite/gcc.dg/
H A Dpr36584.c21 polyeval (double x, int n, double *Coeffs) in polyeval() function
39 fa = polyeval (a, order, coef); in regula_falsa()
40 fb = polyeval (b, order, coef); in regula_falsa()
62 fx = polyeval (x, order, coef); in regula_falsa()
135 lf = polyeval (a, sseq[0].ord, sseq[0].coef); in numchanges()
139 f = polyeval (a, s->ord, s->coef); in numchanges()
/dports/devel/avr-gcc/gcc-10.2.0/gcc/testsuite/gcc.dg/
H A Dpr36584.c21 polyeval (double x, int n, double *Coeffs) in polyeval() function
39 fa = polyeval (a, order, coef); in regula_falsa()
40 fb = polyeval (b, order, coef); in regula_falsa()
62 fx = polyeval (x, order, coef); in regula_falsa()
135 lf = polyeval (a, sseq[0].ord, sseq[0].coef); in numchanges()
139 f = polyeval (a, s->ord, s->coef); in numchanges()
/dports/devel/riscv64-gcc/gcc-8.3.0/gcc/testsuite/gcc.dg/
H A Dpr36584.c21 polyeval (double x, int n, double *Coeffs) in polyeval() function
39 fa = polyeval (a, order, coef); in regula_falsa()
40 fb = polyeval (b, order, coef); in regula_falsa()
62 fx = polyeval (x, order, coef); in regula_falsa()
135 lf = polyeval (a, sseq[0].ord, sseq[0].coef); in numchanges()
139 f = polyeval (a, s->ord, s->coef); in numchanges()
/dports/lang/gcc48/gcc-4.8.5/gcc/testsuite/gcc.dg/
H A Dpr36584.c21 polyeval (double x, int n, double *Coeffs) in polyeval() function
39 fa = polyeval (a, order, coef); in regula_falsa()
40 fb = polyeval (b, order, coef); in regula_falsa()
62 fx = polyeval (x, order, coef); in regula_falsa()
135 lf = polyeval (a, sseq[0].ord, sseq[0].coef); in numchanges()
139 f = polyeval (a, s->ord, s->coef); in numchanges()
/dports/lang/gcc11/gcc-11.2.0/gcc/testsuite/gcc.dg/
H A Dpr36584.c21 polyeval (double x, int n, double *Coeffs) in polyeval() function
39 fa = polyeval (a, order, coef); in regula_falsa()
40 fb = polyeval (b, order, coef); in regula_falsa()
62 fx = polyeval (x, order, coef); in regula_falsa()
135 lf = polyeval (a, sseq[0].ord, sseq[0].coef); in numchanges()
139 f = polyeval (a, s->ord, s->coef); in numchanges()
/dports/devel/arm-none-eabi-gcc/gcc-8.4.0/gcc/testsuite/gcc.dg/
H A Dpr36584.c21 polyeval (double x, int n, double *Coeffs) in polyeval() function
39 fa = polyeval (a, order, coef); in regula_falsa()
40 fb = polyeval (b, order, coef); in regula_falsa()
62 fx = polyeval (x, order, coef); in regula_falsa()
135 lf = polyeval (a, sseq[0].ord, sseq[0].coef); in numchanges()
139 f = polyeval (a, s->ord, s->coef); in numchanges()
/dports/devel/riscv64-none-elf-gcc/gcc-8.4.0/gcc/testsuite/gcc.dg/
H A Dpr36584.c21 polyeval (double x, int n, double *Coeffs) in polyeval() function
39 fa = polyeval (a, order, coef); in regula_falsa()
40 fb = polyeval (b, order, coef); in regula_falsa()
62 fx = polyeval (x, order, coef); in regula_falsa()
135 lf = polyeval (a, sseq[0].ord, sseq[0].coef); in numchanges()
139 f = polyeval (a, s->ord, s->coef); in numchanges()
/dports/devel/aarch64-none-elf-gcc/gcc-8.4.0/gcc/testsuite/gcc.dg/
H A Dpr36584.c21 polyeval (double x, int n, double *Coeffs) in polyeval() function
39 fa = polyeval (a, order, coef); in regula_falsa()
40 fb = polyeval (b, order, coef); in regula_falsa()
62 fx = polyeval (x, order, coef); in regula_falsa()
135 lf = polyeval (a, sseq[0].ord, sseq[0].coef); in numchanges()
139 f = polyeval (a, s->ord, s->coef); in numchanges()
/dports/lang/gcc9-aux/gcc-9.1.0/gcc/testsuite/gcc.dg/
H A Dpr36584.c21 polyeval (double x, int n, double *Coeffs) in polyeval() function
39 fa = polyeval (a, order, coef); in regula_falsa()
40 fb = polyeval (b, order, coef); in regula_falsa()
62 fx = polyeval (x, order, coef); in regula_falsa()
135 lf = polyeval (a, sseq[0].ord, sseq[0].coef); in numchanges()
139 f = polyeval (a, s->ord, s->coef); in numchanges()
/dports/lang/gcc9-devel/gcc-9-20211007/gcc/testsuite/gcc.dg/
H A Dpr36584.c21 polyeval (double x, int n, double *Coeffs) in polyeval() function
39 fa = polyeval (a, order, coef); in regula_falsa()
40 fb = polyeval (b, order, coef); in regula_falsa()
62 fx = polyeval (x, order, coef); in regula_falsa()
135 lf = polyeval (a, sseq[0].ord, sseq[0].coef); in numchanges()
139 f = polyeval (a, s->ord, s->coef); in numchanges()
/dports/devel/riscv32-unknown-elf-gcc/gcc-8.4.0/gcc/testsuite/gcc.dg/
H A Dpr36584.c21 polyeval (double x, int n, double *Coeffs) in polyeval() function
39 fa = polyeval (a, order, coef); in regula_falsa()
40 fb = polyeval (b, order, coef); in regula_falsa()
62 fx = polyeval (x, order, coef); in regula_falsa()
135 lf = polyeval (a, sseq[0].ord, sseq[0].coef); in numchanges()
139 f = polyeval (a, s->ord, s->coef); in numchanges()
/dports/lang/gcc11-devel/gcc-11-20211009/gcc/testsuite/gcc.dg/
H A Dpr36584.c21 polyeval (double x, int n, double *Coeffs) in polyeval() function
39 fa = polyeval (a, order, coef); in regula_falsa()
40 fb = polyeval (b, order, coef); in regula_falsa()
62 fx = polyeval (x, order, coef); in regula_falsa()
135 lf = polyeval (a, sseq[0].ord, sseq[0].coef); in numchanges()
139 f = polyeval (a, s->ord, s->coef); in numchanges()
/dports/lang/gcc8/gcc-8.5.0/gcc/testsuite/gcc.dg/
H A Dpr36584.c21 polyeval (double x, int n, double *Coeffs) in polyeval() function
39 fa = polyeval (a, order, coef); in regula_falsa()
40 fb = polyeval (b, order, coef); in regula_falsa()
62 fx = polyeval (x, order, coef); in regula_falsa()
135 lf = polyeval (a, sseq[0].ord, sseq[0].coef); in numchanges()
139 f = polyeval (a, s->ord, s->coef); in numchanges()
/dports/lang/gnat_util/gcc-6-20180516/gcc/testsuite/gcc.dg/
H A Dpr36584.c21 polyeval (double x, int n, double *Coeffs) in polyeval() function
39 fa = polyeval (a, order, coef); in regula_falsa()
40 fb = polyeval (b, order, coef); in regula_falsa()
62 fx = polyeval (x, order, coef); in regula_falsa()
135 lf = polyeval (a, sseq[0].ord, sseq[0].coef); in numchanges()
139 f = polyeval (a, s->ord, s->coef); in numchanges()
/dports/lang/gcc9/gcc-9.4.0/gcc/testsuite/gcc.dg/
H A Dpr36584.c21 polyeval (double x, int n, double *Coeffs) in polyeval() function
39 fa = polyeval (a, order, coef); in regula_falsa()
40 fb = polyeval (b, order, coef); in regula_falsa()
62 fx = polyeval (x, order, coef); in regula_falsa()
135 lf = polyeval (a, sseq[0].ord, sseq[0].coef); in numchanges()
139 f = polyeval (a, s->ord, s->coef); in numchanges()

123