Searched defs:ix (Results 1 - 25 of 59) sorted by relevance

123

/openjdk7/jdk/src/share/native/java/lang/fdlibm/src/
H A Ds_logb.c42 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 Ds_ilogb.c42 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 Ds_cos.c68 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 Ds_frexp.c53 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 Ds_sin.c68 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 Ds_tan.c67 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 De_atanh.c63 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 De_cosh.c64 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 De_sinh.c61 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 Ds_asinh.c57 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 Ds_nextafter.c43 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 Ds_tanh.c67 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 De_fmod.c48 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 Dk_cos.c85 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 Dk_sin.c78 int ix; local
79 ix = __HI(x)&0x7fffffff; /* high word of x */
80 if(ix<0x3e400000) /* |x| < 2**-27 */
H A Ds_atan.c105 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 De_atan2.c76 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 Dk_tan.c94 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 De_acos.c81 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 Dthread_solaris.inline.hpp55 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 DthreadLS_solaris_sparc.hpp67 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 DthreadLS_solaris_x86.hpp78 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 DGlyphListPipe.java84 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 DAttribute.java263 * 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 Dcanonicalize_md.c78 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...]

Completed in 109 milliseconds

123