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

1 2 3 45 6 7 8 91011>>

  /device/linaro/bootloader/edk2/AppPkg/Applications/Sockets/SetSockOpt/
SetSockOpt.c 121 errno = ( 4 > LengthInBytes ) ? EBUFSIZE : ERANGE;
137 errno = ( 4 > LengthInBytes ) ? EBUFSIZE : ERANGE;
155 errno = ( 4 > LengthInBytes ) ? EBUFSIZE : ERANGE;
  /external/google-benchmark/src/
string_util.cc 193 if (strtoulErrno == ERANGE) {
220 if (strtolErrno == ERANGE || long(int(result)) != result) {
247 if (strtodErrno == ERANGE) {
  /external/libcxx/utils/google-benchmark/src/
string_util.cc 193 if (strtoulErrno == ERANGE) {
220 if (strtolErrno == ERANGE || long(int(result)) != result) {
247 if (strtodErrno == ERANGE) {
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/PyMod-2.7.2/Include/
pyport.h 464 * overflowed or not-a-number, set errno to ERANGE or EDOM. Set errno
480 errno = ERANGE; \
496 * errno=ERANGE due to underflow, clear errno. (B) If it looks like the
497 * platform libm overflowed but didn't set errno, force errno to ERANGE. In
508 errno = ERANGE; \
510 else if (errno == ERANGE && (X) == 0.0) \
519 errno = ERANGE; \
521 else if (errno == ERANGE) \
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
pyport.h 463 * overflowed or not-a-number, set errno to ERANGE or EDOM. Set errno
479 errno = ERANGE; \
495 * errno=ERANGE due to underflow, clear errno. (B) If it looks like the
496 * platform libm overflowed but didn't set errno, force errno to ERANGE. In
507 errno = ERANGE; \
509 else if (errno == ERANGE && (X) == 0.0) \
518 errno = ERANGE; \
520 else if (errno == ERANGE) \
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/PyMod-2.7.10/Include/
pyport.h 479 * overflowed or not-a-number, set errno to ERANGE or EDOM. Set errno
495 errno = ERANGE; \
511 * errno=ERANGE due to underflow, clear errno. (B) If it looks like the
512 * platform libm overflowed but didn't set errno, force errno to ERANGE. In
523 errno = ERANGE; \
525 else if (errno == ERANGE && (X) == 0.0) \
534 errno = ERANGE; \
536 else if (errno == ERANGE) \
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
pyport.h 464 * overflowed or not-a-number, set errno to ERANGE or EDOM. Set errno
480 errno = ERANGE; \
496 * errno=ERANGE due to underflow, clear errno. (B) If it looks like the
497 * platform libm overflowed but didn't set errno, force errno to ERANGE. In
508 errno = ERANGE; \
510 else if (errno == ERANGE && (X) == 0.0) \
519 errno = ERANGE; \
521 else if (errno == ERANGE) \
  /external/python/cpython2/Include/
pyport.h 463 * overflowed or not-a-number, set errno to ERANGE or EDOM. Set errno
479 errno = ERANGE; \
495 * errno=ERANGE due to underflow, clear errno. (B) If it looks like the
496 * platform libm overflowed but didn't set errno, force errno to ERANGE. In
507 errno = ERANGE; \
509 else if (errno == ERANGE && (X) == 0.0) \
518 errno = ERANGE; \
520 else if (errno == ERANGE) \
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
mathmodule.c 264 errno = ERANGE;
276 errno = ERANGE;
321 errno = ERANGE;
374 errno = ERANGE;
624 else if (errno == ERANGE) {
625 /* ANSI C generally requires libm functions to set ERANGE
627 * ERANGE on underflow too. There's no consistency about
636 * set to ERANGE for subnormal results that do *not* underflow
637 * to zero. So to be safe, we'll ignore ERANGE whenever the
666 - if the result is finite and nonzero and errno == ERANGE then
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
mathmodule.c 264 errno = ERANGE;
276 errno = ERANGE;
321 errno = ERANGE;
374 errno = ERANGE;
624 else if (errno == ERANGE) {
625 /* ANSI C generally requires libm functions to set ERANGE
627 * ERANGE on underflow too. There's no consistency about
636 * set to ERANGE for subnormal results that do *not* underflow
637 * to zero. So to be safe, we'll ignore ERANGE whenever the
666 - if the result is finite and nonzero and errno == ERANGE then
    [all...]
  /external/iproute2/lib/
utils.c 74 * In both cases, errno is set to ERANGE.
76 if ((res == LONG_MAX || res == LONG_MIN) && errno == ERANGE)
137 if (res == ULONG_MAX && errno == ERANGE)
171 if ((t == HUGE_VALF || t == HUGE_VALL) && errno == ERANGE)
181 if (res == ULONG_MAX && errno == ERANGE)
229 if (res == ULLONG_MAX && errno == ERANGE)
254 if (res == ULONG_MAX && errno == ERANGE)
279 if (res == ULONG_MAX && errno == ERANGE)
303 if (res == ULONG_MAX && errno == ERANGE)
325 if ((res == LONG_MIN || res == LONG_MAX) && errno == ERANGE)
    [all...]
  /external/python/cpython2/Modules/
mathmodule.c 264 errno = ERANGE;
276 errno = ERANGE;
321 errno = ERANGE;
374 errno = ERANGE;
623 else if (errno == ERANGE) {
624 /* ANSI C generally requires libm functions to set ERANGE
626 * ERANGE on underflow too. There's no consistency about
635 * set to ERANGE for subnormal results that do *not* underflow
636 * to zero. So to be safe, we'll ignore ERANGE whenever the
665 - if the result is finite and nonzero and errno == ERANGE the
    [all...]
  /bionic/libc/upstream-openbsd/lib/libc/gdtoa/
gethex.c 268 errno = ERANGE;
294 errno = ERANGE;
303 errno = ERANGE;
  /external/curl/src/
tool_paramhlp.c 170 if(errno == ERANGE)
219 if(errno == ERANGE)
415 if((*val == LONG_MIN || *val == LONG_MAX) && errno == ERANGE)
  /device/linaro/bootloader/edk2/StdLib/Include/
errno.h 88 #define ERANGE __ERANGE /* 34 Result too large */
  /external/ltp/testcases/kernel/syscalls/fgetxattr/
fgetxattr01.c 15 * - fgetxattr(2) should return -1 and set errno to ERANGE
67 .exp_err = ERANGE,
  /external/ltp/testcases/kernel/syscalls/getxattr/
getxattr01.c 33 * getxattr(2) should return -1 and set errno to ERANGE
86 .exp_err = ERANGE,
  /external/ltp/testcases/kernel/syscalls/ipc/semop/
semop02.c 22 * semop02 - test for E2BIG, EACCES, EFAULT, EINVAL and ERANGE errors
63 {&sem_id_1, (struct sembuf *)&s_buf, 1, ERANGE}
131 /* for ERANGE errno test */
  /external/python/cpython2/Lib/plat-irix6/
ERRNO.py 46 ERANGE = 34
  /external/syzkaller/vendor/golang.org/x/sys/unix/
timestruct.go 30 // Timespec, it returns a zero Timespec and ERANGE.
40 return Timespec{}, ERANGE
  /external/tensorflow/tensorflow/core/platform/posix/
error.cc 104 case ERANGE: // Result too large
  /bionic/tests/
stdlib_test.cpp 619 ASSERT_EQ(ERANGE, ptsname_r(fd, buf, sizeof(buf)));
620 ASSERT_EQ(ERANGE, errno);
670 ASSERT_EQ(ERANGE, ttyname_r(fd, buf, sizeof(buf)));
671 ASSERT_EQ(ERANGE, errno);
765 ASSERT_EQ(ERANGE, errno);
781 ASSERT_EQ(ERANGE, errno);
790 ASSERT_EQ(ERANGE, errno);
797 ASSERT_EQ(ERANGE, errno);
  /external/libcxx/test/std/diagnostics/errno/
cerrno.pass.cpp 301 #ifndef ERANGE
302 #error ERANGE not defined
  /external/squashfs-tools/squashfs-tools/
sort.c 285 if((res < 1 || errno) && errno != ERANGE) {
292 /* Some other failure not ERANGE */
297 } else if((errno == ERANGE) ||
  /external/strace/tests/
errno2name.c 393 #ifdef ERANGE
394 CASE(ERANGE);

Completed in 565 milliseconds

1 2 3 45 6 7 8 91011>>