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

<<11121314151617181920>>

  /external/python/cpython2/Lib/test/
test_poll.py 169 from _testcapi import USHRT_MAX, INT_MAX, UINT_MAX
176 self.assertRaises(OverflowError, pollster.poll, INT_MAX + 1)
  /external/python/cpython3/Include/
pyport.h 671 #ifndef INT_MAX
672 #define INT_MAX 2147483647
  /external/python/cpython3/Lib/test/
test_poll.py 169 from _testcapi import USHRT_MAX, INT_MAX, UINT_MAX
176 self.assertRaises(OverflowError, pollster.poll, INT_MAX + 1)
test_format.py 477 from _testcapi import INT_MAX
481 format(f, ".%sf" % (INT_MAX + 1))
485 format(c, ".%sf" % (INT_MAX + 1))
  /external/python/cpython3/Modules/_sqlite/
statement.c 160 if (buflen > INT_MAX) {
162 "string longer than INT_MAX bytes");
173 if (view.len > INT_MAX) {
175 "BLOB longer than INT_MAX bytes");
  /external/tensorflow/tensorflow/core/kernels/batching_util/
basic_batch_scheduler_benchmark_test.cc 348 scheduler_options.max_enqueued_batches = INT_MAX; // Unbounded queue.
398 scheduler_options.max_enqueued_batches = INT_MAX; // Unbounded queue.
  /external/toybox/toys/pending/
brctl.c 282 cost = atolx_range(argv[2], 0, INT_MAX);
290 prio = atolx_range(argv[2], 0, INT_MAX);
  /external/v8/src/profiler/
sampling-heap-profiler.cc 34 : (next > INT_MAX ? INT_MAX : static_cast<intptr_t>(next));
  /external/libaom/libaom/av1/encoder/
firstpass.c 242 if (tmp_err < INT_MAX)
244 if (tmp_err < INT_MAX - new_mv_mode_penalty) tmp_err += new_mv_mode_penalty;
264 if (tmp_err < INT_MAX)
266 if (tmp_err < INT_MAX - new_mv_mode_penalty)
389 cpi->rc.frames_to_key = INT_MAX;
580 tmp_err = INT_MAX;
  /external/libvpx/libvpx/vp9/encoder/
vp9_rd.c 49 rd_cost->rate = INT_MAX;
294 const int thresh_max = INT_MAX / t;
300 : INT_MAX;
306 : INT_MAX;
543 int best_sad = INT_MAX;
544 int this_sad = INT_MAX;
vp9_rdopt.c 801 *rate = INT_MAX;
869 if (r[n][0] < INT_MAX) {
872 if (d[n] == INT64_MAX || r[n][0] == INT_MAX) {
    [all...]
  /external/openssh/openbsd-compat/
glob.c 202 pglob->gl_offs >= INT_MAX || pglob->gl_pathc >= INT_MAX ||
203 pglob->gl_pathc >= INT_MAX - pglob->gl_offs - 1)
807 if (pglob->gl_offs >= INT_MAX ||
808 pglob->gl_pathc >= INT_MAX ||
809 newn >= INT_MAX ||
  /external/tremolo/Tremolo/
codebook.c 259 if (s->used_entries > INT_MAX/2 ||
260 s->used_entries*2 > INT_MAX/((long) sizeof(*work)) - 1) return 1;
265 if (s->used_entries > INT_MAX/(s->dec_leafw+1)) goto error_out;
266 if (s->dec_nodeb && s->used_entries * (s->dec_leafw+1) > INT_MAX/s->dec_nodeb) goto error_out;
432 if (s->dim > INT_MAX/s->entries) goto _eofout;
528 if (s->dim > (INT_MAX-8)/s->q_bits) goto _eofout;
  /external/grpc-grpc/src/core/ext/transport/chttp2/transport/
chttp2_transport.cc 62 #define DEFAULT_CLIENT_KEEPALIVE_TIME_MS INT_MAX
244 const grpc_integer_options options = {-1, 0, INT_MAX};
258 const grpc_integer_options options = {-1, 0, INT_MAX};
269 {g_default_max_pings_without_data, 0, INT_MAX});
273 &channel_args->args[i], {g_default_max_ping_strikes, 0, INT_MAX});
282 INT_MAX});
291 INT_MAX});
306 1, INT_MAX});
307 t->keepalive_time = value == INT_MAX ? GRPC_MILLIS_INF_FUTURE : value;
315 0, INT_MAX});
    [all...]
  /bionic/tests/
stdlib_test.cpp 827 ASSERT_EQ(INT_MAX, abs(-INT_MAX));
828 ASSERT_EQ(INT_MAX, abs(INT_MAX));
856 ASSERT_EQ(3, getloadavg(load, INT_MAX));
  /external/epid-sdk/epid/common/math/src/
ecgroup.c 296 if (INT_MAX < strlen || strlen <= 0 || strlen & 0x1) {
425 if (INT_MAX < strlen) {
429 if (INT_MAX < strlen || strlen <= 0 || strlen & 0x1) {
933 if (INT_MAX - sizeof(uint32_t) < msg_len) {
1085 // do not exceed INT_MAX to avoid overflow
1086 if (msg_len > INT_MAX) {
    [all...]
  /external/grpc-grpc/src/core/ext/filters/client_channel/
subchannel.cc 303 {static_cast<int>(initial_backoff_ms), 100, INT_MAX});
309 {static_cast<int>(*min_connect_timeout_ms), 100, INT_MAX});
314 &args->args[i], {static_cast<int>(max_backoff_ms), 100, INT_MAX});
320 {static_cast<int>(initial_backoff_ms), 100, INT_MAX});
394 const grpc_integer_options options = {0, 0, INT_MAX};
  /external/iputils/
ping_common.c 65 static int screen_width = INT_MAX;
284 !finite(dbl) || dbl < 0.0 || dbl >= (double)INT_MAX / 1000 - 1.0) {
386 if (lingertime < 0 || lingertime > INT_MAX/1000000) {
643 if (interval >= INT_MAX/preload) {
773 if (1000 % HZ == 0 ? next <= 1000 / HZ : (next < INT_MAX / HZ && next * HZ <= 1000)) {
  /external/skia/src/codec/
SkWuffsCodec.cpp 609 return n < INT_MAX ? n : INT_MAX;
647 for (; i < INT_MAX; i++) {
    [all...]
  /external/skqp/src/codec/
SkWuffsCodec.cpp 606 return n < INT_MAX ? n : INT_MAX;
644 for (; i < INT_MAX; i++) {
    [all...]
  /external/libchrome/base/metrics/
sample_vector_unittest.cc 87 // Custom buckets: [0, 1) [1, 2) [2, 3) [3, INT_MAX)
93 ranges.set_range(4, INT_MAX);
132 // [0, 1) [1, 2) [2, 4) [4, 8) [8, 16) [16, 32) [32, 64) [64, INT_MAX)
148 EXPECT_DEATH_IF_SUPPORTED(samples.Accumulate(INT_MAX, 100), "");
279 ranges.set_range(4, INT_MAX);
  /external/libhevc/encoder/
ihevce_enc_loop_inter_mode_sifter.c 211 i4_error = INT_MAX;
217 return INT_MAX;
266 WORD32 i4_best_cost = INT_MAX;
324 if((i4_cur_cost < INT_MAX) && u1_is_cu_noisy && i4_alpha_stim_multiplier)
344 if((i4_cur_cost < INT_MAX) && u1_is_cu_noisy && i4_alpha_stim_multiplier)
364 if(i4_cur_cost < INT_MAX)
    [all...]
  /external/skia/src/gpu/vk/
GrVkCaps.cpp 494 fMaxRenderTargetSize = SkTMin(properties.limits.maxImageDimension2D, (uint32_t)INT_MAX);
495 fMaxTextureSize = SkTMin(properties.limits.maxImageDimension2D, (uint32_t)INT_MAX);
610 (uint32_t)INT_MAX);
    [all...]
  /external/skqp/src/gpu/vk/
GrVkCaps.cpp 443 fMaxRenderTargetSize = SkTMin(properties.limits.maxImageDimension2D, (uint32_t)INT_MAX);
444 fMaxTextureSize = SkTMin(properties.limits.maxImageDimension2D, (uint32_t)INT_MAX);
557 (uint32_t)INT_MAX);
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/SelectionDAG/
FunctionLoweringInfo.cpp 120 H.CatchObj.FrameIndex = INT_MAX;
150 int FrameIndex = INT_MAX;
515 return INT_MAX;

Completed in 1010 milliseconds

<<11121314151617181920>>