HomeSort by: relevance | last modified time | path
    Searched refs:ERANGE (Results 1 - 25 of 524) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/lib/libm/arch/vax/
n_infnan.S 41 * := ERANGE if result is +INF
42 * := -ERANGE if result is -INF
47 .set ERANGE,34
50 cmpl 4(%ap),$ERANGE
52 movl $ERANGE,_C_LABEL(errno)
  /src/sys/external/bsd/common/include/linux/
errno.h 52 #define ECHRNG ERANGE /* XXX ??? */
  /src/usr.bin/m4/lib/
strtonum.c 48 { "too small", ERANGE },
49 { "too large", ERANGE },
60 else if ((ll == LLONG_MIN && errno == ERANGE) || ll < minval)
62 else if ((ll == LLONG_MAX && errno == ERANGE) || ll > maxval)
  /src/external/bsd/mdocml/dist/
compat_strtonum.c 43 { "too small", ERANGE },
44 { "too large", ERANGE },
55 else if ((ll == LLONG_MIN && errno == ERANGE) || ll < minval)
57 else if ((ll == LLONG_MAX && errno == ERANGE) || ll > maxval)
  /src/lib/libm/noieee_src/
n_atanh.c 77 return(copysign(1.0,z)*infnan(ERANGE)); /* sign(x)*INF */
n_atanhf.c 79 return(copysignf(1.0,z)*infnan(ERANGE)); /* sign(x)*INF */
  /src/external/bsd/libfido2/dist/src/
util.c 24 else if (ull == ULLONG_MAX && errno == ERANGE)
  /src/external/gpl2/groff/dist/src/libs/libgroff/
matherr.c 44 errno = ERANGE;
getcwd.c 50 errno = ERANGE;
strtol.c 95 errno = ERANGE;
116 errno = ERANGE;
124 errno = ERANGE;
  /src/external/gpl3/gcc/dist/libquadmath/math/
fdimq.c 30 errno = ERANGE;
ldexpq.c 24 if(!finiteq(value)||value==0) errno = ERANGE;
  /src/external/gpl3/gcc.old/dist/libquadmath/math/
fdimq.c 30 errno = ERANGE;
ldexpq.c 24 if(!finiteq(value)||value==0) errno = ERANGE;
  /src/external/gpl3/gdb/dist/gnulib/import/
getlogin_r.c 62 return ERANGE;
76 return ERANGE;
88 ret = ERANGE;
106 return ERANGE;
  /src/external/gpl3/gdb.old/dist/gnulib/import/
getlogin_r.c 62 return ERANGE;
76 return ERANGE;
88 ret = ERANGE;
106 return ERANGE;
  /src/lib/libm/src/
k_standard.c 159 errno = ERANGE;
161 errno = ERANGE;
174 errno = ERANGE;
176 errno = ERANGE;
189 errno = ERANGE;
191 errno = ERANGE;
201 errno = ERANGE;
203 errno = ERANGE;
324 errno = ERANGE;
326 errno = ERANGE;
    [all...]
  /src/external/gpl3/gdb/dist/libiberty/testsuite/
test-strtol.c 92 { STRTOL, "0x80000000", 0, 0x7fffffffL, ERANGE },
93 { STRTOL, "-0x80000001", 0, -0x80000000L, ERANGE },
94 { STRTOUL, "0x100000000", 0, 0xffffffffUL, ERANGE },
107 { STRTOLL, "0x8000000000000000", 0, 0x7fffffffffffffffLL, ERANGE },
108 { STRTOLL, "-0x8000000000000001", 0, -0x8000000000000000LL, ERANGE },
109 { STRTOULL, "0x10000000000000000", 0, 0xffffffffffffffffULL, ERANGE },
  /src/external/gpl3/gdb.old/dist/libiberty/testsuite/
test-strtol.c 92 { STRTOL, "0x80000000", 0, 0x7fffffffL, ERANGE },
93 { STRTOL, "-0x80000001", 0, -0x80000000L, ERANGE },
94 { STRTOUL, "0x100000000", 0, 0xffffffffUL, ERANGE },
107 { STRTOLL, "0x8000000000000000", 0, 0x7fffffffffffffffLL, ERANGE },
108 { STRTOLL, "-0x8000000000000001", 0, -0x8000000000000000LL, ERANGE },
109 { STRTOULL, "0x10000000000000000", 0, 0xffffffffffffffffULL, ERANGE },
  /src/lib/libc/arch/vax/gen/
ldexp.S 39 * errno is set to ERANGE. Note that errno is not modified if
83 movl $ ERANGE,(%r0)
86 movl $ ERANGE,_C_LABEL(errno)
  /src/crypto/external/bsd/heimdal/dist/lib/roken/
strerror_r.c 73 return ERANGE;
79 return ERANGE;
  /src/external/bsd/blocklist/port/
_strtoi.h 83 *rstatus = ERANGE;
88 *rstatus = ERANGE;
  /src/external/gpl2/gettext/dist/gnulib-local/lib/
xgetcwd.c 58 if (errno != ERANGE)
72 if (errno != ERANGE)
  /src/external/gpl2/xcvs/dist/lib/
getlogin_r.c 61 return ERANGE;
  /src/tests/lib/libc/stdlib/
t_strtoi.c 249 atf_tc_set_md_var(tc, "descr", "Test ERANGE from strtoi(3)");
257 INTMAX_MIN, INTMAX_MAX, ERANGE },
259 INTMAX_MIN, INTMAX_MAX, ERANGE },
261 INTMAX_MIN, INTMAX_MAX, ERANGE },
266 -1, 1, ERANGE },
268 11, 20, ERANGE },
272 7, 7, ERANGE },
274 7, 7, ERANGE },
278 7, 7, ERANGE },
304 atf_tc_set_md_var(tc, "descr", "Test ERANGE from strtoi(3)
    [all...]

Completed in 41 milliseconds

1 2 3 4 5 6 7 8 91011>>