Searched refs:INT_MAX (Results 1 - 25 of 339) sorted by relevance

1234567891011>>

/external/toybox/toys/other/
H A Dreadahead.c28 if (sizeof(long) == 4) rc = syscall(__NR_readahead, fd, 0, 0, INT_MAX);
29 else rc = syscall(__NR_readahead, fd, 0, INT_MAX);
/external/bison/lib/
H A Dsprintf.c48 than INT_MAX (if that fits into a 'size_t' at all).
52 Therefore set lenbuf = min (SIZE_MAX, INT_MAX, - (uintptr_t) str - 1). */
53 lenbuf = (SIZE_MAX < INT_MAX ? SIZE_MAX : INT_MAX);
73 if (len > INT_MAX)
H A Dvsprintf.c47 than INT_MAX (if that fits into a 'size_t' at all).
51 Therefore set lenbuf = min (SIZE_MAX, INT_MAX, - (uintptr_t) str - 1). */
52 lenbuf = (SIZE_MAX < INT_MAX ? SIZE_MAX : INT_MAX);
70 if (len > INT_MAX)
H A Dc-strcasecmp.c49 if (UCHAR_MAX <= INT_MAX)
H A Dc-strncasecmp.c49 if (UCHAR_MAX <= INT_MAX)
/external/clang/test/Headers/
H A Dlimits.cpp10 _Static_assert(INT_MAX == -(INT_MIN+1), "");
15 _Static_assert(INT_MAX == UINT_MAX/2, "");
20 _Static_assert(INT_MIN == -INT_MAX-1, "");
/external/iproute2/include/linux/
H A Dnetfilter_ipv4.h12 #include <limits.h> /* for INT_MIN, INT_MAX */
67 NF_IP_PRI_CONNTRACK_CONFIRM = INT_MAX,
68 NF_IP_PRI_LAST = INT_MAX,
/external/iptables/include/linux/
H A Dnetfilter_ipv4.h64 NF_IP_PRI_CONNTRACK_CONFIRM = INT_MAX,
65 NF_IP_PRI_LAST = INT_MAX,
H A Dnetfilter_ipv6.h69 NF_IP6_PRI_LAST = INT_MAX,
/external/openssh/openbsd-compat/
H A Dfake-rfc2553.h124 # define EAI_NODATA (INT_MAX - 1)
127 # define EAI_MEMORY (INT_MAX - 2)
130 # define EAI_NONAME (INT_MAX - 3)
133 # define EAI_SYSTEM (INT_MAX - 4)
136 # define EAI_FAMILY (INT_MAX - 5)
/external/kernel-headers/original/uapi/linux/
H A Dnetfilter_ipv4.h13 #include <limits.h> /* for INT_MIN, INT_MAX */
70 NF_IP_PRI_CONNTRACK_CONFIRM = INT_MAX,
71 NF_IP_PRI_LAST = INT_MAX,
H A Dnetfilter_ipv6.h16 #include <limits.h> /* for INT_MIN, INT_MAX */
75 NF_IP6_PRI_LAST = INT_MAX,
/external/libcxx/test/std/depr/depr.c.headers/
H A Dlimits_h.pass.cpp58 #ifndef INT_MAX
59 #error INT_MAX not defined
/external/libcxx/test/std/language.support/support.limits/c.limits/
H A Dclimits.pass.cpp58 #ifndef INT_MAX
59 #error INT_MAX not defined
/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_rd.c160 const int thresh_max = INT_MAX / t;
167 : INT_MAX;
173 : INT_MAX;
371 int best_sad = INT_MAX;
372 int this_sad = INT_MAX;
511 rd->thresh_mult[THR_NEWMV ] = INT_MAX;
512 rd->thresh_mult[THR_NEARESTMV] = INT_MAX;
513 rd->thresh_mult[THR_ZEROMV ] = INT_MAX;
514 rd->thresh_mult[THR_NEARMV ] = INT_MAX;
517 rd->thresh_mult[THR_NEARESTG ] = INT_MAX;
[all...]
/external/valgrind/none/tests/s390x/
H A Dlpr.c81 t32(INT_MAX); t32(INT_MIN); t32(UINT_MAX);
85 t64(INT_MAX); t64(INT_MIN); t64(UINT_MAX);
90 t3264(INT_MAX); t3264(INT_MIN); t3264(UINT_MAX);
/external/clang/test/Analysis/
H A Dadditive-folding.cpp6 #define INT_MAX (UINT_MAX & (UINT_MAX >> 1)) macro
7 #define INT_MIN (-INT_MAX - 1)
145 int max = INT_MAX;
153 int max = INT_MAX;
162 int max = INT_MAX;
171 int max = INT_MAX;
H A Dadditive-folding-range-constraints.c6 #define INT_MAX (UINT_MAX & (UINT_MAX >> 1)) macro
7 #define INT_MIN (-INT_MAX - 1)
165 int max = INT_MAX;
190 int max = INT_MAX;
197 int max = INT_MAX;
260 unsigned max = INT_MAX;
267 unsigned max = INT_MAX;
288 unsigned max = INT_MAX;
294 clang_analyzer_eval(a == INT_MAX); // expected-warning{{UNKNOWN}}
/external/google-breakpad/src/testing/src/
H A Dgmock-cardinalities.cc112 } else if (max_ == INT_MAX) {
119 } else if (max_ == INT_MAX) {
122 // 0 < min_ < max_ < INT_MAX
140 GTEST_API_ Cardinality AtLeast(int n) { return Between(n, INT_MAX); }
/external/elfutils/src/libdw/
H A Ddwarf_decl_line.c60 if (line > INT_MAX)
/external/bison/src/
H A Dlocation.c32 INT_MAX) to COLUMN; otherwise, add mbsnwidth (BUF, BUFSIZE, 0) to
34 return INT_MAX. Assume COLUMN is nonnegative. */
40 unsigned int remaining_columns = INT_MAX - column;
44 if (INT_MAX / 2 <= bufsize)
45 return INT_MAX;
51 return width <= remaining_columns ? column + width : INT_MAX;
72 line += line < INT_MAX;
92 if (line == INT_MAX && loc->start.line != INT_MAX)
94 if (column == INT_MAX
[all...]
/external/google-breakpad/src/processor/
H A Drange_map_unittest.cc372 { INT_MAX - 9, 11, 3, false }, // tests anti-overflow
373 { INT_MAX - 9, 10, 4, true }, // highest possible range
418 { INT_MIN, INT_MAX, 50, true }, // From INT_MIN to -2, inclusive
420 { 1, INT_MAX, 52, true }, // From 1 to INT_MAX, inclusive
421 { INT_MIN, INT_MAX, 53, false }, // Can't fill the space twice
423 { 1, INT_MAX, 55, false },
434 { INT_MAX, 0, 102, false }, // makes RetrieveRange check high end
441 { INT_MAX - 1, 1, 111, true },
443 { INT_MAX,
[all...]
H A Dstatic_range_map_unittest.cc81 { INT_MAX - 9, 11, 3, false }, // tests anti-overflow
82 { INT_MAX - 9, 10, 4, true }, // highest possible range
127 { INT_MIN, INT_MAX, 50, true }, // From INT_MIN to -2, inclusive
129 { 1, INT_MAX, 52, true }, // From 1 to INT_MAX, inclusive
130 { INT_MIN, INT_MAX, 53, false }, // Can't fill the space twice
132 { 1, INT_MAX, 55, false },
143 { INT_MAX, 0, 102, false }, // makes RetrieveRange check high end
150 { INT_MAX - 1, 1, 111, true },
152 { INT_MAX,
[all...]
/external/clang/lib/Headers/
H A Dlimits.h49 #undef INT_MAX macro
62 #define INT_MAX __INT_MAX__ macro
/external/libpng/contrib/arm-neon/
H A Dlinux-auxv.c49 /* Passing nread > INT_MAX to read is implementation defined in POSIX
51 * limit the value to INT_MAX!
53 if (nbytes > INT_MAX)
54 nread = INT_MAX;

Completed in 1705 milliseconds

1234567891011>>