Searched refs:ax (Results 1 - 21 of 21) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/swing/
H A DLayoutComparator.java114 int ax = a.getX(), ay = a.getY(), bx = b.getX(), by = b.getY();
123 return (ax < bx) ? -1 : ((ax > bx) ? 1 : zOrder);
132 return (ax > bx) ? -1 : ((ax < bx) ? 1 : zOrder);
142 if (Math.abs(ax - bx) < ROW_TOLERANCE) {
145 return (ax < bx) ? -1 : 1;
151 if (Math.abs(ax - bx) < ROW_TOLERANCE) {
154 return (ax > bx) ? -1 : 1;
/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/native/sun/java2d/loops/
H A DDrawLine.c96 jint dx, dy, ax, ay; \
106 ax = (dx < 0) ? -dx : dx; \
113 xmajor = (ax >= ay); \
133 xsteps = 2 * ysteps * ax + ay; \
135 xsteps += ay - ax - 1; \
152 ysteps = 2 * xsteps * ay + ax; \
154 ysteps += ax - ay - 1; \
156 ysteps = ysteps / (2 * ax); \
174 xsteps = 2 * ysteps * ax + ay; \
176 xsteps += ay - ax; \
[all...]
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...]
/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;
H A DRenderer.java222 dx = c.ax / (1 << (3 * countlg)) + c.bx / (1 << (2 * countlg)) + c.cx / (1 << countlg);
/openjdk7/hotspot/src/os_cpu/windows_x86/vm/
H A Dbytes_windows_x86.inline.hpp38 mov ax, x
41 // no return statement needed, result is already in ax
H A DorderAccess_windows_x86.inline.hpp113 mov ax, v;
114 xchg ax, word ptr [edx];
174 mov ax, v;
175 xchg ax, word ptr [edx];
/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/classes/sun/java2d/loops/
H A DGeneralRenderer.java252 int ax = boundPts[6];
262 if (ax >= ay) {
266 errminor = ax * 2;
269 ax = -ax; /* For clipping adjustment below */
274 errmajor = ax * 2;
287 error += ysteps * ax * 2;
499 int ax = (dx < 0) ? -dx : dx;
501 boolean xmajor = (ax >= ay);
521 xsteps = 2 * ysteps * ax
[all...]
H A DProcessPath.java689 int ax = (int)((coords[0] - 2*coords[2] +
697 int ddpx = 2*ax;
700 int dpx = ax + bx;
723 dpx = (dpx<<1) - ax;
880 double ax = coords[0] - 2*coords[2] + coords[4];
881 if (ax != 0) {
883 * ax*t + bx = 0
887 param = bx/ax;
1015 int ax = (int)((-coords[0] + 3*coords[2] - 3*coords[4] +
1028 int dddpx = 6*ax;
[all...]
/openjdk7/jdk/src/share/classes/sun/dc/
H A DDuctusRenderingEngine.java186 float ax = 0.0f;
228 point[0] += ax;
234 point[0] += (newax + ax) / 2;
242 ax = newax;
438 float ax = 0.0f;
480 point[0] += ax;
486 point[0] += (newax + ax) / 2;
494 ax = newax;
/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/jdk/src/share/classes/com/sun/java/util/jar/pack/
H A DPopulationCoding.java397 int ax = x;
398 if (ax < 0) ax = -ax;
399 if (ax < 0) return y; //x is MIN_VALUE
403 if (ax < ay) return x;
404 if (ax > ay) return y;
/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/test/java/awt/regtesthelpers/
H A DUtil.java330 int ax = Math.abs(dx) * 2;
341 if (ax > ay) {
342 d = ay - ax/2;
352 d = d - ax;
358 d = ax - ay/2;
371 d = d + ax;
/openjdk7/jdk/src/share/classes/java/awt/geom/
H A DArc2D.java1259 double ax = getX();
1261 double axw = ax + aw;
1267 if (x >= axw || y >= ayh || xw <= ax || yh <= ay) {
1295 ax < xw && containsAngle(180))) {
/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);

Completed in 100 milliseconds