Searched refs:ERANGE (Results 1 - 25 of 331) sorted by relevance

1234567891011>>

/freebsd-12-stable/usr.sbin/pw/
H A Dstrtounum.c58 errno = ERANGE;
62 if (errno == ERANGE || ret > maxval) {
63 errno = ERANGE;
/freebsd-12-stable/contrib/mandoc/
H A Dcompat_strtonum.c50 { "too small", ERANGE },
51 { "too large", ERANGE },
62 else if ((ll == LLONG_MIN && errno == ERANGE) || ll < minval)
64 else if ((ll == LLONG_MAX && errno == ERANGE) || ll > maxval)
/freebsd-12-stable/lib/libc/stdlib/
H A Dstrtonum.c44 { "too small", ERANGE },
45 { "too large", ERANGE },
56 else if ((ll == LLONG_MIN && errno == ERANGE) || ll < minval)
58 else if ((ll == LLONG_MAX && errno == ERANGE) || ll > maxval)
H A Dptsname.c83 errno = ERANGE;
97 errno = ERANGE;
/freebsd-12-stable/libexec/rtld-elf/tests/libpythagoras/
H A Dpythagoras.c38 errno = ERANGE;
/freebsd-12-stable/crypto/openssh/openbsd-compat/
H A Dstrtonum.c46 { "too small", ERANGE },
47 { "too large", ERANGE },
58 else if ((ll == LLONG_MIN && errno == ERANGE) || ll < minval)
60 else if ((ll == LLONG_MAX && errno == ERANGE) || ll > maxval)
H A Dfmt_scaled.c129 errno = ERANGE;
134 errno = ERANGE;
140 errno = ERANGE;
144 errno = ERANGE;
149 errno = ERANGE;
184 errno = ERANGE;
231 errno = ERANGE;
H A Dstrtoll.c126 errno = ERANGE;
136 errno = ERANGE;
/freebsd-12-stable/lib/libc/gen/
H A Dgetlogin.c67 return (ERANGE);
74 return (ERANGE);
84 return (ERANGE);
H A Dttyname.c66 return (ERANGE);
75 return (ERANGE);
80 return (errno == EINVAL ? ERANGE : errno);
/freebsd-12-stable/contrib/libstdc++/config/locale/generic/
H A Dc_locale.cc66 errno = ERANGE;
69 errno = ERANGE;
72 errno = ERANGE;
75 errno = ERANGE;
78 if (__sanity != __s && errno != ERANGE)
97 if (__sanity != __s && errno != ERANGE)
117 if (__sanity != __s && errno != ERANGE)
124 && errno != ERANGE)
/freebsd-12-stable/contrib/blacklist/port/
H A D_strtoi.h83 *rstatus = ERANGE;
88 *rstatus = ERANGE;
/freebsd-12-stable/crypto/heimdal/lib/roken/
H A Dstrerror_r.c71 return ERANGE;
77 return ERANGE;
/freebsd-12-stable/lib/libutil/
H A Dexpand_number.c53 errno = ERANGE;
90 errno = ERANGE;
/freebsd-12-stable/contrib/elftoolchain/libelftc/
H A Delftc_timestamp.c47 errno = ERANGE;
/freebsd-12-stable/include/
H A Dnss.h52 ((rv == NSS_STATUS_TRYAGAIN && err == ERANGE) ? NS_RETURN : \
/freebsd-12-stable/contrib/libstdc++/config/locale/gnu/
H A Dc_locale.cc53 if (__sanity != __s && errno != ERANGE)
67 if (__sanity != __s && errno != ERANGE)
87 if (__sanity != __s && errno != ERANGE)
/freebsd-12-stable/contrib/gcclibs/libiberty/
H A Dgetcwd.c49 errno = ERANGE;
H A Dgetpwd.c91 #ifdef ERANGE
92 if (e != ERANGE)
/freebsd-12-stable/contrib/binutils/libiberty/
H A Dgetcwd.c49 errno = ERANGE;
H A Dgetpwd.c91 #ifdef ERANGE
92 if (e != ERANGE)
/freebsd-12-stable/contrib/libarchive/cpio/test/
H A Dtest_basic.c152 strerror(ERANGE),
167 strerror(ERANGE),
183 strerror(ERANGE),
199 strerror(ERANGE),
214 strerror(ERANGE),
/freebsd-12-stable/sys/dev/fdt/
H A Dfdt_common.c96 return (ERANGE);
116 return (ERANGE);
164 return (ERANGE);
176 return (ERANGE);
182 return (ERANGE);
337 return (ERANGE);
348 return (ERANGE);
355 return (ERANGE);
469 rv = ERANGE;
477 rv = ERANGE;
[all...]
/freebsd-12-stable/contrib/serf/buckets/
H A Ddechunk_buckets.c91 return APR_FROM_OS_ERROR(ERANGE);
96 if (errno == ERANGE) {
97 return APR_FROM_OS_ERROR(ERANGE);
/freebsd-12-stable/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/
H A Dzcp_global.c64 {"ERANGE", ERANGE},

Completed in 375 milliseconds

1234567891011>>