Searched refs:INT_MAX (Results 51 - 75 of 339) sorted by relevance

1234567891011>>

/external/freetype/include/config/
H A Dftstdlib.h64 #define FT_INT_MAX INT_MAX
/external/google-breakpad/src/testing/include/gmock/
H A Dgmock-cardinalities.h66 virtual int ConservativeUpperBound() const { return INT_MAX; }
/external/jemalloc/include/jemalloc/
H A Djemalloc_macros.h19 ((a < (size_t)INT_MAX) ? ffs(a)-1 : ffs(a>>32)+31)
/external/libcxx/test/std/language.support/support.limits/limits/numeric.limits.members/
H A Dmax.pass.cpp47 test<int>(INT_MAX);
/external/libvncserver/libvncserver/
H A Dfont.c139 #ifndef INT_MAX
140 #define INT_MAX 0x7fffffff macro
149 (*x1)=(*y1)=INT_MAX; (*x2)=(*y2)=1-(INT_MAX);
/external/linux-tools-perf/src/tools/perf/util/
H A Dthread_map.c164 pid_t pid, prev_pid = INT_MAX;
175 if (pid == INT_MIN || pid == INT_MAX ||
222 pid_t tid, prev_tid = INT_MAX;
244 if (tid == INT_MIN || tid == INT_MAX ||
/external/llvm/include/llvm/Analysis/
H A DInlineCost.h54 NeverInlineCost = INT_MAX
/external/openfst/src/bin/
H A Dfstequivalent.cc29 DEFINE_int32(max_length, INT_MAX, "Maximum path length");
H A Dfstrandgen.cc24 DEFINE_int32(max_length, INT_MAX, "Maximum path length");
/external/openssh/openbsd-compat/
H A Dbsd-asprintf.c57 } else if (ret == INT_MAX || ret < 0) { /* Bad length */
H A Dbsd-closefrom.c84 fd >= 0 && fd < INT_MAX && fd >= lowfd && fd != dirfd(dirp))
/external/pdfium/third_party/freetype/include/config/
H A Dftstdlib.h64 #define FT_INT_MAX INT_MAX
/external/sfntly/cpp/src/sfntly/data/
H A Dfont_data.h122 static const int32_t GROWABLE_SIZE = INT_MAX;
H A Dgrowable_memory_byte_array.cc27 : ByteArray(0, INT_MAX, true) {
/external/toybox/toys/posix/
H A Dcut.c73 int start = 0, end = INT_MAX;
80 start = atolx_range(dtoken, 0, INT_MAX);
87 end = atolx_range(ctoken, 0, INT_MAX);
88 if (!end) end = INT_MAX;
/external/libxml2/
H A Dbuf.c60 if (buf->size < INT_MAX) buf->compat_size = buf->size; \
61 else buf->compat_size = INT_MAX; \
62 if (buf->use < INT_MAX) buf->compat_use = buf->use; \
63 else buf->compat_use = INT_MAX;
72 if (buf->compat_size < INT_MAX) \
75 if (buf->compat_use < INT_MAX) \
241 if (size < INT_MAX) {
245 ret->compat_use = INT_MAX;
246 ret->compat_size = INT_MAX;
1157 * than what an xmlBuffer can support on 64 bits (INT_MAX)
[all...]
/external/libvpx/libvpx/vp8/encoder/
H A Drdopt.c284 if (cpi->sf.thresh_mult[i] < INT_MAX)
290 x->rd_threshes[i] = INT_MAX;
302 if (cpi->sf.thresh_mult[i] < (INT_MAX / q))
308 x->rd_threshes[i] = INT_MAX;
642 int best_rd = INT_MAX;
759 return INT_MAX;
778 int best_rd = INT_MAX;
876 int best_rd = INT_MAX;
1155 int best_label_rd = INT_MAX;
1183 int bestsme = INT_MAX;
[all...]
/external/boringssl/src/ssl/test/
H A Dpacketed_bio.cc37 int chunk_len = INT_MAX;
38 if (len <= INT_MAX) {
/external/google-breakpad/src/processor/
H A Daddress_map_unittest.cc86 ASSERT_FALSE(test_map.Retrieve(INT_MAX, &entry, &address));
100 ASSERT_FALSE(test_map.Retrieve(INT_MAX, &entry, &address));
/external/openssh/
H A Dssh-ed25519.c53 datalen >= INT_MAX - crypto_sign_ed25519_BYTES)
110 datalen >= INT_MAX - crypto_sign_ed25519_BYTES)
/external/protobuf/src/google/protobuf/io/
H A Dcoded_stream.cc125 byte_limit <= INT_MAX - current_position) {
129 current_limit_ = INT_MAX;
153 if (current_limit_ == INT_MAX) return -1;
175 if (total_bytes_limit_ == INT_MAX) return -1;
260 if (closest_limit != INT_MAX) {
556 if (total_bytes_read_ <= INT_MAX - buffer_size) {
559 // Overflow. Reset buffer_end_ to not include the bytes beyond INT_MAX.
566 // overflow_bytes_ = total_bytes_read_ + buffer_size - INT_MAX;
569 overflow_bytes_ = total_bytes_read_ - (INT_MAX - buffer_size);
571 total_bytes_read_ = INT_MAX;
[all...]
/external/toybox/toys/other/
H A Dvmstat.c84 if (toys.optc) loop_delay = atolx_range(toys.optargs[0], 0, INT_MAX);
85 if (toys.optc > 1) loop_max = atolx_range(toys.optargs[1], 1, INT_MAX) - 1;
/external/v8/src/
H A Dconversions.h45 // clamped to [INT_MIN, INT_MAX] and then rounded to an integer.
48 if (x > INT_MAX) return INT_MAX;
/external/valgrind/none/tests/s390x/
H A Dfpconv.c33 I2F(insn, INT_MAX, target_type); \
46 I2F(insn, INT_MAX, target_type); \
/external/dhcpcd/
H A Deloop.c308 if (tv.tv_sec > INT_MAX / 1000 ||
309 (tv.tv_sec == INT_MAX / 1000 &&
310 (tv.tv_usec + 999) / 1000 > INT_MAX % 1000))
311 msecs = INT_MAX;

Completed in 703 milliseconds

1234567891011>>