Home
last modified time | relevance | path

Searched refs:ERANGE (Results 1 – 25 of 449) sorted by relevance

12345678910>>...18

/freebsd/contrib/arm-optimized-routines/math/test/testcases/directed/
H A Dpow.tst27 func=pow op1=00000000.00000000 op2=80000000.00000001 result=7ff00000.00000000 errno=ERANGE status=z
28 func=pow op1=00000000.00000000 op2=80100000.00000000 result=7ff00000.00000000 errno=ERANGE status=z
29 func=pow op1=00000000.00000000 op2=9fffffff.ffffffff result=7ff00000.00000000 errno=ERANGE status=z
30 func=pow op1=00000000.00000000 op2=bbdfffff.ffffffff result=7ff00000.00000000 errno=ERANGE status=z
31 func=pow op1=00000000.00000000 op2=bbe00000.00000000 result=7ff00000.00000000 errno=ERANGE status=z
32 func=pow op1=00000000.00000000 op2=bfe00000.00000000 result=7ff00000.00000000 errno=ERANGE status=z
33 func=pow op1=00000000.00000000 op2=bff00000.00000000 result=7ff00000.00000000 errno=ERANGE status=z
34 func=pow op1=00000000.00000000 op2=c0000000.00000000 result=7ff00000.00000000 errno=ERANGE status=z
35 func=pow op1=00000000.00000000 op2=c0080000.00000000 result=7ff00000.00000000 errno=ERANGE status=z
36 func=pow op1=00000000.00000000 op2=c0120000.00000000 result=7ff00000.00000000 errno=ERANGE status=z
[all …]
H A Dexp2f.tst11 func=exp2f op1=7f7fffff result=7f800000 errno=ERANGE status=ox
13 func=exp2f op1=ff7fffff result=00000000 errno=ERANGE status=ux
18 func=exp2f op1=43000000 result=7f800000 errno=ERANGE status=ox
19 func=exp2f op1=43000001 result=7f800000 errno=ERANGE status=ox
24 func=exp2f op1=c3158000 result=00000000.800 errno=ERANGE status=ux
25 func=exp2f op1=c3165432 result=00000000.4bd errno=ERANGE status=ux
H A Dexpf.tst11 func=expf op1=7f7fffff result=7f800000 errno=ERANGE status=ox
13 func=expf op1=ff7fffff result=00000000 errno=ERANGE status=ux
18 func=expf op1=42cffff8 result=7f800000 errno=ERANGE status=ox
19 func=expf op1=42d00008 result=7f800000 errno=ERANGE status=ox
22 func=expf op1=c2cffff8 result=00000000 errno=ERANGE status=ux
23 func=expf op1=c2d00008 result=00000000 errno=ERANGE status=ux
H A Dpowf.tst119 func=powf op1=00000001 op2=bf800000 result=7f800000 errno=ERANGE status=ox
130 func=powf op1=00000000 op2=bf000000 result=7f800000 errno=ERANGE status=z
131 func=powf op1=00000000 op2=c0400000 result=7f800000 errno=ERANGE status=z
132 func=powf op1=00000000 op2=c0800000 result=7f800000 errno=ERANGE status=z
133 func=powf op1=00000000 op2=ff800000 result=7f800000 errno=ERANGE
144 func=powf op1=80000000 op2=bf000000 result=7f800000 errno=ERANGE status=z
145 func=powf op1=80000000 op2=c0400000 result=ff800000 errno=ERANGE status=z
146 func=powf op1=80000000 op2=c0800000 result=7f800000 errno=ERANGE status=z
147 func=powf op1=80000000 op2=ff800000 result=7f800000 errno=ERANGE
227 ; iso c allows both errno=ERANGE and errno=0
[all …]
H A Dexp2.tst12 func=exp2 op1=7fefffff.ffffffff result=7ff00000.00000000 errno=ERANGE status=ox
13 func=exp2 op1=ffefffff.ffffffff result=00000000.00000000 errno=ERANGE status=ux
28 func=exp2 op1=40900000.00000000 result=7ff00000.00000000 errno=ERANGE status=ox
30 func=exp2 op1=c090cc00.00000000 result=00000000.00000000 errno=ERANGE status=ux
H A Dexp.tst12 func=exp op1=7fefffff.ffffffff result=7ff00000.00000000 errno=ERANGE status=ox
13 func=exp op1=ffefffff.ffffffff result=00000000.00000000 errno=ERANGE status=ux
28 func=exp op1=40862e42.fefa39f0 result=7ff00000.00000000 errno=ERANGE status=ox
30 func=exp op1=c0874910.d52d3052 result=00000000.00000000 errno=ERANGE status=ux
/freebsd/crypto/openssh/openbsd-compat/
H A Dfmt_scaled.c129 errno = ERANGE; in scan_scaled()
134 errno = ERANGE; in scan_scaled()
140 errno = ERANGE; in scan_scaled()
144 errno = ERANGE; in scan_scaled()
149 errno = ERANGE; in scan_scaled()
182 errno = ERANGE; in scan_scaled()
229 errno = ERANGE; in fmt_scaled()
237 errno = ERANGE; in fmt_scaled()
H A Dstrtonum.c46 { "too small", ERANGE }, in strtonum()
47 { "too large", ERANGE }, in strtonum()
58 else if ((ll == LLONG_MIN && errno == ERANGE) || ll < minval) in strtonum()
60 else if ((ll == LLONG_MAX && errno == ERANGE) || ll > maxval) in strtonum()
/freebsd/contrib/mandoc/
H A Dcompat_strtonum.c43 { "too small", ERANGE }, in strtonum()
44 { "too large", ERANGE }, in strtonum()
55 else if ((ll == LLONG_MIN && errno == ERANGE) || ll < minval) in strtonum()
57 else if ((ll == LLONG_MAX && errno == ERANGE) || ll > maxval) in strtonum()
/freebsd/lib/libc/stdlib/
H A Dstrtonum.c41 { "too small", ERANGE }, in strtonum()
42 { "too large", ERANGE }, in strtonum()
53 else if ((ll == LLONG_MIN && errno == ERANGE) || ll < minval) in strtonum()
55 else if ((ll == LLONG_MAX && errno == ERANGE) || ll > maxval) in strtonum()
/freebsd/sys/dev/fdt/
H A Dfdt_common.c93 return (ERANGE); in fdt_get_range_by_busaddr()
113 return (ERANGE); in fdt_get_range_by_busaddr()
161 return (ERANGE); in fdt_get_range()
173 return (ERANGE); in fdt_get_range()
179 return (ERANGE); in fdt_get_range()
334 return (ERANGE); in fdt_addrsize_cells()
466 rv = ERANGE; in fdt_get_reserved_regions()
474 rv = ERANGE; in fdt_get_reserved_regions()
564 rv = ERANGE; in fdt_get_mem_regions()
571 rv = ERANGE; in fdt_get_mem_regions()
[all …]
/freebsd/contrib/arm-optimized-routines/math/
H A Dmath_err.c29 return with_errno (y, ERANGE); in xflow()
58 return with_errno (y, ERANGE); in __math_divzero()
73 return y == 0.0 ? with_errno (y, ERANGE) : y; in __math_check_uflow()
79 return isinf (y) ? with_errno (y, ERANGE) : y; in __math_check_oflow()
H A Dmath_errf.c29 return with_errnof (y, ERANGE); in xflowf()
58 return with_errnof (y, ERANGE); in __math_divzerof()
73 return y == 0.0f ? with_errnof (y, ERANGE) : y; in __math_check_uflowf()
79 return isinf (y) ? with_errnof (y, ERANGE) : y; in __math_check_oflowf()
/freebsd/contrib/arm-optimized-routines/pl/math/
H A Dmath_errf.c29 return with_errnof (y, ERANGE); in xflowf()
56 return with_errnof (y, ERANGE); in __math_divzerof()
71 return y == 0.0f ? with_errnof (y, ERANGE) : y; in __math_check_uflowf()
77 return isinf (y) ? with_errnof (y, ERANGE) : y; in __math_check_oflowf()
H A Dmath_err.c29 return with_errno (y, ERANGE); in xflow()
56 return with_errno (y, ERANGE); in __math_divzero()
71 return y == 0.0 ? with_errno (y, ERANGE) : y; in __math_check_uflow()
77 return isinf (y) ? with_errno (y, ERANGE) : y; in __math_check_oflow()
/freebsd/usr.sbin/pw/
H A Dstrtounum.c56 errno = ERANGE; in strtounum()
60 if (errno == ERANGE || ret > maxval) { in strtounum()
61 errno = ERANGE; in strtounum()
/freebsd/contrib/libarchive/cpio/test/
H A Dtest_basic.c151 strerror(ERANGE), in DEFINE_TEST()
166 strerror(ERANGE), in DEFINE_TEST()
182 strerror(ERANGE), in DEFINE_TEST()
198 strerror(ERANGE), in DEFINE_TEST()
213 strerror(ERANGE), in DEFINE_TEST()
/freebsd/lib/libc/gen/
H A Dgetlogin.c63 return (ERANGE); in getlogin_r()
70 return (ERANGE); in getlogin_r()
80 return (ERANGE); in __getlogin_r_fbsd12()
H A Dttyname.c62 return (ERANGE); in ttyname_r()
71 return (ERANGE); in ttyname_r()
76 return (errno == EINVAL ? ERANGE : errno); in ttyname_r()
/freebsd/contrib/arm-optimized-routines/pl/math/test/testcases/directed/
H A Derfc.tst11 func=erfc op1=7fefffff.ffffffff result=00000000.00000000 errno=ERANGE status=ux
13 ; state that errno `may` be set to ERANGE in case of underflow.
16 ; func=erfc op1=403b44af.48b01531 result=00000000.00000000 errno=ERANGE status=ux
19 func=erfc op1=403bffff.ffffffff result=00000000.00000000 errno=ERANGE status=ux
/freebsd/contrib/libarchive/libarchive/
H A Darchive_write_set_format_ar.c277 archive_set_error(&a->archive, ERANGE, in archive_write_ar_header()
301 archive_set_error(&a->archive, ERANGE, in archive_write_ar_header()
312 archive_set_error(&a->archive, ERANGE, in archive_write_ar_header()
317 archive_set_error(&a->archive, ERANGE, in archive_write_ar_header()
322 archive_set_error(&a->archive, ERANGE, in archive_write_ar_header()
327 archive_set_error(&a->archive, ERANGE, in archive_write_ar_header()
343 archive_set_error(&a->archive, ERANGE, in archive_write_ar_header()
/freebsd/contrib/lib9p/
H A Drfuncs.c264 } while (error == ERANGE); in r_getpwuid()
281 } while (error == ERANGE); in r_getgrgid()
299 } while (error == ERANGE); in r_cap_getpwuid()
316 } while (error == ERANGE); in r_cap_getgrgid()
/freebsd/contrib/netbsd-tests/lib/libc/stdlib/
H A Dt_strtoi.c206 INTMAX_MIN, INTMAX_MAX, ERANGE }, in ATF_TC_BODY()
208 INTMAX_MIN, INTMAX_MAX, ERANGE }, in ATF_TC_BODY()
210 INTMAX_MIN, INTMAX_MAX, ERANGE }, in ATF_TC_BODY()
215 -1, 1, ERANGE }, in ATF_TC_BODY()
217 11, 20, ERANGE }, in ATF_TC_BODY()
/freebsd/sys/arm/mv/
H A Dmv_armv7_machdep.c210 return (ERANGE); in platform_mpp_init()
215 return (ERANGE); in platform_mpp_init()
221 return (ERANGE); in platform_mpp_init()
223 return (ERANGE); in platform_mpp_init()
226 return (ERANGE); in platform_mpp_init()
/freebsd/sys/compat/linuxkpi/common/include/linux/
H A Dkstrtox.h117 return (-ERANGE); in kstrtoint()
135 return (-ERANGE); in kstrtouint()
153 return (-ERANGE); in kstrtou8()
171 return (-ERANGE); in kstrtou16()

12345678910>>...18