Home | History | Annotate | Download | only in base

Lines Matching defs:aT

6 // Developed at SunSoft, a Sun Microsystems, Inc. business.
46 * Unlike the original code, we determine the endianness at compile
47 * time, not at run time; I don't see much benefit to selecting
48 * endianness at run time.
357 * magnitude of the latter is at least a quarter of x*x/2,
1185 static const double aT[] = {
1244 /* break sum from i=0 to 10 aT[i]z**(i+1) into odd and even poly */
1245 s1 = z * (aT[0] +
1246 w * (aT[2] + w * (aT[4] + w * (aT[6] + w * (aT[8] + w * aT[10])))));
1247 s2 = w * (aT[1] + w * (aT[3] + w * (aT[5] + w * (aT[7] + w * aT[9]))));
2110 * log10 is monotonic at all binary break points.