HomeSort by relevance Sort by last modified time
    Searched refs:ix (Results 126 - 150 of 425) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/chromium_org/third_party/mesa/src/src/mesa/swrast/
s_aatritemp.h 190 GLint ix, startX = (GLint) (x - xAdj);
207 ix = startX;
211 span.attrStart[FRAG_ATTRIB_WPOS][3] = solve_plane(ix + 0.5F, iy + 0.5F, wPlane);
215 span.attrStart[attr][c] = solve_plane(ix + 0.5F, iy + 0.5F, attrPlane[attr][c]);
223 const GLfloat cx = ix + 0.5F, cy = iy + 0.5F;
233 ix++;
235 coverage = compute_coveragef(pMin, pMid, pMax, ix, iy);
238 if (ix > startX) {
241 span.end = (GLuint) ix - (GLuint) startX;
259 GLint ix, left, startX = (GLint) (x + xAdj)
    [all...]
  /external/mesa3d/src/mesa/swrast/
s_aatritemp.h 190 GLint ix, startX = (GLint) (x - xAdj);
207 ix = startX;
211 span.attrStart[FRAG_ATTRIB_WPOS][3] = solve_plane(ix + 0.5F, iy + 0.5F, wPlane);
215 span.attrStart[attr][c] = solve_plane(ix + 0.5F, iy + 0.5F, attrPlane[attr][c]);
223 const GLfloat cx = ix + 0.5F, cy = iy + 0.5F;
233 ix++;
235 coverage = compute_coveragef(pMin, pMid, pMax, ix, iy);
238 if (ix > startX) {
241 span.end = (GLuint) ix - (GLuint) startX;
259 GLint ix, left, startX = (GLint) (x + xAdj)
    [all...]
  /bionic/libm/upstream-freebsd/lib/msun/src/
e_powf.c 61 int32_t hx,hy,ix,iy,is; local
65 ix = hx&0x7fffffff; iy = hy&0x7fffffff;
74 if(ix > 0x7f800000 ||
95 if (ix==0x3f800000)
97 else if (ix > 0x3f800000)/* (|x|>1)**+-inf = inf,0 */
113 if(ix==0x7f800000||ix==0||ix==0x3f800000){
117 if(((ix-0x3f800000)|yisint)==0) {
136 if(ix<0x3f7ffff8) return (hy<0)? sn*huge*huge:sn*tiny*tiny
    [all...]
e_fmod.c 31 int32_t n,hx,hy,hz,ix,iy,sx,i; local
50 /* determine ix = ilogb(x) */
53 for (ix = -1043, i=lx; i>0; i<<=1) ix -=1;
55 for (ix = -1022,i=(hx<<11); i>0; i<<=1) ix -=1;
57 } else ix = (hx>>20)-1023;
69 if(ix >= -1022)
72 n = -1022-ix;
95 n = ix - iy
    [all...]
s_remquo.c 34 int32_t n,hx,hy,hz,ix,iy,sx,i; local
59 /* determine ix = ilogb(x) */
62 for (ix = -1043, i=lx; i>0; i<<=1) ix -=1;
64 for (ix = -1022,i=(hx<<11); i>0; i<<=1) ix -=1;
66 } else ix = (hx>>20)-1023;
78 if(ix >= -1022)
81 n = -1022-ix;
104 n = ix - iy
    [all...]
s_erf.c 192 int32_t hx,ix,i; local
195 ix = hx&0x7fffffff;
196 if(ix>=0x7ff00000) { /* erf(nan)=nan */
201 if(ix < 0x3feb0000) { /* |x|<0.84375 */
202 if(ix < 0x3e300000) { /* |x|<2**-28 */
203 if (ix < 0x00800000)
213 if(ix < 0x3ff40000) { /* 0.84375 <= |x| < 1.25 */
219 if (ix >= 0x40180000) { /* inf>|x|>=6 */
224 if(ix< 0x4006DB6E) { /* |x| < 1/0.35 */
244 int32_t hx,ix; local
    [all...]
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_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...]
k_tan.c 81 int32_t ix, hx; local
84 ix = hx & 0x7fffffff; /* high word of |x| */
85 if (ix >= 0x3FE59428) { /* |x| >= 0.6744 */
110 if (ix >= 0x3FE59428) {
  /external/fdlibm/
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 - iy
    [all...]
s_erf.c 197 int hx,ix,i; local
200 ix = hx&0x7fffffff;
201 if(ix>=0x7ff00000) { /* ieee_erf(nan)=nan */
206 if(ix < 0x3feb0000) { /* |x|<0.84375 */
207 if(ix < 0x3e300000) { /* |x|<2**-28 */
208 if (ix < 0x00800000)
218 if(ix < 0x3ff40000) { /* 0.84375 <= |x| < 1.25 */
224 if (ix >= 0x40180000) { /* inf>|x|>=6 */
229 if(ix< 0x4006DB6E) { /* |x| < 1/0.35 */
253 int hx,ix; local
    [all...]
e_acos.c 68 int hx,ix; local
70 ix = hx&0x7fffffff;
71 if(ix>=0x3ff00000) { /* |x| >= 1 */
72 if(((ix-0x3ff00000)|__LO(x))==0) { /* |x|==1 */
78 if(ix<0x3fe00000) { /* |x| < 0.5 */
79 if(ix<=0x3c600000) return pio2_hi+pio2_lo;/*if|x|<2**-57*/
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) {
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/chromium_org/third_party/icu/source/test/intltest/
tchcfmt.cpp 54 int32_t ix; local
56 for (ix = 0; ix <= 8; ++ix) {
57 double i = ix; //nos
68 it_logln(UnicodeString("") + ix + UnicodeString(" -> ") + res1 + UnicodeString(" -> ") + res2);
91 for(ix=0; ix<count; ix++){
92 if(gotLimits[ix] != limits[ix])
    [all...]
  /external/icu4c/test/intltest/
tchcfmt.cpp 54 int32_t ix; local
56 for (ix = 0; ix <= 8; ++ix) {
57 double i = ix; //nos
68 it_logln(UnicodeString("") + ix + UnicodeString(" -> ") + res1 + UnicodeString(" -> ") + res2);
103 for(ix=0; ix<count; ix++){
104 if(gotLimits[ix] != limits[ix])
    [all...]
  /ndk/tests/device/fenv/jni/
test_fenv.c 45 int32_t ix0, iy0, ix, iy; local
50 ix = ix0 = *(int32_t *)&x;
52 if (ix < 0) {
53 ix = -ix;
62 return abs(ix - iy) <= kMaxUlps;
  /external/chromium_org/ppapi/native_client/tests/nacl_browser/fault_injection/
fault_pm_nameservice_test.cc 66 for (size_t ix = 0; ix < got; ++ix) {
67 if (0 == (ix & (BYTES_PER_LINE - 1))) {
68 sb->Printf("\n%04x:", ix);
69 } else if (0 == (ix & (BYTE_SPACING - 1))) {
72 sb->Printf("%02x", bytes[ix]);
222 for (size_t ix = 0; kMsgHandlers[ix].request != NULL; ++ix) {
    [all...]
  /external/chromium_org/ppapi/native_client/tests/nacl_browser/nameservice/
pm_nameservice_test.cc 66 for (size_t ix = 0; ix < got; ++ix) {
67 if (0 == (ix & (BYTES_PER_LINE - 1))) {
68 sb->Printf("\n%04x:", ix);
69 } else if (0 == (ix & (BYTE_SPACING - 1))) {
72 sb->Printf("%02x", bytes[ix]);
222 for (size_t ix = 0; kMsgHandlers[ix].request != NULL; ++ix) {
    [all...]
  /external/chromium_org/third_party/mesa/src/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 +
  /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 +
  /external/chromium_org/third_party/skia/src/core/
SkBitmapShader16BilerpTemplate.h 49 int ix = fx >> 16; local
51 int x = SkClampMax(ix, srcMaxX);
57 if ((unsigned)ix < srcMaxX)
100 int ix = fx >> 16; local
107 SkClampMax(ix, srcMaxX);
108 if ((unsigned)ix < srcMaxX)
158 int ix = fx >> 16; local
165 SkClampMax(ix, srcMaxX);
166 if ((unsigned)ix < srcMaxX)
208 int ix = fx >> 16 local
    [all...]
  /external/skia/src/core/
SkBitmapShader16BilerpTemplate.h 49 int ix = fx >> 16; local
51 int x = SkClampMax(ix, srcMaxX);
57 if ((unsigned)ix < srcMaxX)
100 int ix = fx >> 16; local
107 SkClampMax(ix, srcMaxX);
108 if ((unsigned)ix < srcMaxX)
158 int ix = fx >> 16; local
165 SkClampMax(ix, srcMaxX);
166 if ((unsigned)ix < srcMaxX)
208 int ix = fx >> 16 local
    [all...]
  /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];

Completed in 739 milliseconds

1 2 3 4 56 7 8 91011>>