HomeSort by relevance Sort by last modified time
    Searched refs:ERANGE (Results 1 - 25 of 302) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/libcxx/test/std/depr/depr.c.headers/
errno_h.pass.cpp 23 #ifndef ERANGE
24 #error ERANGE not defined
  /external/openssh/openbsd-compat/
strtonum.c 46 { "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)
  /external/selinux/libsepol/include/sepol/
errcodes.h 25 #define SEPOL_ERANGE -ERANGE
  /external/python/cpython3/Modules/_decimal/libmpdec/
io.h 48 errno = ERANGE;
50 if (errno == ERANGE) {
  /device/google/contexthub/firmware/lib/libm/
wf_exp.c 65 errno = ERANGE;
67 errno = ERANGE;
80 errno = ERANGE;
82 errno = ERANGE;
  /device/linaro/bootloader/edk2/StdLib/LibC/Math/
s_ldexp.c 27 if(!finite(value)||value==0.0) errno = ERANGE;
  /external/arm-optimized-routines/math/
math_err.c 29 return with_errno (y, ERANGE);
58 return with_errno (y, ERANGE);
73 return y == 0.0 ? with_errno (y, ERANGE) : y;
79 return isinf (y) ? with_errno (y, ERANGE) : y;
math_errf.c 29 return with_errnof (y, ERANGE);
58 return with_errnof (y, ERANGE);
  /external/fdlibm/
s_ldexp.c 26 if(!ieee_finite(value)||value==0.0) errno = ERANGE;
k_standard.c 151 errno = ERANGE;
153 errno = ERANGE;
165 errno = ERANGE;
167 errno = ERANGE;
179 errno = ERANGE;
181 errno = ERANGE;
190 errno = ERANGE;
192 errno = ERANGE;
306 errno = ERANGE;
308 errno = ERANGE;
    [all...]
w_scalb.c 52 if(!ieee_finite(fn)) errno = ERANGE;
  /external/swiftshader/third_party/LLVM/include/llvm/Support/
FEnv.h 44 if (errno_val == ERANGE || errno_val == EDOM)
  /external/arm-optimized-routines/math/single/
math_private.h 113 #define MATHERR_POWF_0NEG(x,y) (__set_errno(ERANGE), FLOAT_DIVZERO)
115 #define MATHERR_POWF_0NEGODD(x,y) (__set_errno(ERANGE), -FLOAT_DIVZERO)
116 #define MATHERR_POWF_0NEGEVEN(x,y) (__set_errno(ERANGE), FLOAT_DIVZERO)
119 #define MATHERR_POWF_OFL(x,y,z) (__set_errno(ERANGE), copysignf(FLOAT_OVERFLOW,z))
120 #define MATHERR_POWF_UFL(x,y,z) (__set_errno(ERANGE), copysignf(FLOAT_UNDERFLOW,z))
122 #define MATHERR_LOGF_0(x) (__set_errno(ERANGE), -FLOAT_DIVZERO)
132 #define MATHERR_EXPF_UFL(x) (__set_errno(ERANGE), FLOAT_UNDERFLOW)
133 #define MATHERR_EXPF_OFL(x) (__set_errno(ERANGE), FLOAT_OVERFLOW)
  /external/ltp/testcases/kernel/syscalls/getcwd/
getcwd01.c 31 * 4) getcwd(2) should return NULL and set errno to ERANGE.
32 * 5) getcwd(2) should return NULL and set errno to ERANGE.
51 {buffer, 1, ERANGE},
52 {NULL, 1, ERANGE}
  /bionic/libc/kernel/uapi/asm-generic/
errno-base.h 54 #define ERANGE 34
  /external/kernel-headers/original/uapi/asm-generic/
errno-base.h 38 #define ERANGE 34 /* Math result not representable */
  /external/strace/
string_to_uint.c 53 || (val == LLONG_MAX && errno == ERANGE))
  /bionic/libc/bionic/
pthread_setname_np.cpp 55 if (buf_size < MAX_TASK_COMM_LEN) return ERANGE;
78 if (n == static_cast<ssize_t>(buf_size)) return ERANGE;
87 if (thread_name_len >= MAX_TASK_COMM_LEN) return ERANGE;
  /bionic/tests/
libgen_test.cpp 70 TestBasename("", ".", -1, buf, 0, ERANGE);
71 TestBasename("", ".", -1, buf, 1, ERANGE);
89 TestDirname("", ".", -1, buf, 0, ERANGE);
90 TestDirname("", ".", -1, buf, 1, ERANGE);
getcwd_test.cpp 46 // If we ask the library to allocate a too-small buffer, ERANGE.
50 ASSERT_EQ(ERANGE, errno);
55 // If we ask the library to allocate an unreasonably large buffer, ERANGE.
63 // If we allocate a too-small buffer, ERANGE.
68 ASSERT_EQ(ERANGE, errno);
  /external/tensorflow/tensorflow/stream_executor/lib/
process_state.cc 46 } else if (errno == ERANGE) {
  /external/u-boot/fs/yaffs2/
yaffs_error.c 31 { ERANGE , "ERANGE"},
  /external/wayland/tests/
exec-fd-leak-checker.c 41 if ((errno == ERANGE && (v == LONG_MAX || v == LONG_MIN)) ||
  /bionic/libc/include/android/
legacy_stdlib_inlines.h 61 errno = ERANGE;
64 errno = ERANGE;
  /bionic/libc/upstream-openbsd/lib/libc/locale/
_wcstol.h 114 errno = ERANGE;
124 errno = ERANGE;

Completed in 652 milliseconds

1 2 3 4 5 6 7 8 91011>>