Searched refs:ix (Results 1 - 25 of 123) sorted by relevance

12345

/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_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 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_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_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_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 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 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_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_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_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 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 */
/openjdk7/jdk/test/java/io/Serializable/oldTests/
H A DArraysOfArrays.java88 for (int ix = 0; ix < b_u.length; ix++) {
89 for(int iy = 0; iy < b_u[ix].length; iy++) {
90 if (b[ix][iy] != b_u[ix][iy]) {
92 ix + "][" + iy + " expected " + b[ix][iy] +
93 " actual = " + b_u[ix][iy]);
101 for (int ix
[all...]
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DSoftPointResampler.java42 float ix = in_offset[0];
47 while (ix < ix_end && ox < ox_end) {
48 out[ox++] = in[(int) ix];
49 ix += pitch;
52 while (ix < ix_end && ox < ox_end) {
53 out[ox++] = in[(int) ix];
54 ix += pitch;
58 in_offset[0] = ix;
H A DSoftLinearResampler.java43 float ix = in_offset[0];
48 while (ix < ix_end && ox < ox_end) {
49 int iix = (int) ix;
50 float fix = ix - iix;
53 ix += pitch;
56 while (ix < ix_end && ox < ox_end) {
57 int iix = (int) ix;
58 float fix = ix - iix;
61 ix += pitch;
65 in_offset[0] = ix;
[all...]
H A DSoftCubicResampler.java42 float ix = in_offset[0];
47 while (ix < ix_end && ox < ox_end) {
48 int iix = (int) ix;
49 float fix = ix - iix;
61 ix += pitch;
64 while (ix < ix_end && ox < ox_end) {
65 int iix = (int) ix;
66 float fix = ix - iix;
78 ix += pitch;
82 in_offset[0] = ix;
[all...]
H A DSoftLinearResampler2.java45 float ix = in_offset[0];
51 if (!(ix < ix_end && ox < ox_end))
55 // it resulted in no drift between p_ix and ix.
56 int p_ix = (int) (ix * (1 << 15));
60 // to ensure no drift between p_ix and ix.
80 float fix = ix - iix;
84 ix += pitch;
94 float fix = ix - iix;
97 ix += pitch;
103 in_offset[0] = ix;
[all...]
H A DSoftLanczosResampler.java81 float ix = in_offset[0];
87 while (ix < ix_end && ox < ox_end) {
88 int iix = (int) ix;
90 = this.sinc_table[(int) ((ix - iix) * sinc_table_fsize)];
96 ix += pitch;
99 while (ix < ix_end && ox < ox_end) {
100 int iix = (int) ix;
102 = this.sinc_table[(int) ((ix - iix) * sinc_table_fsize)];
109 ix += pitch;
113 in_offset[0] = ix;
[all...]
H A DAudioFloatConverter.java320 int ix = in_offset;
323 out_buff[ox++] = in_buff[ix++] * (1.0f / 127.0f);
329 int ix = in_offset;
332 out_buff[ox++] = (byte) (in_buff[ix++] * 127.0f);
341 int ix = in_offset;
344 out_buff[ox++] = ((in_buff[ix++] & 0xFF) - 127)
351 int ix = in_offset;
354 out_buff[ox++] = (byte) (127 + in_buff[ix++] * 127.0f);
369 int ix = in_offset;
372 out_buff[ox] = ((short) ((in_buff[ix
[all...]
/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/jdk/src/share/native/sun/security/ec/impl/
H A Dmplogic.c115 mp_size ix; local
121 ix = bitNum / MP_DIGIT_BIT;
122 if (ix + 1 > MP_USED(a)) {
123 rv = s_mp_pad(a, ix + 1);
131 MP_DIGIT(a,ix) |= mask;
133 MP_DIGIT(a,ix) &= ~mask;
145 mp_size bit, ix; local
150 ix = bitNum / MP_DIGIT_BIT;
151 ARGCHK(ix <= MP_USED(a) - 1, MP_RANGE);
154 rv = (mp_err)(MP_DIGIT(a, ix) >> bi
195 int ix; local
[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...]
/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/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;

Completed in 45 milliseconds

12345