HomeSort by relevance Sort by last modified time
    Searched defs:ix (Results 26 - 50 of 331) sorted by null

12 3 4 5 6 7 8 91011>>

  /bionic/libm/upstream-freebsd/lib/msun/src/
s_sin.c 58 int32_t n, ix; local
61 GET_HIGH_WORD(ix,x);
64 ix &= 0x7fffffff;
65 if(ix <= 0x3fe921fb) {
66 if(ix<0x3e500000) /* |x| < 2**-26 */
72 else if (ix>=0x7ff00000) return x-x;
s_tan.c 57 int32_t n, ix; local
60 GET_HIGH_WORD(ix,x);
63 ix &= 0x7fffffff;
64 if(ix <= 0x3fe921fb) {
65 if(ix<0x3e400000) /* x < 2**-27 */
71 else if (ix>=0x7ff00000) return x-x; /* NaN */
e_atanh.c 48 int32_t hx,ix; local
51 ix = hx&0x7fffffff;
52 if ((ix|((lx|(-lx))>>31))>0x3ff00000) /* |x|>1 */
54 if(ix==0x3ff00000)
56 if(ix<0x3e300000&&(huge+x)>zero) return x; /* x<2**-28 */
57 SET_HIGH_WORD(x,ix);
58 if(ix<0x3fe00000) { /* x < 0.5 */
e_atanhl.c 58 uint16_t hx, ix; local
62 ix = hx & 0x7fff;
63 if (ix >= 0x3fff) /* |x| >= 1, or NaN or misnormal */
65 if (ix < BIAS + EXP_TINY && (huge + x) > zero)
67 SET_LDBL_EXPSIGN(x, ix);
68 if (ix < 0x3ffe) { /* |x| < 0.5, or misnormal */
s_asinh.c 41 int32_t hx,ix; local
43 ix = hx&0x7fffffff;
44 if(ix>=0x7ff00000) return x+x; /* x is inf or NaN */
45 if(ix< 0x3e300000) { /* |x|<2**-28 */
48 if(ix>0x41b00000) { /* |x| > 2**28 */
50 } else if (ix>0x40000000) { /* 2**28 > |x| > 2.0 */
s_asinhf.c 31 int32_t hx,ix; local
33 ix = hx&0x7fffffff;
34 if(ix>=0x7f800000) return x+x; /* x is inf or NaN */
35 if(ix< 0x31800000) { /* |x|<2**-28 */
38 if(ix>0x4d800000) { /* |x| > 2**28 */
40 } else if (ix>0x40000000) { /* 2**28 > |x| > 2.0 */
s_ccoshf.c 45 int32_t hx, hy, ix, iy; local
53 ix = 0x7fffffff & hx;
56 if (ix < 0x7f800000 && iy < 0x7f800000) {
59 if (ix < 0x41100000) /* small x: normal case */
63 if (ix < 0x42b17218) {
67 } else if (ix < 0x4340b1e7) {
78 if (ix == 0 && iy >= 0x7f800000)
81 if (iy == 0 && ix >= 0x7f800000) {
87 if (ix < 0x7f800000 && iy >= 0x7f800000)
90 if (ix >= 0x7f800000 && (hx & 0x7fffff) == 0)
    [all...]
s_csinhf.c 45 int32_t hx, hy, ix, iy; local
53 ix = 0x7fffffff & hx;
56 if (ix < 0x7f800000 && iy < 0x7f800000) {
59 if (ix < 0x41100000) /* small x: normal case */
63 if (ix < 0x42b17218) {
67 } else if (ix < 0x4340b1e7) {
78 if (ix == 0 && iy >= 0x7f800000)
81 if (iy == 0 && ix >= 0x7f800000) {
87 if (ix < 0x7f800000 && iy >= 0x7f800000)
90 if (ix >= 0x7f800000 && (hx & 0x7fffff) == 0)
    [all...]
s_nextafter.c 32 int32_t 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 */
s_scalbnf.c 34 int32_t k,ix; local
35 GET_FLOAT_WORD(ix,x);
36 k = (ix&0x7f800000)>>23; /* extract exponent */
38 if ((ix&0x7fffffff)==0) return x; /* +-0 */
40 GET_FLOAT_WORD(ix,x);
41 k = ((ix&0x7f800000)>>23) - 25;
48 {SET_FLOAT_WORD(x,(ix&0x807fffff)|(k<<23)); return x;}
54 SET_FLOAT_WORD(x,(ix&0x807fffff)|(k<<23));
s_tanh.c 49 int32_t jx,ix; local
52 ix = jx&0x7fffffff;
55 if(ix>=0x7ff00000) {
61 if (ix < 0x40360000) { /* |x|<22 */
62 if (ix<0x3e300000) { /* |x|<2**-28 */
65 if (ix>=0x3ff00000) { /* |x|>=1 */
s_tanhf.c 27 int32_t jx,ix; local
30 ix = jx&0x7fffffff;
33 if(ix>=0x7f800000) {
39 if (ix < 0x41100000) { /* |x|<9 */
40 if (ix<0x39800000) { /* |x|<2**-12 */
43 if (ix>=0x3f800000) { /* |x|>=1 */
  /external/chromium_org/third_party/opus/src/silk/
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[ n ][ 0 ] + 1 ] - low_Q13
    [all...]
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/fdlibm/
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 */
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 */
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==0x408633ce)&&(lx<=(unsigned)0x8fb9f87d))
    [all...]
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)) {
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 */
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 */
  /external/libopus/silk/
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[ n ][ 0 ] + 1 ] - low_Q13
    [all...]
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/chromium_org/third_party/opus/src/silk/float/
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/chromium_org/third_party/skia/tests/
TestSize.cpp 37 int ix = 5; local
39 SkScalar x = SkIntToScalar(ix);
61 ia.set(ix, iy);
  /external/libopus/silk/float/
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...]

Completed in 521 milliseconds

12 3 4 5 6 7 8 91011>>