/openjdk7/jdk/src/share/native/java/lang/fdlibm/src/ |
H A D | s_logb.c | 42 int lx,ix; local 43 ix = (__HI(x))&0x7fffffff; /* high |x| */ 45 if((ix|lx)==0) return -1.0/fabs(x); 46 if(ix>=0x7ff00000) return x*x; 47 if((ix>>=20)==0) /* IEEE 754 logb */ 50 return (double) (ix-1023);
|
H A D | s_ilogb.c | 42 int hx,lx,ix; local 51 for (ix = -1043; lx>0; lx<<=1) ix -=1; 53 for (ix = -1022,hx<<=11; hx>0; hx<<=1) ix -=1; 55 return ix;
|
H A D | s_cos.c | 68 int n, ix; local 71 ix = __HI(x); 74 ix &= 0x7fffffff; 75 if(ix <= 0x3fe921fb) return __kernel_cos(x,z); 78 else if (ix>=0x7ff00000) return x-x;
|
H A D | s_frexp.c | 53 int hx, ix, lx; local 55 ix = 0x7fffffff&hx; 58 if(ix>=0x7ff00000||((ix|lx)==0)) return x; /* 0,inf,nan */ 59 if (ix<0x00100000) { /* subnormal */ 62 ix = hx&0x7fffffff; 65 *eptr += (ix>>20)-1022;
|
H A D | s_sin.c | 68 int n, ix; local 71 ix = __HI(x); 74 ix &= 0x7fffffff; 75 if(ix <= 0x3fe921fb) return __kernel_sin(x,z,0); 78 else if (ix>=0x7ff00000) return x-x;
|
H A D | s_tan.c | 67 int n, ix; local 70 ix = __HI(x); 73 ix &= 0x7fffffff; 74 if(ix <= 0x3fe921fb) return __kernel_tan(x,z,1); 77 else if (ix>=0x7ff00000) return x-x; /* NaN */
|
H A D | e_atanh.c | 63 int hx,ix; local 67 ix = hx&0x7fffffff; 68 if ((ix|((lx|(-lx))>>31))>0x3ff00000) /* |x|>1 */ 70 if(ix==0x3ff00000) 72 if(ix<0x3e300000&&(huge+x)>zero) return x; /* x<2**-28 */ 73 __HI(x) = ix; /* x <- |x| */ 74 if(ix<0x3fe00000) { /* x < 0.5 */
|
H A D | e_cosh.c | 64 int ix; local 68 ix = __HI(x); 69 ix &= 0x7fffffff; 72 if(ix>=0x7ff00000) return x*x; 75 if(ix<0x3fd62e43) { 78 if (ix<0x3c800000) return w; /* cosh(tiny) = 1 */ 83 if (ix < 0x40360000) { 89 if (ix < 0x40862E42) return half*__ieee754_exp(fabs(x)); 93 if (ix<0x408633CE || 94 ((ix [all...] |
H A D | e_sinh.c | 61 int ix,jx; local 66 ix = jx&0x7fffffff; 69 if(ix>=0x7ff00000) return x+x; 74 if (ix < 0x40360000) { /* |x|<22 */ 75 if (ix<0x3e300000) /* |x|<2**-28 */ 78 if(ix<0x3ff00000) return h*(2.0*t-t*t/(t+one)); 83 if (ix < 0x40862E42) return h*__ieee754_exp(fabs(x)); 87 if (ix<0x408633CE || ((ix==0x408633ce)&&(lx<=(unsigned)0x8fb9f87d))) {
|
H A D | s_asinh.c | 57 int hx,ix; local 59 ix = hx&0x7fffffff; 60 if(ix>=0x7ff00000) return x+x; /* x is inf or NaN */ 61 if(ix< 0x3e300000) { /* |x|<2**-28 */ 64 if(ix>0x41b00000) { /* |x| > 2**28 */ 66 } else if (ix>0x40000000) { /* 2**28 > |x| > 2.0 */
|
H A D | s_nextafter.c | 43 int hx,hy,ix,iy; local 50 ix = hx&0x7fffffff; /* |x| */ 53 if(((ix>=0x7ff00000)&&((ix-0x7ff00000)|lx)!=0) || /* x is nan */ 57 if((ix|lx)==0) { /* x == 0 */
|
H A D | s_tanh.c | 67 int jx,ix; local 71 ix = jx&0x7fffffff; 74 if(ix>=0x7ff00000) { 80 if (ix < 0x40360000) { /* |x|<22 */ 81 if (ix<0x3c800000) /* |x|<2**-55 */ 83 if (ix>=0x3ff00000) { /* |x|>=1 */
|
H A D | e_fmod.c | 48 int n,hx,hy,hz,ix,iy,sx,i; local 69 /* determine ix = ilogb(x) */ 72 for (ix = -1043, i=lx; i>0; i<<=1) ix -=1; 74 for (ix = -1022,i=(hx<<11); i>0; i<<=1) ix -=1; 76 } else ix = (hx>>20)-1023; 88 if(ix >= -1022) 91 n = -1022-ix; 114 n = ix [all...] |
H A D | k_cos.c | 85 int ix; local 86 ix = __HI(x)&0x7fffffff; /* ix = |x|'s high word*/ 87 if(ix<0x3e400000) { /* if x < 2**27 */ 92 if(ix < 0x3FD33333) /* if |x| < 0.3 */ 95 if(ix > 0x3fe90000) { /* x > 0.78125 */ 98 __HI(qx) = ix-0x00200000; /* x/4 */
|
H A D | k_sin.c | 78 int ix; local 79 ix = __HI(x)&0x7fffffff; /* high word of x */ 80 if(ix<0x3e400000) /* |x| < 2**-27 */
|
H A D | s_atan.c | 105 int ix,hx,id; local 108 ix = hx&0x7fffffff; 109 if(ix>=0x44100000) { /* if |x| >= 2^66 */ 110 if(ix>0x7ff00000|| 111 (ix==0x7ff00000&&(__LO(x)!=0))) 115 } if (ix < 0x3fdc0000) { /* |x| < 0.4375 */ 116 if (ix < 0x3e200000) { /* |x| < 2^-29 */ 122 if (ix < 0x3ff30000) { /* |x| < 1.1875 */ 123 if (ix < 0x3fe60000) { /* 7/16 <=|x|<11/16 */ 129 if (ix < [all...] |
H A D | e_atan2.c | 76 int k,m,hx,hy,ix,iy; local 79 hx = __HI(x); ix = hx&0x7fffffff; 83 if(((ix|((lx|-lx)>>31))>0x7ff00000)|| 99 if((ix|lx)==0) return (hy<0)? -pi_o_2-tiny: pi_o_2+tiny; 102 if(ix==0x7ff00000) { 123 k = (iy-ix)>>20;
|
H A D | k_tan.c | 94 int ix,hx; local 96 ix = hx&0x7fffffff; /* high word of |x| */ 97 if(ix<0x3e300000) { /* x < 2**-28 */ 99 if (((ix | __LO(x)) | (iy + 1)) == 0) 118 if(ix>=0x3FE59428) { /* |x|>=0.6744 */ 136 if(ix>=0x3FE59428) {
|
H A D | e_acos.c | 81 int hx,ix; local 83 ix = hx&0x7fffffff; 84 if(ix>=0x3ff00000) { /* |x| >= 1 */ 85 if(((ix-0x3ff00000)|__LO(x))==0) { /* |x|==1 */ 91 if(ix<0x3fe00000) { /* |x| < 0.5 */ 92 if(ix<=0x3c600000) return pio2_hi+pio2_lo;/*if|x|<2**-57*/
|
/openjdk7/hotspot/src/os/solaris/vm/ |
H A D | thread_solaris.inline.hpp | 55 int ix = pd_cache_index(raw); local 56 Thread* candidate = ThreadLocalStorage::_get_thread_cache[ix]; 61 return ThreadLocalStorage::get_thread_via_cache_slowly(raw, ix);
|
/openjdk7/hotspot/src/os_cpu/solaris_sparc/vm/ |
H A D | threadLS_solaris_sparc.hpp | 67 uintptr_t ix = (int) (((raw_id >> 9) ^ (raw_id >> 20)) % _pd_cache_size); local 68 return ix;
|
/openjdk7/hotspot/src/os_cpu/solaris_x86/vm/ |
H A D | threadLS_solaris_x86.hpp | 78 int ix = (int) (((raw_id >> 9) ^ (raw_id >> 20)) % _pd_cache_size); local 79 return ix;
|
/openjdk7/jdk/src/share/classes/sun/java2d/pipe/ |
H A D | GlyphListPipe.java | 84 int ix, int iy) 90 sg2d, data, offset, length, ix, iy); 94 double origin[] = {ix + info.originX, iy + info.originY}; 99 x = ix + info.originX + sg2d.transX; 111 tl.draw(sg2d, ix, iy); 82 drawChars(SunGraphics2D sg2d, char data[], int offset, int length, int ix, int iy) argument
|
/openjdk7/jdk/src/share/classes/javax/naming/directory/ |
H A D | Attribute.java | 263 * This method returns the value at the <tt>ix</tt> index of the list of 267 * @param ix The index of the value in the ordered list of attribute values. 268 * 0 <= <tt>ix</tt> < <tt>size()</tt>. 269 * @return The possibly null attribute value at index <tt>ix</tt>; 273 * @exception IndexOutOfBoundsException If <tt>ix</tt> is outside the specified range. 275 Object get(int ix) throws NamingException; argument 279 * This method removes the value at the <tt>ix</tt> index of the list of 283 * Values located at indices greater than <tt>ix</tt> are shifted up towards 286 * @param ix The index of the value to remove. 287 * 0 <= <tt>ix</t 292 remove(int ix) argument 312 add(int ix, Object attrVal) argument 334 set(int ix, Object attrVal) argument [all...] |
/openjdk7/jdk/src/solaris/native/java/io/ |
H A D | canonicalize_md.c | 78 splitNames(char *names, char **ix) argument 84 ix[i++] = p++; 100 joinNames(char *names, int nc, char **ix) argument 106 if (!ix[i]) continue; 110 if (p == ix[i]) { 113 char *q = ix[i]; 132 char **ix; local 138 ix = (char **)alloca(nc * sizeof(char *)); 139 splitNames(names, ix); 146 char *p = ix[ [all...] |