Searched refs:lx (Results 1 - 25 of 40) sorted by relevance

12

/openjdk7/jdk/src/share/native/java/lang/fdlibm/src/
H A Ds_isnan.c41 int hx,lx; local
43 lx = __LO(x);
44 hx |= (unsigned)(lx|(-lx))>>31;
H A Ds_nextafter.c44 unsigned lx,ly; local
47 lx = __LO(x); /* low word of x */
53 if(((ix>=0x7ff00000)&&((ix-0x7ff00000)|lx)!=0) || /* x is nan */
57 if((ix|lx)==0) { /* x == 0 */
64 if(hx>hy||((hx==hy)&&(lx>ly))) { /* x > y, x -= ulp */
65 if(lx==0) hx -= 1;
66 lx -= 1;
68 lx += 1;
69 if(lx==0) hx += 1;
72 if(hy>=0||hx>hy||((hx==hy)&&(lx>l
[all...]
H A Ds_ilogb.c42 int hx,lx,ix; local
46 lx = __LO(x);
47 if((hx|lx)==0)
51 for (ix = -1043; lx>0; lx<<=1) ix -=1;
H A De_fmod.c49 unsigned lx,ly,lz; local
52 lx = __LO(x); /* low word of x */
64 if((hx<hy)||(lx<ly)) return x; /* |x|<|y| return x */
65 if(lx==ly)
72 for (ix = -1043, i=lx; i>0; i<<=1) ix -=1;
87 /* set up {hx,lx}, {hy,ly} and align y to x */
93 hx = (hx<<n)|(lx>>(32-n));
94 lx <<= n;
96 hx = lx<<(n-32);
97 lx
[all...]
H A Ds_logb.c42 int lx,ix; local
44 lx = __LO(x); /* low x */
45 if((ix|lx)==0) return -1.0/fabs(x);
H A Ds_frexp.c53 int hx, ix, lx; local
56 lx = __LO(x);
58 if(ix>=0x7ff00000||((ix|lx)==0)) return x; /* 0,inf,nan */
H A De_atanh.c64 unsigned lx; local
66 lx = __LO(x); /* low word */
68 if ((ix|((lx|(-lx))>>31))>0x3ff00000) /* |x|>1 */
H A De_log10.c83 unsigned lx; local
86 lx = __LO(x); /* low word of x */
90 if (((hx&0x7fffffff)|lx)==0)
H A De_atan2.c77 unsigned lx,ly; local
80 lx = __LO(x);
83 if(((ix|((lx|-lx)>>31))>0x7ff00000)||
86 if(((hx-0x3ff00000)|lx)==0) return atan(y); /* x=1.0 */
99 if((ix|lx)==0) return (hy<0)? -pi_o_2-tiny: pi_o_2+tiny;
H A De_cosh.c65 unsigned lx; local
92 lx = *( (((*(unsigned*)&one)>>29)) + (unsigned*)&x);
94 ((ix==0x408633ce)&&(lx<=(unsigned)0x8fb9f87d))) {
H A De_remainder.c53 unsigned sx,lx,lp; local
57 lx = __LO(x); /* low word of x */
73 if (((hx-hp)|(lx-lp))==0) return zero*x;
H A De_sinh.c62 unsigned lx; local
86 lx = *( (((*(unsigned*)&one)>>29)) + (unsigned*)&x);
87 if (ix<0x408633CE || ((ix==0x408633ce)&&(lx<=(unsigned)0x8fb9f87d))) {
H A Ds_scalbn.c53 int k,hx,lx; local
55 lx = __LO(x);
58 if ((lx|(hx&0x7fffffff))==0) return x; /* +-0 */
H A De_jn.c73 int i,hx,ix,lx, sgn; local
82 lx = __LO(x);
84 if((ix|((unsigned)(lx|-lx))>>31)>0x7ff00000) return x+x;
94 if((ix|lx)==0||ix>=0x7ff00000) /* if x is 0 or inf */
234 int i,hx,ix,lx; local
240 lx = __LO(x);
242 if((ix|((unsigned)(lx|-lx))>>31)>0x7ff00000) return x+x;
243 if((ix|lx)
[all...]
H A De_log.c107 unsigned lx; local
110 lx = __LO(x); /* low word of x */
114 if (((hx&0x7fffffff)|lx)==0)
H A De_lgamma_r.c226 int i,hx,lx,ix; local
229 lx = __LO(x);
235 if((ix|lx)==0) return one/zero;
253 if((((ix-0x3ff00000)|lx)==0)||(((ix-0x40000000)|lx)==0)) r = 0;
H A De_pow.c122 unsigned lx,ly; local
125 hx = __HI(x); lx = __LO(x);
133 if(ix > 0x7ff00000 || ((ix==0x7ff00000)&&(lx!=0)) ||
160 if(((ix-0x3ff00000)|lx)==0)
179 if(lx==0) {
/openjdk7/langtools/test/tools/javac/protectedAccess/
H A DProtectedMemberAccess2.java58 pkg.SuperClass lx = new pkg.SuperClass();
63 lx.pi = 1; // illegal
64 lx.spi = 2; // illegal
69 int k = lx.pi; // illegal
70 int l = lx.spi; // illegal
75 int w = lx.pm(); // illegal
76 int z = lx.spm(); // illegal
100 pkg.SuperClass lx = new pkg.SuperClass();
108 lx.pi = 1; // illegal
109 lx
[all...]
H A DProtectedMemberAccess4.java64 pkg.SuperClass lx = new pkg.SuperClass();
69 lx.pi = 1; // illegal
70 lx.spi = 2; // ok
75 int k = lx.pi; // illegal
76 int l = lx.spi; // ok
81 int w = lx.pm(); // illegal
82 int z = lx.spm(); // ok
106 pkg.SuperClass lx = new pkg.SuperClass();
114 lx.pi = 1; // illegal
115 lx
[all...]
H A DProtectedMemberAccess1.java228 ProtectedMemberAccess2a lx =
234 lx.pi = 1;
235 lx.spi = 2;
240 int k = lx.pi;
241 int l = lx.spi;
246 int w = lx.pm();
247 int z = lx.spm();
271 ProtectedMemberAccess2a lx =
280 lx.pi = 1;
281 lx
[all...]
H A DProtectedMemberAccess3.java63 pkg.SuperClass lx = new pkg.SuperClass();
71 lx.pi = 1; // illegal
72 lx.spi = 2; // illegal
80 int w = lx.pm(); // illegal
81 int z = lx.spm(); // illegal
89 int k = lx.pi; // illegal
90 int l = lx.spi; // illegal
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/View/src/com/sun/hotspot/igv/view/
H A DSlotLayout.java82 int lx = -x;
86 lx += (max - width) / 2;
91 lx += max - width;
94 child.resolveBounds(new Point(lx, ly), new Rectangle(x, y, width, height));
119 int lx = pos - x;
131 child.resolveBounds(new Point(lx, ly), new Rectangle(x, y, width, height));
/openjdk7/jdk/src/share/native/sun/java2d/loops/
H A DFillParallelogram.c116 jlong lx = PGRAM_INIT_X(loy, x0, y0, lslope); local
120 lx, ldx, rx, rdx,
134 jlong lx = PGRAM_INIT_X(loy, dx1, dy1, rslope); local
138 lx, rdx, rx, rdx,
150 jlong lx = PGRAM_INIT_X(loy, x0, y0, lslope); local
154 lx, ldx, rx, ldx,
166 jlong lx = PGRAM_INIT_X(loy, dx1, dy1, rslope); local
170 lx, rdx, rx, ldx,
/openjdk7/jdk/src/share/classes/sun/font/
H A DLayoutPathImpl.java664 double lx, ly; // limit field in class:LayoutPathImpl.SegmentPath.LineInfo
670 void set(double sx, double sy, double lx, double ly) { argument
673 this.lx = lx;
675 double dx = lx - sx;
687 this.lx = rhs.lx;
699 if (lx >= sx) {
700 if (sx < hi && lx >= lo) {
705 if (lx > h
[all...]
/openjdk7/hotspot/src/share/vm/runtime/
H A DsharedRuntimeTrans.cpp89 int k,hx,lx; local
91 lx = __LO(x);
94 if ((lx|(hx&0x7fffffff))==0) return x; /* +-0 */
182 unsigned lx; local
185 lx = __LO(x); /* low word of x */
189 if (((hx&0x7fffffff)|lx)==0)
276 unsigned lx; local
279 lx = __LO(x); /* low word of x */
283 if (((hx&0x7fffffff)|lx)==0)
514 unsigned lx,l local
[all...]

Completed in 130 milliseconds

12