Home
last modified time | relevance | path

Searched refs:low (Results 1 – 19 of 19) sorted by relevance

/picolibc-3.7.0-3.6.0/newlib/libm/ld/ld128/
De_hypotl.c64 u_int64_t low; in hypotl() local
66 GET_LDOUBLE_LSW64(low,a); in hypotl()
67 if(((ha&0xffffffffffffLL)|low)==0 && !issignalingl_inline(b)) in hypotl()
69 GET_LDOUBLE_LSW64(low,b); in hypotl()
70 if(((hb^0x7fff000000000000LL)|low)==0 && !issignalingl_inline(a)) in hypotl()
82 u_int64_t low; in hypotl() local
83 GET_LDOUBLE_LSW64(low,b); in hypotl()
84 if((hb|low)==0) return a; in hypotl()
/picolibc-3.7.0-3.6.0/newlib/libm/math/
Ds_hypot.c78 __uint32_t low; in hypot64() local
80 GET_LOW_WORD(low, a); in hypot64()
81 if (((ha & 0xfffff) | low) == 0 && !issignaling(b)) in hypot64()
83 GET_LOW_WORD(low, b); in hypot64()
84 if (((hb ^ 0x7ff00000) | low) == 0 && !issignaling(a)) in hypot64()
97 __uint32_t low; in hypot64() local
98 GET_LOW_WORD(low, b); in hypot64()
99 if ((hb | low) == 0) in hypot64()
Ds_atan.c111 __uint32_t low; in atan64() local
112 GET_LOW_WORD(low, x); in atan64()
113 if (ix > 0x7ff00000 || (ix == 0x7ff00000 && (low != 0))) in atan64()
Dk_tan.c81 __uint32_t low; in __kernel_tan() local
82 GET_LOW_WORD(low, x); in __kernel_tan()
83 if (((ix | low) | (iy + 1)) == 0) in __kernel_tan()
Ds_rem_pio2.c79 __uint32_t low; in __rem_pio2() local
161 GET_LOW_WORD(low, x); in __rem_pio2()
162 SET_LOW_WORD(z, low); in __rem_pio2()
/picolibc-3.7.0-3.6.0/newlib/libm/ld/ld80/
De_hypotl.c64 u_int32_t es,high,low; in hypotl() local
66 GET_LDOUBLE_WORDS(es,high,low,a); in hypotl()
68 if(((high&0x7fffffff)|low)==0 && !issignalingl_inline(b)) in hypotl()
70 GET_LDOUBLE_WORDS(es,high,low,b); in hypotl()
71 if(((eb^0x7fff)|(high&0x7fffffff)|low)==0 && !issignalingl_inline(a)) in hypotl()
82 u_int32_t es,high,low; in hypotl() local
83 GET_LDOUBLE_WORDS(es,high,low,b); in hypotl()
85 if((high|low)==0) return a; in hypotl()
/picolibc-3.7.0-3.6.0/newlib/libm/common/
Ds_cbrt.c63 __uint32_t high,low; in cbrt64() local
69 GET_LOW_WORD(low,x); in cbrt64()
70 if((hx|low)==0) in cbrt64()
Ds_expm1.c180 __uint32_t low; in _NAME_64() local
181 GET_LOW_WORD(low,x); in _NAME_64()
182 if(((hx&0xfffff)|low)!=0) in _NAME_64()
/picolibc-3.7.0-3.6.0/test/
Dffs.c90 long int low = x & 0xffffffffl; in check() local
93 printf("failed %s(%08lx%08lx): got %d expect %d\n", which, high, low, got, expect); in check()
/picolibc-3.7.0-3.6.0/newlib/libc/machine/xtensa/
Dxtensa.tex24 and interrupts encountered in a low-level subroutine of a program.
53 and interrupts encountered in a low-level subroutine of a program.
/picolibc-3.7.0-3.6.0/newlib/libc/machine/xstormy16/
Dsetjmp.S23 pop r1 ; PC low word
/picolibc-3.7.0-3.6.0/newlib/libm/ld/
Dmath_private_openbsd.h122 u_int64_t high, low; in isnanl_inline() local
127 GET_LDOUBLE_LSW64(low, x); in isnanl_inline()
129 if (high << (64 - LDBL_MANH_SIZE) == 0 && low == 0) in isnanl_inline()
/picolibc-3.7.0-3.6.0/newlib/libc/machine/rl78/
Dsetjmp.S161 _push 28 ; low half of PC
/picolibc-3.7.0-3.6.0/newlib/libc/machine/arc/
Dstrcmp.S103 bic_s r2,r2,r0 ; get low estimate for r2 and get ...
/picolibc-3.7.0-3.6.0/newlib/libc/machine/m68k/
Dmemset.S51 move.b d0,d2 | distribute low byte to all byte in word
/picolibc-3.7.0-3.6.0/newlib/libm/test/
Dtest_is.c1972 int low, in test_to_set() argument
1977 for (i = low; i <= high; i++) { in test_to_set()
/picolibc-3.7.0-3.6.0/doc/
Dbuild.md16 On POSIX systems, meson uses the low-level 'ninja' build tool and
/picolibc-3.7.0-3.6.0/
DREADME.md392 * Fix FPSCR state for Arm8.1-M low overhead loops (thanks to David
/picolibc-3.7.0-3.6.0/newlib/
DChangeLog-20155651 low-level seek error condition. Restore old errno in case of
13173 a low-level read if we don't get the full amount of bytes so
13340 only require one low-level system read.