/openjdk7/jdk/src/share/native/java/lang/fdlibm/src/ |
H A D | s_isnan.c | 41 int hx,lx; local 43 lx = __LO(x); 44 hx |= (unsigned)(lx|(-lx))>>31;
|
H A D | s_logb.c | 42 int lx,ix; local 44 lx = __LO(x); /* low x */ 45 if((ix|lx)==0) return -1.0/fabs(x);
|
H A D | s_ilogb.c | 42 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 D | s_frexp.c | 53 int hx, ix, lx; local 56 lx = __LO(x); 58 if(ix>=0x7ff00000||((ix|lx)==0)) return x; /* 0,inf,nan */
|
H A D | e_atanh.c | 64 unsigned lx; local 66 lx = __LO(x); /* low word */ 68 if ((ix|((lx|(-lx))>>31))>0x3ff00000) /* |x|>1 */
|
H A D | e_cosh.c | 65 unsigned lx; local 92 lx = *( (((*(unsigned*)&one)>>29)) + (unsigned*)&x); 94 ((ix==0x408633ce)&&(lx<=(unsigned)0x8fb9f87d))) {
|
H A D | e_remainder.c | 53 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 D | e_sinh.c | 62 unsigned lx; local 86 lx = *( (((*(unsigned*)&one)>>29)) + (unsigned*)&x); 87 if (ix<0x408633CE || ((ix==0x408633ce)&&(lx<=(unsigned)0x8fb9f87d))) {
|
H A D | s_nextafter.c | 44 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 D | s_scalbn.c | 53 int k,hx,lx; local 55 lx = __LO(x); 58 if ((lx|(hx&0x7fffffff))==0) return x; /* +-0 */
|
H A D | e_fmod.c | 49 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 D | e_log10.c | 83 unsigned lx; local 86 lx = __LO(x); /* low word of x */ 90 if (((hx&0x7fffffff)|lx)==0)
|
H A D | e_atan2.c | 77 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 D | e_jn.c | 73 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 D | e_log.c | 107 unsigned lx; local 110 lx = __LO(x); /* low word of x */ 114 if (((hx&0x7fffffff)|lx)==0)
|
H A D | e_j0.c | 178 int hx,ix,lx; local 182 lx = __LO(x); 185 if((ix|lx)==0) return -one/zero;
|
H A D | e_j1.c | 179 int hx,ix,lx; local 183 lx = __LO(x); 186 if((ix|lx)==0) return -one/zero;
|
H A D | e_pow.c | 122 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) {
|
H A D | e_lgamma_r.c | 226 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;
|
/openjdk7/jdk/src/share/classes/sun/font/ |
H A D | StrikeMetrics.java | 95 float lx, float ly, float mx, float my) { 102 leadingX = lx; 94 StrikeMetrics(float ax, float ay, float dx, float dy, float bx, float by, float lx, float ly, float mx, float my) argument
|
H A D | LayoutPathImpl.java | 664 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/jdk/src/share/native/sun/java2d/loops/ |
H A D | FillParallelogram.c | 116 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,
|
H A D | DrawParallelogram.c | 286 jlong lx = PGRAM_INIT_X(loy, local 294 lx, pLeft->dx,
|
/openjdk7/hotspot/src/share/vm/runtime/ |
H A D | sharedRuntimeTrans.cpp | 89 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...] |
H A D | sharedRuntimeTrig.cpp | 98 int k,hx,lx; local 100 lx = __LO(x); 103 if ((lx|(hx&0x7fffffff))==0) return x; /* +-0 */
|