HomeSort by relevance Sort by last modified time
    Searched defs:ix (Results 101 - 125 of 210) sorted by null

1 2 3 45 6 7 8 9

  /external/fdlibm/
e_jn.c 60 int i,hx,ix,lx, sgn; local
68 ix = 0x7fffffff&hx;
71 if((ix|((unsigned)(lx|-lx))>>31)>0x7ff00000) return x+x;
81 if((ix|lx)==0||ix>=0x7ff00000) /* if x is 0 or inf */
85 if(ix>=0x52D00000) { /* x > 2**302 */
116 if(ix<0x3e100000) { /* x < 2**-29 */
221 int i,hx,ix,lx; local
226 ix = 0x7fffffff&hx;
229 if((ix|((unsigned)(lx|-lx))>>31)>0x7ff00000) return x+x
    [all...]
e_rem_pio2.c 92 int e0,i,j,nx,n,ix,hx; local
95 ix = hx&0x7fffffff;
96 if(ix<=0x3fe921fb) /* |x| ~<= pi/4 , no need for reduction */
98 if(ix<0x4002d97c) { /* |x| < 3pi/4, special case with n=+-1 */
101 if(ix!=0x3ff921fb) { /* 33+53 bit pi is good enough */
112 if(ix!=0x3ff921fb) { /* 33+53 bit pi is good enough */
123 if(ix<=0x413921fb) { /* |x| ~<= 2^19*(pi/2), medium size */
129 if(n<32&&ix!=npio2_hw[n-1]) {
132 j = ix>>20;
158 if(ix>=0x7ff00000) { /* x is inf or NaN *
    [all...]
  /external/icu4c/layout/
IndicRearrangementProcessor.cpp 69 le_int32 ia, ib, ic, id, ix, x; local
84 ix = glyphStorage.getCharIndex(x, success);
85 glyphStorage.setCharIndex(x - 1, ix, success);
100 ix = glyphStorage.getCharIndex(x, success);
101 glyphStorage.setCharIndex(x + 1, ix, success);
130 ix = glyphStorage.getCharIndex(x, success);
131 glyphStorage.setCharIndex(x - 2, ix, success);
151 ix = glyphStorage.getCharIndex(x, success);
152 glyphStorage.setCharIndex(x - 2, ix, success);
172 ix = glyphStorage.getCharIndex(x, success)
    [all...]
  /external/skia/samplecode/
OverView.cpp 37 int ix = (int)(SkScalarDiv(x * N, W)); local
39 if (ix >= 0 && iy >= 0) {
41 evt.setFast32(iy * N + ix);
SampleOverflow.cpp 55 int ix = SkScalarFloor(x); local
58 clip.setRect(ix, iy, ix + 1, iy + 1);
SamplePath.cpp 54 int ix = (int)x; local
57 printf("%g %x %x %x\n", x, ix, fx, ffx);
  /external/skia/src/core/
ARGB32_Clamp_Bilinear_BitmapShader.h 17 int ix = fx >> 16; local
24 + SkClampMax(ix, srcMaxX);
26 if ((unsigned)ix < srcMaxX)
43 int ix = fx >> 16; local
47 p00 = p01 = srcPixels + SkClampMax(ix, srcMaxX);
48 if ((unsigned)ix < srcMaxX)
SkBitmapSampler.cpp 103 int ix = x >> 16; local
111 int tmpx = procX(ix, maxX);
115 int tmpx1 = procX(ix + 1, maxX);
151 int ix = x >> 16; local
159 int tmpx = procX(ix, maxX);
163 int tmpx1 = procX(ix + 1, maxX);
206 int ix = x >> 16; local
214 int tmpx = procX(ix, maxX);
218 int tmpx1 = procX(ix + 1, maxX);
265 int ix = x >> 16 local
310 int ix = SkFixedFloor(x); local
    [all...]
SkBitmapShader16BilerpTemplate.h 57 int ix = fx >> 16; local
59 int x = SkClampMax(ix, srcMaxX);
65 if ((unsigned)ix < srcMaxX)
108 int ix = fx >> 16; local
115 SkClampMax(ix, srcMaxX);
116 if ((unsigned)ix < srcMaxX)
166 int ix = fx >> 16; local
173 SkClampMax(ix, srcMaxX);
174 if ((unsigned)ix < srcMaxX)
216 int ix = fx >> 16 local
    [all...]
  /external/sqlite/android/
OldPhoneNumberUtils.cpp 176 const char *ix = strchr(a, b); local
178 if (ix == NULL)
181 return ix - a;
  /external/srec/srec/clib/
matrix_i.c 178 int ii, ix = -1, ip, jj; local
190 if (ix >= 0)
191 for (jj = ix; jj < ii; jj++)
193 else if (sum) ix = ii;
  /packages/apps/Browser/src/com/android/browser/view/
PieListView.java 75 final int ix = (y - mTop) * mViews.size() / mHeight; local
76 return ix;
PieStackView.java 49 public void setCurrent(int ix) {
50 super.setCurrent(ix);
52 mCurrentListener.onSetCurrent(ix);
101 final int ix = (y - mTop) * mViews.size() / mHeight; local
102 return ix;
  /bionic/libm/src/
e_rem_pio2.c 80 int32_t e0,i,j,nx,n,ix,hx; local
84 ix = hx&0x7fffffff;
85 if(ix<=0x3fe921fb) /* |x| ~<= pi/4 , no need for reduction */
87 if(ix<0x4002d97c) { /* |x| < 3pi/4, special case with n=+-1 */
90 if(ix!=0x3ff921fb) { /* 33+53 bit pi is good enough */
101 if(ix!=0x3ff921fb) { /* 33+53 bit pi is good enough */
112 if(ix<=0x413921fb) { /* |x| ~<= 2^19*(pi/2), medium size */
118 if(n<32&&ix!=npio2_hw[n-1]) {
122 j = ix>>20;
150 if(ix>=0x7ff00000) { /* x is inf or NaN *
    [all...]
e_j0.c 89 int32_t hx,ix; local
92 ix = hx&0x7fffffff;
93 if(ix>=0x7ff00000) return one/(x*x);
95 if(ix >= 0x40000000) { /* |x| >= 2.0 */
100 if(ix<0x7fe00000) { /* make sure x+x not overflow */
109 if(ix>0x48000000) z = (invsqrtpi*cc)/sqrt(x);
116 if(ix<0x3f200000) { /* |x| < 2**-13 */
118 if(ix<0x3e400000) return one; /* |x|<2**-27 */
125 if(ix < 0x3FF00000) { /* |x| < 1.00 */
150 int32_t hx,ix,lx local
276 int32_t ix; local
371 int32_t ix; local
    [all...]
e_j0f.c 47 int32_t hx,ix; local
50 ix = hx&0x7fffffff;
51 if(ix>=0x7f800000) return one/(x*x);
53 if(ix >= 0x40000000) { /* |x| >= 2.0 */
58 if(ix<0x7f000000) { /* make sure x+x not overflow */
74 if(ix<0x39000000) { /* |x| < 2**-13 */
76 if(ix<0x32000000) return one; /* |x|<2**-27 */
83 if(ix < 0x3F800000) { /* |x| < 1.00 */
108 int32_t hx,ix; local
111 ix = hx&0x7fffffff
233 int32_t ix; local
328 int32_t ix; local
    [all...]
e_j1.c 90 int32_t hx,ix; local
93 ix = hx&0x7fffffff;
94 if(ix>=0x7ff00000) return one/x;
96 if(ix >= 0x40000000) { /* |x| >= 2.0 */
101 if(ix<0x7fe00000) { /* make sure y+y not overflow */
110 if(ix>0x48000000) z = (invsqrtpi*cc)/sqrt(y);
118 if(ix<0x3e400000) { /* |x|<2**-27 */
147 int32_t hx,ix,lx; local
150 ix = 0x7fffffff&hx;
152 if(ix>=0x7ff00000) return one/(x+x*x);
270 int32_t ix; local
366 int32_t ix; local
    [all...]
  /external/chromium/chrome/browser/chromeos/login/
oobe_progress_bar.cc 88 int ix = x; local
93 canvas->TileImageInt(*line_, ix, y + line_offset_y,
96 ix += line_width;
98 canvas->DrawBitmapInt(*line_before, ix, y + line_offset_y);
100 ix += line_before->width();
102 canvas->DrawBitmapInt(*dot, ix, y);
103 ix += dot->width();
106 canvas->DrawBitmapInt(*line_after, ix, y + line_offset_y);
107 ix += line_after->width();
110 canvas->TileImageInt(*line_, ix, y + line_offset_y
    [all...]
  /external/dropbear/libtommath/demo/
timing.c 86 int n, cnt, ix, old_kara_m, old_kara_s; local
155 for (ix = 0; ix < 2; ix++) {
156 printf("With%s Karatsuba\n", (ix == 0) ? "out" : "");
158 KARATSUBA_MUL_CUTOFF = (ix == 0) ? 9999 : old_kara_m;
159 KARATSUBA_SQR_CUTOFF = (ix == 0) ? 9999 : old_kara_s;
161 log = fopen((ix == 0) ? "logs/mult.log" : "logs/mult_kara.log", "w");
182 log = fopen((ix == 0) ? "logs/sqr.log" : "logs/sqr_kara.log", "w");
  /external/qemu/android/skin/
scaler.c 64 int ix, iy; /* source increments in 16.16 format */ member in struct:__anon9474
141 op.ix = (int)( scaler->invscale * 65536 );
142 op.iy = op.ix;
  /external/sonivox/arm-fm-22k/lib_src/
eas_chorus.c 254 EAS_I32 ix; local
293 for (ix = 0; ix < numSamples; ix++)
339 for (ix = 0; ix < numSamples; ix++)
  /external/sonivox/arm-hybrid-22k/lib_src/
eas_chorus.c 254 EAS_I32 ix; local
293 for (ix = 0; ix < numSamples; ix++)
339 for (ix = 0; ix < numSamples; ix++)
  /external/sonivox/arm-wt-22k/lib_src/
eas_chorus.c 254 EAS_I32 ix; local
293 for (ix = 0; ix < numSamples; ix++)
339 for (ix = 0; ix < numSamples; ix++)
  /external/webkit/Source/WebCore/platform/graphics/gpu/
TilingData.cpp 91 int ix = tileXIndex(tile); local
93 int x = tilePositionX(ix);
95 int width = tileSizeX(ix);
  /frameworks/base/media/libstagefright/codecs/g711/dec/
SoftG711.cpp 256 int32_t ix = x ^ 0x55; local
257 ix &= 0x7f;
259 int32_t iexp = ix >> 4;
260 int32_t mant = ix & 0x0f;

Completed in 1495 milliseconds

1 2 3 45 6 7 8 9