/external/fdlibm/ |
H A D | s_logb.c | 29 int lx,ix; local 30 ix = (__HI(x))&0x7fffffff; /* high |x| */ 32 if((ix|lx)==0) return -1.0/ieee_fabs(x); 33 if(ix>=0x7ff00000) return x*x; 34 if((ix>>=20)==0) /* IEEE 754 logb */ 37 return (double) (ix-1023);
|
H A D | s_ilogb.c | 29 int hx,lx,ix; local 38 for (ix = -1043; lx>0; lx<<=1) ix -=1; 40 for (ix = -1022,hx<<=11; hx>0; hx<<=1) ix -=1; 42 return ix;
|
H A D | s_cos.c | 55 int n, ix; local 58 ix = __HI(x); 61 ix &= 0x7fffffff; 62 if(ix <= 0x3fe921fb) return __kernel_cos(x,z); 65 else if (ix>=0x7ff00000) return x-x;
|
H A D | s_frexp.c | 40 int hx, ix, lx; local 42 ix = 0x7fffffff&hx; 45 if(ix>=0x7ff00000||((ix|lx)==0)) return x; /* 0,inf,nan */ 46 if (ix<0x00100000) { /* subnormal */ 49 ix = hx&0x7fffffff; 52 *eptr += (ix>>20)-1022;
|
H A D | s_sin.c | 55 int n, ix; local 58 ix = __HI(x); 61 ix &= 0x7fffffff; 62 if(ix <= 0x3fe921fb) return __kernel_sin(x,z,0); 65 else if (ix>=0x7ff00000) return x-x;
|
H A D | s_tan.c | 54 int n, ix; local 57 ix = __HI(x); 60 ix &= 0x7fffffff; 61 if(ix <= 0x3fe921fb) return __kernel_tan(x,z,1); 64 else if (ix>=0x7ff00000) return x-x; /* NaN */
|
H A D | e_atanh.c | 51 int hx,ix; local 55 ix = hx&0x7fffffff; 56 if ((ix|((lx|(-lx))>>31))>0x3ff00000) /* |x|>1 */ 58 if(ix==0x3ff00000) 60 if(ix<0x3e300000&&(huge+x)>zero) return x; /* x<2**-28 */ 61 __HI(x) = ix; /* x <- |x| */ 62 if(ix<0x3fe00000) { /* x < 0.5 */
|
H A D | e_cosh.c | 51 int ix; local 55 ix = __HI(x); 56 ix &= 0x7fffffff; 59 if(ix>=0x7ff00000) return x*x; 62 if(ix<0x3fd62e43) { 65 if (ix<0x3c800000) return w; /* ieee_cosh(tiny) = 1 */ 70 if (ix < 0x40360000) { 76 if (ix < 0x40862E42) return half*__ieee754_exp(ieee_fabs(x)); 80 if (ix<0x408633CE || 81 (ix [all...] |
H A D | e_sinh.c | 48 int ix,jx; local 53 ix = jx&0x7fffffff; 56 if(ix>=0x7ff00000) return x+x; 61 if (ix < 0x40360000) { /* |x|<22 */ 62 if (ix<0x3e300000) /* |x|<2**-28 */ 65 if(ix<0x3ff00000) return h*(2.0*t-t*t/(t+one)); 70 if (ix < 0x40862E42) return h*__ieee754_exp(ieee_fabs(x)); 74 if (ix<0x408633CE || (ix==0x408633ce)&&(lx<=(unsigned)0x8fb9f87d)) {
|
H A D | s_asinh.c | 44 int hx,ix; local 46 ix = hx&0x7fffffff; 47 if(ix>=0x7ff00000) return x+x; /* x is inf or NaN */ 48 if(ix< 0x3e300000) { /* |x|<2**-28 */ 51 if(ix>0x41b00000) { /* |x| > 2**28 */ 53 } else if (ix>0x40000000) { /* 2**28 > |x| > 2.0 */
|
H A D | s_nextafter.c | 30 int hx,hy,ix,iy; local 37 ix = hx&0x7fffffff; /* |x| */ 40 if(((ix>=0x7ff00000)&&((ix-0x7ff00000)|lx)!=0) || /* x is nan */ 44 if((ix|lx)==0) { /* x == 0 */
|
H A D | s_tanh.c | 54 int jx,ix; local 58 ix = jx&0x7fffffff; 61 if(ix>=0x7ff00000) { 67 if (ix < 0x40360000) { /* |x|<22 */ 68 if (ix<0x3c800000) /* |x|<2**-55 */ 70 if (ix>=0x3ff00000) { /* |x|>=1 */
|
H A D | e_fmod.c | 35 int n,hx,hy,hz,ix,iy,sx,i; local 56 /* determine ix = ieee_ilogb(x) */ 59 for (ix = -1043, i=lx; i>0; i<<=1) ix -=1; 61 for (ix = -1022,i=(hx<<11); i>0; i<<=1) ix -=1; 63 } else ix = (hx>>20)-1023; 75 if(ix >= -1022) 78 n = -1022-ix; 101 n = ix [all...] |
H A D | k_cos.c | 72 int ix; local 73 ix = __HI(x)&0x7fffffff; /* ix = |x|'s high word*/ 74 if(ix<0x3e400000) { /* if x < 2**27 */ 79 if(ix < 0x3FD33333) /* if |x| < 0.3 */ 82 if(ix > 0x3fe90000) { /* x > 0.78125 */ 85 __HI(qx) = ix-0x00200000; /* x/4 */
|
H A D | k_sin.c | 65 int ix; local 66 ix = __HI(x)&0x7fffffff; /* high word of x */ 67 if(ix<0x3e400000) /* |x| < 2**-27 */
|
H A D | s_atan.c | 93 int ix,hx,id; local 96 ix = hx&0x7fffffff; 97 if(ix>=0x44100000) { /* if |x| >= 2^66 */ 98 if(ix>0x7ff00000|| 99 (ix==0x7ff00000&&(__LO(x)!=0))) 103 } if (ix < 0x3fdc0000) { /* |x| < 0.4375 */ 104 if (ix < 0x3e200000) { /* |x| < 2^-29 */ 110 if (ix < 0x3ff30000) { /* |x| < 1.1875 */ 111 if (ix < 0x3fe60000) { /* 7/16 <=|x|<11/16 */ 117 if (ix < [all...] |
H A D | e_atan2.c | 64 int k,m,hx,hy,ix,iy; local 67 hx = __HI(x); ix = hx&0x7fffffff; 71 if(((ix|((lx|-lx)>>31))>0x7ff00000)|| 87 if((ix|lx)==0) return (hy<0)? -pi_o_2-tiny: pi_o_2+tiny; 90 if(ix==0x7ff00000) { 111 k = (iy-ix)>>20;
|
/external/clang/test/CodeGen/ |
H A D | arrayderef.c | 13 int * bar(unsigned int ix) { argument 15 return &Foo->y[ix];
|
/external/libopus/silk/ |
H A D | stereo_decode_pred.c | 40 opus_int n, ix[ 2 ][ 3 ]; local 45 ix[ 0 ][ 2 ] = silk_DIV32_16( n, 5 ); 46 ix[ 1 ][ 2 ] = n - 5 * ix[ 0 ][ 2 ]; 48 ix[ n ][ 0 ] = ec_dec_icdf( psRangeDec, silk_uniform3_iCDF, 8 ); 49 ix[ n ][ 1 ] = ec_dec_icdf( psRangeDec, silk_uniform5_iCDF, 8 ); 54 ix[ n ][ 0 ] += 3 * ix[ n ][ 2 ]; 55 low_Q13 = silk_stereo_pred_quant_Q13[ ix[ n ][ 0 ] ]; 56 step_Q13 = silk_SMULWB( silk_stereo_pred_quant_Q13[ ix[ [all...] |
H A D | LPC_analysis_filter.c | 55 int ix; local 77 for( ix = d; ix < len; ix++ ) { 78 in_ptr = &in[ ix - 1 ]; 100 out[ ix ] = (opus_int16)silk_SAT16( out32 );
|
/external/skia/tests/ |
H A D | SizeTest.cpp | 36 int ix = 5; local 38 SkScalar x = SkIntToScalar(ix); 60 ia.set(ix, iy);
|
/external/clang/test/CodeGenCXX/ |
H A D | constructor-conversion.cpp | 12 X(const char* arg, int ix=0) { iX = ix; fX = 6.0; name = arg+ix; } argument
|
/external/glide/third_party/gif_decoder/src/main/java/com/bumptech/glide/gifdecoder/ |
H A D | GifFrame.java | 7 int ix, iy, iw, ih; field in class:GifFrame
|
/external/libopus/silk/float/ |
H A D | LPC_analysis_filter_FLP.c | 50 opus_int ix; local 54 for( ix = 16; ix < length; ix++ ) { 55 s_ptr = &s[ix - 1]; 76 r_LPC[ix] = s_ptr[ 1 ] - LPC_pred; 88 opus_int ix; local 92 for( ix = 12; ix < length; ix 122 opus_int ix; local 154 opus_int ix; local 184 opus_int ix; local [all...] |
/external/mesa3d/src/gallium/drivers/llvmpipe/ |
H A D | lp_tile_soa.h | 67 unsigned ix = (x / TILE_VECTOR_WIDTH) * TILE_X_STRIDE; local 69 unsigned offset = iy + ix + c * TILE_C_STRIDE +
|