HomeSort by relevance Sort by last modified time
    Searched refs:lx (Results 1 - 25 of 91) sorted by null

1 2 3 4

  /bionic/libm/src/
s_ilogb.c 31 int32_t hx,lx,ix; local
33 EXTRACT_WORDS(hx,lx,x);
36 if((hx|lx)==0)
40 for (ix = -1043; lx>0; lx<<=1) ix -=1;
47 else if (hx>0x7ff00000 || lx!=0) return FP_ILOGBNAN;
s_nextafter.c 35 u_int32_t lx,ly; local
37 EXTRACT_WORDS(hx,lx,x);
42 if(((ix>=0x7ff00000)&&((ix-0x7ff00000)|lx)!=0) || /* x is nan */
46 if((ix|lx)==0) { /* x == 0 */
52 if(hx>hy||((hx==hy)&&(lx>ly))) { /* x > y, x -= ulp */
53 if(lx==0) hx -= 1;
54 lx -= 1;
56 lx += 1;
57 if(lx==0) hx += 1;
60 if(hy>=0||hx>hy||((hx==hy)&&(lx>ly))){/* x < y, x -= ulp *
    [all...]
e_fmod.c 33 u_int32_t lx,ly,lz; local
35 EXTRACT_WORDS(hx,lx,x);
46 if((hx<hy)||(lx<ly)) return x; /* |x|<|y| return x */
47 if(lx==ly)
54 for (ix = -1043, i=lx; i>0; i<<=1) ix -=1;
69 /* set up {hx,lx}, {hy,ly} and align y to x */
75 hx = (hx<<n)|(lx>>(32-n));
76 lx <<= n;
78 hx = lx<<(n-32);
79 lx = 0
    [all...]
s_remquo.c 33 u_int32_t lx,ly,lz,q,sxy; local
35 EXTRACT_WORDS(hx,lx,x);
47 if((hx<hy)||(lx<ly)) {
51 if(lx==ly) {
60 for (ix = -1043, i=lx; i>0; i<<=1) ix -=1;
75 /* set up {hx,lx}, {hy,ly} and align y to x */
81 hx = (hx<<n)|(lx>>(32-n));
82 lx <<= n;
84 hx = lx<<(n-32);
85 lx = 0
    [all...]
s_logb.c 32 int32_t lx,ix; local
33 EXTRACT_WORDS(ix,lx,x);
35 if((ix|lx)==0) return -1.0/fabs(x);
s_nexttoward.c 39 u_int32_t lx; local
41 EXTRACT_WORDS(hx,lx,x);
45 if(((ix>=0x7ff00000)&&((ix-0x7ff00000)|lx)!=0) ||
56 if(lx==0) hx -= 1;
57 lx -= 1;
59 lx += 1;
60 if(lx==0) hx += 1;
67 INSERT_WORDS(y,hx,lx);
71 INSERT_WORDS(x,hx,lx);
e_acosh.c 45 u_int32_t lx; local
46 EXTRACT_WORDS(hx,lx,x);
54 } else if(((hx-0x3ff00000)|lx)==0) {
s_frexp.c 39 int32_t hx, ix, lx; local
40 EXTRACT_WORDS(hx,lx,x);
43 if(ix>=0x7ff00000||((ix|lx)==0)) return x; /* 0,inf,nan */
e_atanh.c 48 u_int32_t lx; local
49 EXTRACT_WORDS(hx,lx,x);
51 if ((ix|((lx|(-lx))>>31))>0x3ff00000) /* |x|>1 */
e_cosh.c 49 u_int32_t lx; local
76 GET_LOW_WORD(lx,x);
78 ((ix==0x408633ce)&&(lx<=(u_int32_t)0x8fb9f87d))) {
e_log10.c 67 u_int32_t lx; local
69 EXTRACT_WORDS(hx,lx,x);
73 if (((hx&0x7fffffff)|lx)==0)
e_sinh.c 46 u_int32_t lx; local
70 GET_LOW_WORD(lx,x);
71 if (ix<0x408633CE || ((ix==0x408633ce)&&(lx<=(u_int32_t)0x8fb9f87d))) {
  /frameworks/base/core/java/com/android/internal/util/
FastMath.java 30 long lx = (long)(x * (65536 * 256f)); local
31 return (int)((lx + 0x800000) >> 24);
  /external/fdlibm/
s_isnan.c 28 int hx,lx; local
30 lx = __LO(x);
31 hx |= (unsigned)(lx|(-lx))>>31;
s_nextafter.c 31 unsigned lx,ly; local
34 lx = __LO(x); /* low word of x */
40 if(((ix>=0x7ff00000)&&((ix-0x7ff00000)|lx)!=0) || /* x is nan */
44 if((ix|lx)==0) { /* x == 0 */
51 if(hx>hy||((hx==hy)&&(lx>ly))) { /* x > y, x -= ulp */
52 if(lx==0) hx -= 1;
53 lx -= 1;
55 lx += 1;
56 if(lx==0) hx += 1;
59 if(hy>=0||hx>hy||((hx==hy)&&(lx>ly))){/* x < y, x -= ulp *
    [all...]
s_ilogb.c 29 int hx,lx,ix; local
33 lx = __LO(x);
34 if((hx|lx)==0)
38 for (ix = -1043; lx>0; lx<<=1) ix -=1;
e_fmod.c 36 unsigned lx,ly,lz; local
39 lx = __LO(x); /* low word of x */
51 if((hx<hy)||(lx<ly)) return x; /* |x|<|y| return x */
52 if(lx==ly)
59 for (ix = -1043, i=lx; i>0; i<<=1) ix -=1;
74 /* set up {hx,lx}, {hy,ly} and align y to x */
80 hx = (hx<<n)|(lx>>(32-n));
81 lx <<= n;
83 hx = lx<<(n-32);
84 lx = 0
    [all...]
s_logb.c 29 int lx,ix; local
31 lx = __LO(x); /* low x */
32 if((ix|lx)==0) return -1.0/ieee_fabs(x);
s_frexp.c 40 int hx, ix, lx; local
43 lx = __LO(x);
45 if(ix>=0x7ff00000||((ix|lx)==0)) return x; /* 0,inf,nan */
e_atanh.c 52 unsigned lx; local
54 lx = __LO(x); /* low word */
56 if ((ix|((lx|(-lx))>>31))>0x3ff00000) /* |x|>1 */
e_log10.c 70 unsigned lx; local
73 lx = __LO(x); /* low word of x */
77 if (((hx&0x7fffffff)|lx)==0)
  /dalvik/dx/tests/084-dex-high-register-moves/
Blort.java 42 long lx = l; local
46 l = -lx;
  /frameworks/base/media/libstagefright/codecs/m4v_h263/enc/src/
dct.h 60 void idct_rowInter(Short *srce, UChar *rec, Int lx);
61 void idct_row0Inter(Short *blk, UChar *rec, Int lx);
62 void idct_row1Inter(Short *blk, UChar *rec, Int lx);
63 void idct_row2Inter(Short *blk, UChar *rec, Int lx);
64 void idct_row3Inter(Short *blk, UChar *rec, Int lx);
65 void idct_row4Inter(Short *blk, UChar *rec, Int lx);
66 void idct_row0x40Inter(Short *blk, UChar *rec, Int lx);
67 void idct_row0x20Inter(Short *blk, UChar *rec, Int lx);
68 void idct_row0x10Inter(Short *blk, UChar *rec, Int lx);
69 void idct_row0xCCInter(Short *blk, UChar *rec, Int lx);
    [all...]
motion_comp.cpp 45 Short mb[6][64], Int lx, Int lx_uv);
50 Int lx, /* i */
57 Int lx, /* i */
64 Int lx, /* i */
71 Int lx, /* i */
205 Int lx, /* i */
209 c_prev += (xpred >> 1) + ((ypred >> 1) * lx);
211 GetPredAdvBTable[ypred&1][xpred&1](c_prev, c_rec, lx, round1);
216 GetPredAdvBTable[ypred&1][xpred&1](c_prev, c_rec, lx, round1);
218 c_prev += (lx << 3) - B_SIZE
1523 Int lx; local
    [all...]
  /external/strace/
util.c 347 tprintf("%#lx", addr);
397 tprintf("%#lx", addr);
412 tprintf("%#lx", addr);
438 tprintf("%#lx", addr);
446 tprintf("%#lx", addr);
453 tprintf("%#lx", addr);
1080 tprintf("[%08lx] ", eip);
1089 tprintf("[%08lx] ", psw);
1091 tprintf("[%16lx] ", psw);
1101 tprintf("[%16lx] ", rip)
    [all...]

Completed in 377 milliseconds

1 2 3 4