HomeSort by relevance Sort by last modified time
    Searched defs:ix (Results 76 - 100 of 218) sorted by null

1 2 34 5 6 7 8 9

  /external/fdlibm/
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 */
k_sin.c 65 int ix; local
66 ix = __HI(x)&0x7fffffff; /* high word of x */
67 if(ix<0x3e400000) /* |x| < 2**-27 */
k_tan.c 76 int ix, hx; local
79 ix = hx & 0x7fffffff; /* high word of |x| */
80 if (ix < 0x3e300000) { /* x < 2**-28 */
82 if (((ix | __LO(x)) | (iy + 1)) == 0)
101 if (ix >= 0x3FE59428) { /* |x| >= 0.6744 */
126 if (ix >= 0x3FE59428) {
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 < 0x40038000) { /* |x| < 2.4375 *
    [all...]
  /external/glide/third_party/gif_decoder/src/main/java/com/bumptech/glide/gifdecoder/
GifFrame.java 7 public int ix, iy, iw, ih; field in class:GifFrame
  /external/libvorbis/lib/
scales.h 37 } ix; local
38 ix.f = x;
39 ix.i = (ix.i & 0x80000000U) | (0x3f800000U);
40 return ix.f;
48 } ix; local
49 ix.f = *x;
50 ix.i = ix.i&0x7fffffff;
51 return (float)(ix.i * 7.17711438e-7f -764.6161886f)
    [all...]
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_tile_soa.h 67 unsigned ix = (x / TILE_VECTOR_WIDTH) * TILE_X_STRIDE; local
69 unsigned offset = iy + ix + c * TILE_C_STRIDE +
  /bionic/libm/upstream-freebsd/lib/msun/src/
e_acosf.c 38 int32_t hx,ix; local
40 ix = hx&0x7fffffff;
41 if(ix>=0x3f800000) { /* |x| >= 1 */
42 if(ix==0x3f800000) { /* |x| == 1 */
48 if(ix<0x3f000000) { /* |x| < 0.5 */
49 if(ix<=0x32800000) return pio2_hi+pio2_lo;/*if|x|<2**-26*/
s_exp2f.c 99 uint32_t hx, ix, i0; local
104 ix = hx & 0x7fffffff; /* high word of |x| */
105 if(ix >= 0x43000000) { /* |x| >= 128 */
106 if(ix >= 0x7f800000) {
107 if ((ix & 0x7fffff) != 0 || (hx & 0x80000000) == 0)
116 } else if (ix <= 0x33000000) { /* |x| <= 0x1p-25 */
e_acos.c 68 int32_t hx,ix; local
70 ix = hx&0x7fffffff;
71 if(ix>=0x3ff00000) { /* |x| >= 1 */
74 if(((ix-0x3ff00000)|lx)==0) { /* |x|==1 */
80 if(ix<0x3fe00000) { /* |x| < 0.5 */
81 if(ix<=0x3c600000) return pio2_hi+pio2_lo;/*if|x|<2**-57*/
e_asin.c 74 int32_t hx,ix; local
76 ix = hx&0x7fffffff;
77 if(ix>= 0x3ff00000) { /* |x|>= 1 */
80 if(((ix-0x3ff00000)|lx)==0)
84 } else if (ix<0x3fe00000) { /* |x|<0.5 */
85 if(ix<0x3e500000) { /* if |x| < 2**-26 */
100 if(ix>=0x3FEF3333) { /* if |x| > 0.975 */
e_fmodl.c 71 int ix,iy,n,sx; local
95 /* determine ix = ilogb(x) */
98 ix = ux.bits.exp - (BIAS + 512);
100 ix = ux.bits.exp - BIAS;
118 n = ix - iy;
e_jn.c 56 int32_t i,hx,ix,lx, sgn; local
64 ix = 0x7fffffff&hx;
66 if((ix|((u_int32_t)(lx|-lx))>>31)>0x7ff00000) return x+x;
76 if((ix|lx)==0||ix>=0x7ff00000) /* if x is 0 or inf */
80 if(ix>=0x52D00000) { /* x > 2**302 */
111 if(ix<0x3e100000) { /* x < 2**-29 */
217 int32_t i,hx,ix,lx; local
222 ix = 0x7fffffff&hx;
224 if((ix|((u_int32_t)(lx|-lx))>>31)>0x7ff00000) return x+x
    [all...]
e_jnf.c 31 int32_t i,hx,ix, sgn; local
39 ix = 0x7fffffff&hx;
41 if(ix>0x7f800000) return x+x;
51 if(ix==0||ix>=0x7f800000) /* if x is 0 or inf */
63 if(ix<0x30800000) { /* x < 2**-29 */
169 int32_t i,hx,ix,ib; local
174 ix = 0x7fffffff&hx;
176 if(ix>0x7f800000) return x+x;
177 if(ix==0) return -one/zero
    [all...]
e_logf.c 39 int32_t k,ix,i,j; local
41 GET_FLOAT_WORD(ix,x);
44 if (ix < 0x00800000) { /* x < 2**-126 */
45 if ((ix&0x7fffffff)==0)
47 if (ix<0) return (x-x)/zero; /* log(-#) = NaN */
49 GET_FLOAT_WORD(ix,x);
51 if (ix >= 0x7f800000) return x+x;
52 k += (ix>>23)-127;
53 ix &= 0x007fffff;
54 i = (ix+(0x95f64<<3))&0x800000
    [all...]
e_rem_pio2.c 59 int32_t e0,i,j,nx,n,ix,hx; local
63 ix = hx&0x7fffffff;
65 if(ix<=0x3fe921fb) /* |x| ~<= pi/4 , no need for reduction */
68 if (ix <= 0x400f6a7a) { /* |x| ~<= 5pi/4 */
69 if ((ix & 0xfffff) == 0x921fb) /* |x| ~= pi/2 or 2pi/2 */
71 if (ix <= 0x4002d97c) { /* |x| ~<= 3pi/4 */
97 if (ix <= 0x401c463b) { /* |x| ~<= 9pi/4 */
98 if (ix <= 0x4015fdbc) { /* |x| ~<= 7pi/4 */
99 if (ix == 0x4012d97c) /* |x| ~= 3pi/2 */
113 if (ix == 0x401921fb) /* |x| ~= 4pi/2 *
    [all...]
s_exp2.c 345 uint32_t hx, ix, lx, i0; local
350 ix = hx & 0x7fffffff; /* high word of |x| */
351 if(ix >= 0x40900000) { /* |x| >= 1024 */
352 if(ix >= 0x7ff00000) {
354 if(((ix & 0xfffff) | lx) != 0 || (hx & 0x80000000) == 0)
363 } else if (ix < 0x3c900000) { /* |x| < 0x1p-54 */
s_remquol.c 74 int ix,iy,n,q,sx,sxy; local
104 /* determine ix = ilogb(x) */
107 ix = ux.bits.exp - (BIAS + 512);
109 ix = ux.bits.exp - BIAS;
127 n = ix - iy;
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/softpipe/
sp_quad_depth_test_tmp.h 54 const unsigned ix = quads[0]->input.x0; local
56 const float fx = (float) ix;
74 tile = sp_get_cached_tile(qs->softpipe->zsbuf_cache, ix, iy);
78 const int dx = quads[i]->input.x0 - ix;
88 &tile->data.depth16[iy % TILE_SIZE][(ix + dx)% TILE_SIZE];
  /external/icu/icu4c/source/layout/
IndicRearrangementProcessor2.cpp 70 le_int32 ia, ib, ic, id, ix, x; local
85 ix = glyphStorage.getCharIndex(x, success);
86 glyphStorage.setCharIndex(x - 1, ix, success);
101 ix = glyphStorage.getCharIndex(x, success);
102 glyphStorage.setCharIndex(x + 1, ix, success);
131 ix = glyphStorage.getCharIndex(x, success);
132 glyphStorage.setCharIndex(x - 2, ix, success);
152 ix = glyphStorage.getCharIndex(x, success);
153 glyphStorage.setCharIndex(x - 2, ix, success);
173 ix = glyphStorage.getCharIndex(x, success)
    [all...]
  /external/mesa3d/src/gallium/drivers/softpipe/
sp_quad_depth_test_tmp.h 54 const unsigned ix = quads[0]->input.x0; local
56 const float fx = (float) ix;
74 tile = sp_get_cached_tile(qs->softpipe->zsbuf_cache, ix, iy);
78 const int dx = quads[i]->input.x0 - ix;
88 &tile->data.depth16[iy % TILE_SIZE][(ix + dx)% TILE_SIZE];
  /dalvik/dx/tests/084-dex-high-register-moves/
Blort.java 41 int ix = i; local
45 i = -ix;
  /external/chromium_org/third_party/skia/samplecode/
OverView.cpp 53 int ix = (int)(SkScalarDiv(x * N, kWidth)); variable
55 if (ix >= 0 && iy >= 0) {
57 evt.setFast32(iy * N + ix);
  /external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/test/
RTPjitter.cc 42 uint32_t ix; member in struct:arr_time
120 time_vec[dat_len].ix=dat_len;
183 if(time_vec[k].time < FLT_MAX && time_vec[k].ix < Npack){
184 temp_packet = packet_ptr[time_vec[k].ix];
  /external/clang/test/CodeGenCXX/
vtable-layout-abi-examples.cpp 120 int ix; member in struct:Test1::X

Completed in 2741 milliseconds

1 2 34 5 6 7 8 9