HomeSort by relevance Sort by last modified time
    Searched refs:INT_MAX (Results 301 - 325 of 1033) sorted by null

<<11121314151617181920>>

  /external/strace/tests-m32/
xselect.c 371 * Huge sets, nfds equals to INT_MAX.
377 XSELECT(0, INT_MAX, (uintptr_t) set, (uintptr_t) &set[1],
382 TEST_SYSCALL_STR, INT_MAX, fds[0], fds[1]);
389 XSELECT(1, INT_MAX, (uintptr_t) set, (uintptr_t) &set[1],
393 TEST_SYSCALL_STR, INT_MAX, fds[0], fds[1], PATH_TRACING_FD,
  /external/strace/tests-mx32/
xselect.c 371 * Huge sets, nfds equals to INT_MAX.
377 XSELECT(0, INT_MAX, (uintptr_t) set, (uintptr_t) &set[1],
382 TEST_SYSCALL_STR, INT_MAX, fds[0], fds[1]);
389 XSELECT(1, INT_MAX, (uintptr_t) set, (uintptr_t) &set[1],
393 TEST_SYSCALL_STR, INT_MAX, fds[0], fds[1], PATH_TRACING_FD,
  /external/tensorflow/tensorflow/core/kernels/
decode_compressed_op.cc 110 Status s = zlib_stream->ReadNBytes(INT_MAX, &output_string);
  /external/v8/src/inspector/
v8-regex.cc 47 if (string.length() > INT_MAX) return -1;
  /external/webrtc/webrtc/tools/psnr_ssim_analyzer/
psnr_ssim_analyzer.cc 22 #define MAX_NUM_FRAMES_PER_FILE INT_MAX
  /external/python/cpython3/Python/
getargs.c 666 if (INT_MAX < s) { \
764 else if (ival > INT_MAX) {
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/_io/
fileio.c 480 if (len > INT_MAX)
481 len = INT_MAX;
559 if (n > INT_MAX)
560 n = INT_MAX;
623 if (size > INT_MAX)
624 size = INT_MAX;
678 if (len > INT_MAX)
679 len = INT_MAX;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/PyMod-2.7.10/Python/
random.c 91 chunk = size > INT_MAX ? INT_MAX : size;
  /device/linaro/bootloader/edk2/CryptoPkg/Library/BaseCryptLib/Pk/
CryptX509.c 47 if (Cert == NULL || SingleX509Cert == NULL || CertSize > INT_MAX) {
539 (TBSCertSize == NULL) || (CertSize > INT_MAX)) {
  /device/linaro/bootloader/edk2/StdLib/Include/Lua/
luaconf.h 318 #if INT_MAX-20 < 32760 /* { */
320 #elif INT_MAX > 2147483640L /* }{ */
  /external/boringssl/src/crypto/bio/
bio_mem.c 144 if (b->length < INT_MAX && ret > (int)b->length) {
179 if (INT_MAX - blen < inl) {
  /external/boringssl/src/ssl/test/
packeted_bio.cc 60 int chunk_len = INT_MAX;
61 if (len <= INT_MAX) {
  /external/curl/lib/
parsedate.c 413 #if LONG_MAX != INT_MAX
414 if((lval > (long)INT_MAX) || (lval < (long)INT_MIN))
  /external/curl/tests/libtest/
libntlmconnect.c 197 int itimeout = (timeout > (long)INT_MAX) ? INT_MAX : (int)timeout;
  /external/libese/libese-hw/nxp/pn80t/
linux_spidev.c 192 if (len > INT_MAX) {
221 if (len > INT_MAX) {
  /external/libevent/
poll.c 165 if (msec < 0 || msec > INT_MAX)
166 msec = INT_MAX;
  /external/libpcap/testprogs/
capturetest.c 112 if (longarg > INT_MAX) {
114 longarg, INT_MAX);
  /external/libpng/
pngconf.h 486 #if INT_MIN == -32768 && INT_MAX == 32767
502 #if INT_MIN < -2147483646 && INT_MAX > 2147483646
  /external/lua/src/
luaconf.h 90 #if ((INT_MAX >> 15) >> 15) >= 1
547 #define LUA_MAXINTEGER INT_MAX
  /external/mesa3d/src/gallium/state_trackers/va/
picture_h264.c 141 h264->ReferenceFrames[i].TopFieldOrderCnt: INT_MAX;
144 h264->ReferenceFrames[i].BottomFieldOrderCnt: INT_MAX;
  /external/mesa3d/src/mesa/main/
drawpix.c 150 1, format, type, INT_MAX, pixels)) {
334 INT_MAX, (const GLvoid *) bitmap)) {
  /external/pdfium/third_party/libpng16/
pngconf.h 486 #if INT_MIN == -32768 && INT_MAX == 32767
502 #if INT_MIN < -2147483646 && INT_MAX > 2147483646
  /external/python/cpython2/Modules/_io/
fileio.c 519 if (len > INT_MAX)
520 len = INT_MAX;
608 if (n > INT_MAX)
609 n = INT_MAX;
672 if (size > INT_MAX)
673 size = INT_MAX;
727 if (len > INT_MAX)
728 len = INT_MAX;
  /external/python/cpython2/Python/
random.c 82 chunk = size > INT_MAX ? INT_MAX : size;
  /external/python/cpython3/Lib/test/
test_tcl.py 16 from _testcapi import INT_MAX, PY_SSIZE_T_MAX
18 INT_MAX = PY_SSIZE_T_MAX = sys.maxsize
698 @unittest.skipUnless(INT_MAX < PY_SSIZE_T_MAX, "needs UINT_MAX < SIZE_MAX")
699 @support.bigmemtest(size=INT_MAX + 1, memuse=5, dry_run=False)
705 @unittest.skipUnless(INT_MAX < PY_SSIZE_T_MAX, "needs UINT_MAX < SIZE_MAX")
706 @support.bigmemtest(size=INT_MAX + 1, memuse=2, dry_run=False)
731 @unittest.skipUnless(INT_MAX < PY_SSIZE_T_MAX, "needs UINT_MAX < SIZE_MAX")
732 @support.bigmemtest(size=INT_MAX + 1, memuse=6, dry_run=False)

Completed in 2044 milliseconds

<<11121314151617181920>>