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

1 2 3 45 6

  /external/fdlibm/
s_log1p.c 107 int k,hx,hu,ax; local
109 hx = __HI(x); /* high word of x */
110 ax = hx&0x7fffffff;
113 if (hx < 0x3FDA827A) { /* x < 0.41422 */
125 if(hx>0||hx<=((int)0xbfd2bec3)) {
128 if (hx >= 0x7ff00000) return x+x;
130 if(hx<0x43400000) {
e_j0.c 96 int hx,ix; local
98 hx = __HI(x);
99 ix = hx&0x7fffffff;
165 int hx,ix,lx; local
167 hx = __HI(x);
168 ix = 0x7fffffff&hx;
173 if(hx<0) return zero/zero;
e_j1.c 97 int hx,ix; local
99 hx = __HI(x);
100 ix = hx&0x7fffffff;
122 if(hx<0) return -z;
166 int hx,ix,lx; local
168 hx = __HI(x);
169 ix = 0x7fffffff&hx;
174 if(hx<0) return zero/zero;
  /external/qemu/distrib/sdl-1.2.15/src/video/
e_log.h 94 int32_t k,hx,i,j; local
97 EXTRACT_WORDS(hx,lx,x);
100 if (hx < 0x00100000) { /* x < 2**-1022 */
101 if (((hx&0x7fffffff)|lx)==0)
103 if (hx<0) return (x-x)/zero; /* log(-#) = NaN */
105 GET_HIGH_WORD(hx,x);
107 if (hx >= 0x7ff00000) return x+x;
108 k += (hx>>20)-1023;
109 hx &= 0x000fffff;
110 i = (hx+0x95f64)&0x100000
    [all...]
e_sqrt.h 97 u_int32_t hx,hy; local
98 GET_HIGH_WORD(hx,x);
100 SET_HIGH_WORD(x,(hx&0x7fffffff)|(hy&0x80000000));
111 int32_t k,hx,lx; local
112 EXTRACT_WORDS(hx,lx,x);
113 k = (hx&0x7ff00000)>>20; /* extract exponent */
115 if ((lx|(hx&0x7fffffff))==0) return x; /* +-0 */
117 GET_HIGH_WORD(hx,x);
118 k = ((hx&0x7ff00000)>>20) - 54;
125 {SET_HIGH_WORD(x,(hx&0x800fffff)|(k<<20)); return x;
    [all...]
  /external/skia/experimental/Intersection/
EdgeWalkerQuadratic4x4_Test.cpp 38 int hx = h & 0x03; local
48 path.quadTo(gx, gy, hx, hy);
58 str += sprintf(str, " path.quadTo(%d, %d, %d, %d);\n", gx, gy, hx, hy);
EdgeWalkerPolygon4x4_Test.cpp 35 int hx = h & 0x03; local
47 path.lineTo(hx, hy);
59 str += sprintf(str, " path.lineTo(%d, %d);\n", hx, hy);
EdgeWalkerPolygons_Mismatches.cpp 1606 int hx = miss.h & 0x03; local
    [all...]
  /external/skia/src/core/
SkColor.cpp 93 SkFixed hx = (hsv[0] < 0 || hsv[0] >= SkIntToScalar(360)) ? 0 : SkScalarToFixed(hsv[0]/60); local
94 SkFixed f = hx & 0xFFFF;
103 SkASSERT((unsigned)(hx >> 16) < 6);
104 switch (hx >> 16) {
  /external/skia/tests/
PathOpsSimplifyQuadThreadedTest.cpp 37 int hx = h & 0x03; local
49 SkIntToScalar(hx), SkIntToScalar(hy));
60 str += sprintf(str, " path.quadTo(%d, %d, %d, %d);\n", gx, gy, hx, hy);
PathOpsSimplifyQuadralateralsThreadedTest.cpp 37 int hx = h & 0x03; local
49 path.lineTo(SkIntToScalar(hx), SkIntToScalar(hy));
62 str += sprintf(str, " path.lineTo(%d, %d);\n", hx, hy);
  /bionic/libm/upstream-freebsd/lib/msun/ld128/
s_exp2l.c 358 uint32_t hx, ix, i0; local
364 hx = u.xbits.expsign;
365 ix = hx & EXPMASK;
370 || (hx & 0x8000) == 0)
s_logl.c 459 uint16_t hx; local
461 EXTRACT_LDBL128_WORDS(hx, lx, llx, x);
467 if (hx == 0 || hx >= 0x8000) { /* zero, negative or subnormal? */
468 if (((hx & 0x7fff) | lx | llx) == 0)
470 if (hx != 0)
474 EXTRACT_LDBL128_WORDS(hx, lx, llx, x);
476 } else if (hx >= 0x7fff)
481 k += hx;
571 int16_t ax, hx; local
    [all...]
  /external/chromium_org/third_party/skia/experimental/Intersection/
EdgeWalkerPolygon4x4_Test.cpp 35 int hx = h & 0x03; local
47 path.lineTo(hx, hy);
59 str += sprintf(str, " path.lineTo(%d, %d);\n", hx, hy);
EdgeWalkerPolygons_Mismatches.cpp 1606 int hx = miss.h & 0x03; local
    [all...]
  /external/chromium_org/v8/third_party/fdlibm/
fdlibm.cc 250 int32_t hx = static_cast<int32_t>(internal::double_to_uint64(x) >> 32); local
251 int32_t ix = hx & 0x7fffffff;
273 if (hx < 0) {
fdlibm.js 40 var hx = %_DoubleHi(X); variable
41 var ix = hx & 0x7fffffff;
45 if (hx > 0) {
98 if (hx < 0) {
214 // 2. if x < 2^-28 (hx<0x3e300000 0), return x with inexact if x!=0.
248 var hx = %_DoubleHi(x); variable
249 var ix = hx & 0x7fffffff;
295 return (1 - ((hx >> 30) & 2)) *
435 var hx = %_DoubleHi(x); variable
436 var ax = hx & 0x7fffffff
625 var hx = %_DoubleHi(x); variable
    [all...]
  /bionic/libm/upstream-freebsd/lib/msun/src/
e_j0.c 88 int32_t hx,ix; local
90 GET_HIGH_WORD(hx,x);
91 ix = hx&0x7fffffff;
149 int32_t hx,ix,lx; local
151 EXTRACT_WORDS(hx,lx,x);
152 ix = 0x7fffffff&hx;
156 if(hx<0) return zero/zero;
e_j0f.c 45 int32_t hx,ix; local
47 GET_FLOAT_WORD(hx,x);
48 ix = hx&0x7fffffff;
106 int32_t hx,ix; local
108 GET_FLOAT_WORD(hx,x);
109 ix = 0x7fffffff&hx;
113 if(hx<0) return zero/zero;
e_j1.c 89 int32_t hx,ix; local
91 GET_HIGH_WORD(hx,x);
92 ix = hx&0x7fffffff;
114 if(hx<0) return -z;
146 int32_t hx,ix,lx; local
148 EXTRACT_WORDS(hx,lx,x);
149 ix = 0x7fffffff&hx;
153 if(hx<0) return zero/zero;
e_j1f.c 46 int32_t hx,ix; local
48 GET_FLOAT_WORD(hx,x);
49 ix = hx&0x7fffffff;
71 if(hx<0) return -z;
103 int32_t hx,ix; local
105 GET_FLOAT_WORD(hx,x);
106 ix = 0x7fffffff&hx;
110 if(hx<0) return zero/zero;
e_pow.c 102 int32_t hx,hy,ix,iy; local
105 EXTRACT_WORDS(hx,lx,x);
107 ix = hx&0x7fffffff; iy = hy&0x7fffffff;
113 if (hx==0x3ff00000 && lx == 0) return one;
126 if(hx<0) {
155 if(hx>=0) /* x >= +0 */
166 if(hx<0) {
177 n = (hx>>31)+1;
180 n = ((u_int32_t)hx>>31)-1;
e_powf.c 61 int32_t hx,hy,ix,iy,is; local
63 GET_FLOAT_WORD(hx,x);
65 ix = hx&0x7fffffff; iy = hy&0x7fffffff;
71 if (hx==0x3f800000) return one;
84 if(hx<0) {
107 if(hx>=0) /* x >= +0 */
116 if(hx<0) {
125 n = ((u_int32_t)hx>>31)-1;
s_erff.c 84 int32_t hx,ix,i; local
86 GET_FLOAT_WORD(hx,x);
87 ix = hx&0x7fffffff;
89 i = ((u_int32_t)hx>>31)<<1;
109 if(hx>=0) return erx + P/Q; else return -erx - P/Q;
112 if(hx>=0) return one-tiny; else return tiny-one;
123 SET_FLOAT_WORD(z,hx&0xffffe000);
125 if(hx>=0) return one-r/x; else return r/x-one;
131 int32_t hx,ix; local
133 GET_FLOAT_WORD(hx,x)
    [all...]
  /external/llvm/lib/Support/
APInt.cpp 301 uint64_t hx = x[i] >> 32; local
310 carry = hx * ly + (dest[i] >> 32) + (hasCarry ? (1ULL << 32) : 0);
318 (carry >> 32) + ((lx * hy) >> 32) + hx * hy;
331 uint64_t carry = 0, lx = 0, hx = 0; local
334 hx = x[j] >> 32;
342 carry = (hasCarry ? (1ULL << 32) : 0) + hx * ly + (resul >> 32);
350 ((lx * hy) >> 32) + hx * hy;
    [all...]

Completed in 548 milliseconds

1 2 3 45 6