Home
last modified time | relevance | path

Searched refs:__LO (Results 1 – 20 of 20) sorted by relevance

/third_party/jerryscript/jerry-libm/
Dnextafter.c39 lx = __LO (x); /* low word of x */ in nextafter()
41 ly = __LO (y); /* low word of y */ in nextafter()
Djerry-libm-internal.h51 #define __LO(x) *(const int *) &x macro
63 #define __LO(x) *(1 + (const int *) &x) macro
Datan2.c73 lx = __LO (x); in atan2()
76 ly = __LO (y); in atan2()
Dfmod.c45 lx = __LO (x); /* low word of x */ in fmod()
47 ly = __LO (y); /* low word of y */ in fmod()
Disnan.c40 lx = __LO (x); in isnan()
Dacosh.c72 else if (((hx - 0x3ff00000) | __LO (x)) == 0) in acosh()
Dlog10.c78 lx = __LO (x); /* low word of x */ in log10()
Dceil.c49 i1 = __LO (x); in ceil()
Dfloor.c49 i1 = __LO (x); in floor()
Dscalbn.c46 lx = __LO (x); in scalbn()
Dpow.c131 lx = __LO (x); in pow()
133 ly = __LO (y); in pow()
Dexp.c136 if (((hx & 0xfffff) | __LO (x)) != 0) /* NaN */ in exp()
Datan.c92 if (ix > 0x7ff00000 || (ix == 0x7ff00000 && (__LO (x) != 0))) in atan()
Dsqrt.c112 ix1 = __LO (x); /* low word of x */ in sqrt()
Dlog2.c61 lx = __LO (x); /* low word of x */ in log2()
Dlog.c101 lx = __LO (x); /* low word of x */ in log()
Dasin.c88 if (((ix - 0x3ff00000) | __LO (x)) == 0) /* asin(1) = +-pi/2 with inexact */ in asin()
Dacos.c80 if (((ix - 0x3ff00000) | __LO (x)) == 0) /* |x| == 1 */ in acos()
Dexpm1.c161 low = __LO (x); in expm1()
Dtrig.c581 z.as_int.lo = __LO (x); in __ieee754_rem_pio2()
809 if (((ix | __LO (x)) | (iy + 1)) == 0) in __kernel_tan()