WIP: add an initial skeleton for a real scsi.device based upon the ata device impleme...
[AROS.git] / compiler / stdc / math / polevll.c
blob5c29925f3e2642f7764a588abeb4d7adc15d69ee
1 /* $OpenBSD: polevll.c,v 1.2 2013/11/12 20:35:09 martynas Exp $ */
3 /*
4 * Copyright (c) 2008 Stephen L. Moshier <steve@moshier.net>
6 * Permission to use, copy, modify, and distribute this software for any
7 * purpose with or without fee is hereby granted, provided that the above
8 * copyright notice and this permission notice appear in all copies.
10 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
11 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
12 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
13 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
14 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
15 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
16 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
19 /* polevll.c
20 * p1evll.c
22 * Evaluate polynomial
26 * SYNOPSIS:
28 * int N;
29 * long double x, y, coef[N+1], polevl[];
31 * y = polevll( x, coef, N );
35 * DESCRIPTION:
37 * Evaluates polynomial of degree N:
39 * 2 N
40 * y = C + C x + C x +...+ C x
41 * 0 1 2 N
43 * Coefficients are stored in reverse order:
45 * coef[0] = C , ..., coef[N] = C .
46 * N 0
48 * The function p1evll() assumes that coef[N] = 1.0 and is
49 * omitted from the array. Its calling arguments are
50 * otherwise the same as polevll().
53 * SPEED:
55 * In the interest of speed, there are no checks for out
56 * of bounds arithmetic. This routine is used by most of
57 * the functions in the library. Depending on available
58 * equipment features, the user may wish to rewrite the
59 * program in microcode or assembly language.
63 #include "math.h"
65 #include "math_private.h"
68 * Polynomial evaluator:
69 * P[0] x^n + P[1] x^(n-1) + ... + P[n]
71 long double
72 __polevll(long double x, void *PP, int n)
74 long double y;
75 long double *P;
77 P = (long double *)PP;
78 y = *P++;
79 do {
80 y = y * x + *P++;
81 } while (--n);
83 return (y);
87 * Polynomial evaluator:
88 * x^n + P[0] x^(n-1) + P[1] x^(n-2) + ... + P[n]
90 long double
91 __p1evll(long double x, void *PP, int n)
93 long double y;
94 long double *P;
96 P = (long double *)PP;
97 n -= 1;
98 y = x + *P++;
99 do {
100 y = y * x + *P++;
101 } while (--n);
103 return (y);