/sysdeps/ieee754/ldbl-96/ |
A D | e_coshl.c | 47 int32_t ex; in __ieee754_coshl() local 51 GET_LDOUBLE_WORDS(ex,mx,lx,x); in __ieee754_coshl() 52 ex &= 0x7fff; in __ieee754_coshl() 55 if (ex < 0x4003 || (ex == 0x4003 && mx < 0xb0000000u)) { in __ieee754_coshl() 57 if(ex < 0x3ffd || (ex == 0x3ffd && mx < 0xb17217f7u)) { in __ieee754_coshl() 58 if (ex<0x3fbc) return one; /* cosh(tiny) = 1 */ in __ieee754_coshl() 70 if (ex < 0x400c || (ex == 0x400c && mx < 0xb1700000u)) in __ieee754_coshl() 74 if (ex == 0x400c && (mx < 0xb174ddc0u in __ieee754_coshl() 83 if(ex==0x7fff) return x*x; in __ieee754_coshl()
|
A D | s_remquol.c | 31 int32_t ex,ep,hx,hp; in __remquol() local 35 GET_LDOUBLE_WORDS (ex, hx, lx, x); in __remquol() 37 sx = ex & 0x8000; in __remquol() 40 ex &= 0x7fff; in __remquol() 45 if ((ex == 0x7fff) /* x not finite */ in __remquol() 53 if (((ex - ep) | (hx - hp) | (lx - lp)) == 0) in __remquol()
|
/sysdeps/ieee754/dbl-64/ |
A D | s_logb.c | 28 int64_t ix, ex; in __logb() local 34 ex = ix >> 52; in __logb() 35 if (ex == 0x7ff) in __logb() 37 if (__glibc_unlikely (ex == 0)) in __logb() 40 ex -= m - 12; in __logb() 42 if (FIX_INT_FP_CONVERT_ZERO && ex == 1023) in __logb() 44 return (double) (ex - 1023); in __logb()
|
A D | s_frexp.c | 39 int32_t ex = 0x7ff & (ix >> 52); in __frexp() local 42 if (__glibc_likely (ex != 0x7ff && x != 0.0)) in __frexp() 45 e = ex - 1022; in __frexp() 46 if (__glibc_unlikely (ex == 0)) in __frexp() 51 ex = 0x7ff & (ix >> 52); in __frexp() 52 e = ex - 1022 - 54; in __frexp()
|
/sysdeps/m68k/m680x0/fpu/ |
A D | s_fpclassifyl.c | 27 uint32_t ex, hx, lx; in __fpclassifyl() local 30 GET_LDOUBLE_WORDS (ex, hx, lx, x); in __fpclassifyl() 31 ex &= 0x7fff; in __fpclassifyl() 32 if ((ex | hx | lx) == 0) in __fpclassifyl() 34 else if (ex == 0 && (hx & 0x80000000) == 0) in __fpclassifyl() 36 else if (ex == 0x7fff) in __fpclassifyl()
|
/sysdeps/x86/fpu/ |
A D | s_fpclassifyl.c | 27 uint32_t ex, hx, lx; in __fpclassifyl() local 30 GET_LDOUBLE_WORDS (ex, hx, lx, x); in __fpclassifyl() 31 ex &= 0x7fff; in __fpclassifyl() 32 if ((ex | lx | hx) == 0) in __fpclassifyl() 34 else if (ex == 0 && (hx & 0x80000000) == 0) in __fpclassifyl() 40 else if (ex == 0x7fff) in __fpclassifyl()
|
A D | fenv_private.h | 112 libc_fetestexcept_387 (int ex) in libc_fetestexcept_387() argument 116 return temp & ex & FE_ALL_EXCEPT; in libc_fetestexcept_387() 137 libc_feupdateenv_test_sse (fenv_t *e, int ex) in libc_feupdateenv_test_sse() argument 154 return cur_ex & ex; in libc_feupdateenv_test_sse() 158 libc_feupdateenv_test_387 (fenv_t *e, int ex) in libc_feupdateenv_test_387() argument 173 return cur_ex & ex; in libc_feupdateenv_test_387()
|
/sysdeps/ieee754/ldbl-128/ |
A D | e_coshl.c | 65 int32_t ex; in __ieee754_coshl() local 69 ex = u.parts32.w0 & 0x7fffffff; in __ieee754_coshl() 72 u.parts32.w0 = ex; in __ieee754_coshl() 75 if (ex >= 0x7fff0000) in __ieee754_coshl() 79 if (ex < 0x3ffd62e4) /* 0.3465728759765625 */ in __ieee754_coshl() 81 if (ex < 0x3fb80000) /* |x| < 2^-116 */ in __ieee754_coshl() 90 if (ex < 0x40044000) in __ieee754_coshl() 97 if (ex <= 0x400c62e3) /* 11356.375 */ in __ieee754_coshl()
|
A D | s_logbl.c | 32 int64_t lx, hx, ex; in __logbl() local 40 if ((ex = hx >> 48) == 0) /* IEEE 754 logb */ in __logbl() 49 ex -= ma - 16; in __logbl() 51 return (_Float128) (ex - 16383); in __logbl()
|
/sysdeps/ia64/fpu/ |
A D | libm_support.h | 276 int ex; member 324 if ( (x)->ex != (y)->ex ) { \ 328 FP80(t1)->exponent = BIAS_80 + (x)->ex-(y)->ex; \ 342 (x)->ex = (y)->ex; \ 347 (r)->ex = (y)->ex; \ 371 if ( (x)->ex != (y)->ex ) { \ 375 FP80(t1)->exponent = BIAS_80 + (x)->ex-(y)->ex; \ 388 (x)->ex = (y)->ex; \ 393 (r)->ex = (y)->ex; \ 608 (r)->ex = (x)->ex + (y)->ex; \ [all …]
|
/sysdeps/riscv/rvf/ |
A D | fenv_private.h | 84 libc_fetestexcept_riscv (int ex) in libc_fetestexcept_riscv() argument 86 return riscv_getflags () & ex; in libc_fetestexcept_riscv() 111 libc_feupdateenv_test_riscv (const fenv_t *envp, int ex) in libc_feupdateenv_test_riscv() argument 116 return flags & ex; in libc_feupdateenv_test_riscv()
|
/sysdeps/arm/ |
A D | fenv_private.h | 93 libc_fetestexcept_vfp (int ex) in libc_fetestexcept_vfp() argument 98 return fpscr & ex & FE_ALL_EXCEPT; in libc_fetestexcept_vfp() 115 libc_feupdateenv_test_vfp (const fenv_t *envp, int ex) in libc_feupdateenv_test_vfp() argument 134 return excepts & ex; in libc_feupdateenv_test_vfp()
|
/sysdeps/csky/fpu/ |
A D | fenv_private.h | 109 libc_fetestexcept_vfp (int ex) in libc_fetestexcept_vfp() argument 115 return fpsr & ex & FE_ALL_EXCEPT; in libc_fetestexcept_vfp() 137 libc_feupdateenv_test_vfp (const fenv_t *envp, int ex) in libc_feupdateenv_test_vfp() argument 160 return excepts & ex; in libc_feupdateenv_test_vfp()
|
/sysdeps/aarch64/fpu/ |
A D | fenv_private.h | 103 libc_fetestexcept_aarch64 (int ex) in libc_fetestexcept_aarch64() argument 108 return fpsr & ex & FE_ALL_EXCEPT; in libc_fetestexcept_aarch64() 138 libc_feupdateenv_test_aarch64 (const fenv_t *envp, int ex) in libc_feupdateenv_test_aarch64() argument 164 return excepts & ex; in libc_feupdateenv_test_aarch64()
|
/sysdeps/x86_64/fpu/scripts/ |
A D | bench_libmvec.py | 421 except IOError as ex: 422 die("Failed to open input file (%s): %s" % (ex.filename, ex.strerror))
|
/sysdeps/s390/fpu/ |
A D | fenv_private.h | 118 libc_feupdateenv_test_s390 (const fenv_t *envp, int ex) in libc_feupdateenv_test_s390() argument 146 return excepts & ex; in libc_feupdateenv_test_s390()
|
/sysdeps/sparc/fpu/ |
A D | fenv_private.h | 60 libc_feupdateenv_test (fenv_t *e, int ex) in libc_feupdateenv_test() argument 71 return etmp & ex; in libc_feupdateenv_test()
|
/sysdeps/powerpc/fpu/ |
A D | fenv_private.h | 99 libc_feupdateenv_test_ppc (fenv_t *envp, int ex) in libc_feupdateenv_test_ppc() argument 102 ~FPSCR_STATUS_MASK) & ex; in libc_feupdateenv_test_ppc()
|
/sysdeps/generic/ |
A D | fenv_private.h | 131 default_libc_feupdateenv_test (fenv_t *e, int ex) in default_libc_feupdateenv_test() argument 133 int ret = fetestexcept (ex); in default_libc_feupdateenv_test()
|
/sysdeps/powerpc/ |
A D | test-arith.c | 227 unsigned char *ex, *ac; in check_result() local 232 ex = (unsigned char *)&expected; in check_result() 235 printf("%02x", ex[i]); in check_result() 248 #define except_entry(ex) { ex, #ex } , argument
|
/sysdeps/s390/ |
A D | memcmp-z900.S | 64 ex %r4,Z900_G5_EX_D(%r5)
|
A D | memset-z900.S | 84 ex %r4,Z900_G5_EX_D(%r5)
|
A D | memcpy-z900.S | 85 ex %r4,Z900_G5_EX_D(%r5)
|