Searched defs:ax (Results 1 - 10 of 10) sorted by relevance

/openjdk7/jdk/src/share/native/java/lang/fdlibm/src/
H A Ds_log1p.c120 int k,hx,hu=0,ax; local
123 ax = hx&0x7fffffff;
127 if(ax>=0x3ff00000) { /* x <= -1.0 */
137 if(ax<0x3e200000) { /* |x| < 2**-29 */
139 &&ax<0x3c900000) /* |x| < 2**-54 */
H A De_pow.c118 double z,ax,z_h,z_l,p_h,p_l; local
177 ax = fabs(x);
181 z = ax; /*x is +-0,+-inf,+-1*/
212 t = ax-one; /* t has 20 trailing zeros */
224 {ax *= two53; n -= 53; ix = __HI(ax); }
232 __HI(ax) = ix;
235 u = ax-bp[k]; /* bp[0]=1.0, bp[1]=1.5 */
236 v = one/(ax+bp[k]);
240 /* t_h=ax
[all...]
/openjdk7/jdk/src/share/classes/sun/font/
H A DStrikeMetrics.java94 StrikeMetrics(float ax, float ay, float dx, float dy, float bx, float by, argument
96 ascentX = ax;
/openjdk7/hotspot/test/compiler/6689060/
H A DTest.java37 int ax[]; field in class:Point
59 p.ax = new int[2];
62 p.ax[0] = x;
65 return p.ax[0] * p.ay[1];
70 p.ax = new int[2];
73 p.ax[0] = x;
76 return p.ax[0] * p.ay[1];
313 p.ax = new int[l];
316 p.ax[i] = x;
319 return p.ax[
[all...]
/openjdk7/jdk/src/share/classes/sun/java2d/pisces/
H A DCurve.java32 float ax, ay, bx, by, cx, cy, dx, dy; field in class:Curve
61 ax = 3 * (x2 - x3) + x4 - x1;
69 dax = 3 * ax; day = 3 * ay;
77 ax = ay = 0f;
90 return t * (t * (t * ax + bx) + cx) + dx;
/openjdk7/hotspot/src/share/vm/runtime/
H A DsharedRuntimeTrans.cpp510 double z,ax,z_h,z_l,p_h,p_l; local
569 ax = fabsd(x);
573 z = ax; /*x is +-0,+-inf,+-1*/
613 t = ax-one; /* t has 20 trailing zeros */
625 {ax *= two53; n -= 53; ix = __HI(ax); }
633 __HI(ax) = ix;
636 u = ax-bp[k]; /* bp[0]=1.0, bp[1]=1.5 */
637 v = one/(ax+bp[k]);
641 /* t_h=ax
[all...]
/openjdk7/jdk/src/share/native/sun/java2d/cmm/lcms/
H A Dcmscnvrt.c162 cmsFloat64Number ax, ay, az, bx, by, bz, tx, ty, tz; local
168 // This is a linear scaling in the form ax+b, where
176 ax = (BlackPointOut->X - cmsD50_XYZ()->X) / tx;
184 _cmsVEC3init(&m ->v[0], ax, 0, 0);
/openjdk7/jdk/src/share/classes/javax/swing/text/html/
H A DStyleSheet.java2248 * @param ax x coordinate to place the bullet
2254 void drawIcon(Graphics g, int ax, int ay, int aw, int ah, argument
2259 int x = ax + gap;
2270 * @param ax x coordinate to place the bullet
2276 void drawShape(Graphics g, CSS.Value type, int ax, int ay, int aw, argument
2280 int x = ax + gap;
2297 * @param ax x coordinate to place the bullet
2303 void drawLetter(Graphics g, char letter, int ax, int ay, int aw, argument
2311 int x = ax + gap;
/openjdk7/jdk/src/share/native/sun/font/
H A DfreetypeScaler.c442 jfloat ax, ay, dx, dy, bx, by, lx, ly, mx, my; local
492 ax = 0;
520 ax, ay, dx, dy, bx, by, lx, ly, mx, my);
/openjdk7/jdk/src/share/native/sun/java2d/loops/
H A DProcessPath.c586 jint ax = (jint)((coords[0] - 2*coords[2] + local
594 jint ddpx = 2*ax;
597 jint dpx = ax + bx;
619 dpx = (dpx<<1) - ax;
803 double ax = coords[0] - 2*coords[2] + coords[4]; local
804 if (ax != 0) {
806 * ax*t + bx = 0
810 param = bx/ax;
1023 jint ax = (jint)((-coords[0] + 3*coords[2] - 3*coords[4] + local
1036 jint dddpx = 6*ax;
1307 double ax = -coords[0] + 3*coords[2] - 3*coords[4] + coords[6]; local
[all...]

Completed in 150 milliseconds