/external/curl/tests/libtest/ |
lib1538.c | 34 curl_easy_strerror(INT_MAX); 35 curl_multi_strerror(INT_MAX); 36 curl_share_strerror(INT_MAX); 37 curl_easy_strerror(-INT_MAX); 38 curl_multi_strerror(-INT_MAX); 39 curl_share_strerror(-INT_MAX);
|
/external/toybox/toys/other/ |
readahead.c | 28 if (sizeof(long) == 4) rc = syscall(__NR_readahead, fd, 0, 0, INT_MAX); 29 else rc = syscall(__NR_readahead, fd, 0, INT_MAX);
|
/bionic/libc/upstream-freebsd/lib/libc/gen/ |
sleep.c | 51 * the maximum value for a time_t is >= INT_MAX. 53 if (seconds > INT_MAX) 54 return (seconds - INT_MAX + __sleep(INT_MAX));
|
/device/linaro/bootloader/edk2/CryptoPkg/Library/BaseCryptLib/Pk/ |
CryptPkcs5Pbkdf2.c | 67 if ((PasswordLength == 0) || (PasswordLength > INT_MAX) ||
68 (SaltLength == 0) || (SaltLength > INT_MAX) ||
69 (KeyLength == 0) || (KeyLength > INT_MAX) ||
70 (IterationCount < 1) || (IterationCount > INT_MAX)) {
|
/external/ltp/testcases/kernel/device-drivers/v4l/user_space/ |
video_limits.h | 28 #define SINT_MAX INT_MAX
|
/bionic/libc/kernel/uapi/linux/ |
netfilter_ipv4.h | 43 NF_IP_PRI_CONNTRACK_CONFIRM = INT_MAX, 44 NF_IP_PRI_LAST = INT_MAX,
|
netfilter_ipv6.h | 43 NF_IP6_PRI_LAST = INT_MAX,
|
/external/kernel-headers/original/uapi/linux/ |
netfilter_ipv4.h | 14 #include <limits.h> /* for INT_MIN, INT_MAX */ 44 NF_IP_PRI_CONNTRACK_CONFIRM = INT_MAX, 45 NF_IP_PRI_LAST = INT_MAX,
|
netfilter_ipv6.h | 17 #include <limits.h> /* for INT_MIN, INT_MAX */ 48 NF_IP6_PRI_LAST = INT_MAX,
|
/external/tensorflow/tensorflow/core/platform/ |
protobuf_util.cc | 29 coded_stream.SetTotalBytesLimit(INT_MAX, INT_MAX);
|
/external/grpc-grpc/src/core/lib/surface/ |
init_secure.cc | 70 // Register the auth client with a priority < INT_MAX to allow the authority 73 grpc_channel_init_register_stage(GRPC_CLIENT_SUBCHANNEL, INT_MAX - 1, 75 grpc_channel_init_register_stage(GRPC_CLIENT_DIRECT_CHANNEL, INT_MAX - 1, 77 grpc_channel_init_register_stage(GRPC_SERVER_CHANNEL, INT_MAX,
|
/external/clang/test/Analysis/ |
switch-case.c | 7 #define INT_MAX 0x7fffffff 82 case 10 ... INT_MAX: 112 case 26 ... INT_MAX: 128 case 20 ... INT_MAX: 149 case 20 ... INT_MAX: 168 case 20 ... INT_MAX:
|
/external/clang/test/Headers/ |
limits.cpp | 10 _Static_assert(INT_MAX == -(INT_MIN+1), ""); 15 _Static_assert(INT_MAX == UINT_MAX/2, ""); 20 _Static_assert(INT_MIN == -INT_MAX-1, "");
|
/external/llvm/include/llvm/CodeGen/ |
WinEHFuncInfo.h | 102 int UnwindHelpFrameIdx = INT_MAX; 103 int PSPSymFrameIdx = INT_MAX; 110 int EHRegNodeFrameIndex = INT_MAX; 111 int EHRegNodeEndOffset = INT_MAX; 112 int EHGuardFrameIndex = INT_MAX; 113 int SEHSetFrameOffset = INT_MAX;
|
/external/boringssl/src/crypto/rand_extra/ |
rand_extra.c | 30 } else if (num <= INT_MAX) { 33 return INT_MAX;
|
/external/iproute2/include/uapi/linux/ |
netfilter_ipv4.h | 13 #include <limits.h> /* for INT_MIN, INT_MAX */ 69 NF_IP_PRI_CONNTRACK_CONFIRM = INT_MAX, 70 NF_IP_PRI_LAST = INT_MAX,
|
/external/iptables/include/linux/ |
netfilter_ipv4.h | 64 NF_IP_PRI_CONNTRACK_CONFIRM = INT_MAX, 65 NF_IP_PRI_LAST = INT_MAX,
|
netfilter_bridge.h | 30 NF_BR_PRI_LAST = INT_MAX,
|
/external/ltp/testcases/kernel/mem/ksm/ |
ksm_common.h | 36 if(tst_parse_int(str_size, size, 1, INT_MAX)) 39 if(tst_parse_int(str_num, num, 3, INT_MAX))
|
/external/python/cpython2/RISCOS/ |
sleep.c | 18 if (starttime + 100.0*delay >INT_MAX) 19 endtime = INT_MAX;
|
/frameworks/av/media/libstagefright/codecs/amrwbenc/src/ |
cor_h_x.c | 61 L_tmp = (L_tmp > 0)? L_tmp: (L_tmp == INT_MIN ? INT_MAX : -L_tmp); 74 L_tmp = (L_tmp > 0)? L_tmp: (L_tmp == INT_MIN ? INT_MAX : -L_tmp); 87 L_tmp = (L_tmp > 0)? L_tmp: (L_tmp == INT_MIN ? INT_MAX : -L_tmp); 100 L_tmp = (L_tmp > 0)? L_tmp: (L_tmp == INT_MIN ? INT_MAX : -L_tmp); 107 if (L_max > INT_MAX - L_max1 || 108 L_max + L_max1 > INT_MAX - L_max2 || 109 L_max + L_max1 + L_max2 > INT_MAX - L_max3) { 110 L_max = INT_MAX >> 2;
|
/external/deqp-deps/SPIRV-Tools/source/opt/ |
dead_variable_elimination.h | 49 enum { kMustKeep = INT_MAX };
|
/external/epid-sdk/epid/common/math/src/ |
sha256.c | 32 if (INT_MAX < len) return kEpidBadArgErr;
|
/external/expat/xmlwf/ |
filemap.h | 33 #include <limits.h> /* INT_MAX */ 44 #define XML_MAX_CHUNK_LEN (INT_MAX / 2 + 1)
|
/external/llvm/lib/Fuzzer/test/ |
SignedIntOverflowTest.cpp | 13 static int Large = INT_MAX;
|