Searched refs:lx (Results 1 - 17 of 17) sorted by relevance

/device/linaro/bootloader/edk2/StdLib/LibC/Math/
H A De_fmod.c38 u_int32_t lx,ly,lz; local
40 EXTRACT_WORDS(hx,lx,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
[all...]
H A Ds_frexp.c37 int32_t hx, ix, lx; local
38 EXTRACT_WORDS(hx,lx,x);
41 if(ix>=0x7ff00000||((ix|lx)==0)) return x; /* 0,inf,nan */
H A De_atan2.c66 u_int32_t lx,ly; local
68 EXTRACT_WORDS(hx,lx,x);
72 if(((ix|((lx|-lx)>>31))>0x7ff00000)||
75 if(((hx-0x3ff00000)|lx)==0) return atan(y); /* x=1.0 */
88 if((ix|lx)==0) return (hy<0)? -pi_o_2-tiny: pi_o_2+tiny;
H A De_cosh.c54 u_int32_t lx; local
81 GET_LOW_WORD(lx,x);
83 ((ix==0x408633ce)&&(lx<=(u_int32_t)0x8fb9f87d))) {
H A De_log10.c83 u_int32_t lx; local
85 EXTRACT_WORDS(hx,lx,x);
89 if (((hx&0x7fffffff)|lx)==0)
H A De_sinh.c46 u_int32_t lx; local
70 GET_LOW_WORD(lx,x);
71 if (ix<0x408633CE || ((ix==0x408633ce)&&(lx<=(u_int32_t)0x8fb9f87d))) {
H A Ds_scalbn.c37 int32_t k,hx,lx; local
38 EXTRACT_WORDS(hx,lx,x);
41 if ((lx|(hx&0x7fffffff))==0) return x; /* +-0 */
H A De_log2.c45 u_int32_t lx; local
47 EXTRACT_WORDS(hx,lx,x);
51 if (((hx&0x7fffffff)|lx)==0)
H A De_acos.c84 u_int32_t lx; local
86 GET_LOW_WORD(lx,x);
87 if(((ix-0x3ff00000)|lx)==0) { /* |x|==1 */
H A De_asin.c85 u_int32_t lx; local
86 GET_LOW_WORD(lx,x);
87 if(((ix-0x3ff00000)|lx)==0)
H A De_exp.c124 u_int32_t lx; local
125 GET_LOW_WORD(lx,x);
126 if(((hx&0xfffff)|lx)!=0)
H A De_log.c107 u_int32_t lx; local
109 EXTRACT_WORDS(hx,lx,x);
113 if (((hx&0x7fffffff)|lx)==0)
H A De_pow.c124 u_int32_t lx,ly; local
126 EXTRACT_WORDS(hx,lx,x);
134 if(ix > 0x7ff00000 || ((ix==0x7ff00000)&&(lx!=0)) ||
161 if(((ix-0x3ff00000)|lx)==0)
180 if(lx==0) {
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
H A Dmathmodule.c1094 PyObject *lx; local
1101 lx = PyLong_FromDouble(dx);
1102 if (lx == NULL)
1104 x = PyLong_AsLong(lx);
1105 Py_DECREF(lx);
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/zlib/
H A Dtrees.c1067 unsigned lx = 0; /* running index in l_buf */ local
1072 dist = s->d_buf[lx];
1073 lc = s->l_buf[lx++];
1099 Assert((uInt)(s->pending) < s->lit_bufsize + 2*lx,
1102 } while (lx < s->last_lit);
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
H A Dmathmodule.c1094 PyObject *lx; local
1101 lx = PyLong_FromDouble(dx);
1102 if (lx == NULL)
1104 x = PyLong_AsLong(lx);
1105 Py_DECREF(lx);
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/zlib/
H A Dtrees.c1079 unsigned lx = 0; /* running index in l_buf */ local
1084 dist = s->d_buf[lx];
1085 lc = s->l_buf[lx++];
1111 Assert((uInt)(s->pending) < s->lit_bufsize + 2*lx,
1114 } while (lx < s->last_lit);

Completed in 39 milliseconds