Home | History | Annotate | Download | only in fdlibm

Lines Matching defs:aT

7  * Developed at SunSoft, a Sun Microsystems, Inc. business.
60 static const double aT[] = {
62 static double aT[] = {
126 /* break sum from i=0 to 10 aT[i]z**(i+1) into odd and even poly */
127 s1 = z*(aT[0]+w*(aT[2]+w*(aT[4]+w*(aT[6]+w*(aT[8]+w*aT[10])))));
128 s2 = w*(aT[1]+w*(aT[3]+w*(aT[5]+w*(aT[7]+w*aT[9]))));