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

1 2 3 4 5 6 7 891011>>

  /external/curl/tests/libtest/
lib540.c 144 int itimeout = (L > (long)INT_MAX) ? INT_MAX : (int)L;
  /external/google-breakpad/src/processor/
address_map_unittest.cc 86 ASSERT_FALSE(test_map.Retrieve(INT_MAX, &entry, &address));
100 ASSERT_FALSE(test_map.Retrieve(INT_MAX, &entry, &address));
  /external/libcxx/test/std/containers/sequences/vector/vector.cons/
deduct.pass.cpp 25 #include <climits> // INT_MAX
46 const long arr[] = {INT_MAX, 1L, 2L, 3L };
50 assert(vec[0] == INT_MAX);
  /external/libese/libese-hw/nxp/pn80t/
nq_nci.c 123 if (len > INT_MAX) {
156 if (len > INT_MAX) {
  /external/libvpx/libvpx/vp9/encoder/
vp9_mcomp.c 181 if (tmpmse >= INT_MAX) { \
182 v = INT_MAX; \
191 v = INT_MAX; \
214 v = INT_MAX; \
422 if (cost_list && cost_list[0] != INT_MAX && cost_list[1] != INT_MAX &&
423 cost_list[2] != INT_MAX && cost_list[3] != INT_MAX &&
424 cost_list[4] != INT_MAX && is_cost_list_wellbehaved(cost_list)) {
426 unsigned int minpt = INT_MAX;
    [all...]
  /external/linux-kselftest/tools/testing/selftests/proc/
fd-001-lookup.c 87 for (u = INT_MAX - 1024; u <= (unsigned int)INT_MAX + 1024; u++) {
fd-003-kthread.c 145 for (u = INT_MAX - 1024; u < (unsigned int)INT_MAX + 1024; u++) {
  /external/openssh/
ssh-ed25519.c 53 datalen >= INT_MAX - crypto_sign_ed25519_BYTES)
110 datalen >= INT_MAX - crypto_sign_ed25519_BYTES ||
  /external/protobuf/src/google/protobuf/io/
coded_stream.cc 128 byte_limit <= INT_MAX - current_position) {
132 current_limit_ = INT_MAX;
180 if (current_limit_ == INT_MAX) return -1;
202 if (total_bytes_limit_ == INT_MAX) return -1;
274 if (closest_limit != INT_MAX) {
588 if (total_bytes_read_ <= INT_MAX - buffer_size) {
591 // Overflow. Reset buffer_end_ to not include the bytes beyond INT_MAX.
598 // overflow_bytes_ = total_bytes_read_ + buffer_size - INT_MAX;
601 overflow_bytes_ = total_bytes_read_ - (INT_MAX - buffer_size);
603 total_bytes_read_ = INT_MAX;
    [all...]
  /external/python/cpython2/Lib/plat-atheos/
IN.py 111 INT_MAX = 2147483647
147 SSIZE_MAX = INT_MAX
188 NL_MSGMAX = INT_MAX
189 NL_NMAX = INT_MAX
190 NL_SETMAX = INT_MAX
191 NL_TEXTMAX = INT_MAX
206 INT_MIN = (-INT_MAX - 1)
207 INT_MAX = 2147483647
  /external/python/cpython3/Include/
fileutils.h 65 On macOS 10.13, read() and write() with more than INT_MAX bytes
67 # define _PY_READ_MAX INT_MAX
68 # define _PY_WRITE_MAX INT_MAX
  /external/python/cpython3/Modules/_multiprocessing/
multiprocessing.c 107 length = (int)Py_MIN(buf.len, INT_MAX);
179 py_sem_value_max = PyLong_FromLong(INT_MAX);
  /external/skia/src/sksl/lex/
NFAtoDFA.h 105 int bestAccept = INT_MAX;
120 if (bestAccept != INT_MAX) {
  /external/skqp/src/sksl/lex/
NFAtoDFA.h 105 int bestAccept = INT_MAX;
120 if (bestAccept != INT_MAX) {
  /external/strace/tests/
group_req.c 145 set_opt(0, opts[i].level, opts[i].name, opts[i].val, INT_MAX);
150 INT_MAX, errstr);
ip_mreq.c 148 opts[i].val, INT_MAX);
151 opts[i].addr, INT_MAX, sprintrc(rc));
  /external/strace/tests-m32/
group_req.c 145 set_opt(0, opts[i].level, opts[i].name, opts[i].val, INT_MAX);
150 INT_MAX, errstr);
ip_mreq.c 148 opts[i].val, INT_MAX);
151 opts[i].addr, INT_MAX, sprintrc(rc));
  /external/strace/tests-mx32/
group_req.c 145 set_opt(0, opts[i].level, opts[i].name, opts[i].val, INT_MAX);
150 INT_MAX, errstr);
ip_mreq.c 148 opts[i].val, INT_MAX);
151 opts[i].addr, INT_MAX, sprintrc(rc));
  /external/toybox/toys/other/
vmstat.c 84 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);
  /external/webrtc/talk/media/base/
videoadapter.cc 30 #include <limits.h> // For INT_MAX
96 float best_distance = static_cast<float>(INT_MAX);
169 : output_num_pixels_(INT_MAX),
372 view_desired_num_pixels_(INT_MAX),
374 encoder_desired_num_pixels_(INT_MAX),
375 cpu_desired_num_pixels_(INT_MAX),
554 cpu_desired_num_pixels_ = cpu_downgrade_count_ == 0 ? INT_MAX :
632 int min_num_pixels = INT_MAX;
652 if (!input.IsSize0x0() && min_num_pixels != INT_MAX) {
  /frameworks/av/media/libaaudio/examples/utils/
AAudioExampleUtils.h 188 return futex_wake(&mValue, INT_MAX);
198 return futex_wake(&mValue, INT_MAX);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Parser/
node.c 86 if (nch == INT_MAX || nch < 0)
  /external/fsverity-utils/
util.c 175 int n = read(file->fd, buf, min(count, INT_MAX));
195 int n = pread(file->fd, buf, min(count, INT_MAX), offset);
215 int n = write(file->fd, buf, min(count, INT_MAX));
232 int n = pwrite(file->fd, buf, min(count, INT_MAX), offset);

Completed in 889 milliseconds

1 2 3 4 5 6 7 891011>>