HomeSort by relevance Sort by last modified time
    Searched full:int_max (Results 451 - 475 of 1058) sorted by null

<<11121314151617181920>>

  /ndk/build/gmsl/
gmsl-tests 463 $(call start_test,int_max)
464 $(call test_assert,$(call int_max,$(call int_encode,2),$(call int_encode,1)),$(call int_encode,2))
465 $(call test_assert,$(call int_max,$(call int_encode,1),$(call int_encode,2)),$(call int_encode,2))
466 $(call test_assert,$(call int_max,$(call int_encode,2),$(call int_encode,0)),$(call int_encode,2))
467 $(call test_assert,$(call int_max,$(call int_encode,0),$(call int_encode,2)),$(call int_encode,2))
468 $(call test_assert,$(call int_max,$(call int_encode,2),$(call int_encode,2)),$(call int_encode,2))
469 $(call test_assert,$(call int_max,$(call int_encode,0),$(call int_encode,0)),$(call int_encode,0))
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/
vp9_ratectrl.c 368 int last_error = INT_MAX;
374 if (target_bits_per_frame >= (INT_MAX >> BPER_MB_NORMBITS))
    [all...]
  /hardware/intel/img/psb_video/src/
tng_H264ES.c 647 ctx->ui32IntraCnt = INT_MAX;
649 ctx->ui32IntraCnt = INT_MAX - (INT_MAX % ui32IPCount);
655 ctx->ui32IdrPeriod = INT_MAX;
658 ctx->ui32IdrPeriod = INT_MAX / ctx->ui32IntraCnt;
661 if (ui64Temp >= (IMG_UINT64)INT_MAX) {
662 ctx->ui32IdrPeriod = INT_MAX / ctx->ui32IntraCnt;
667 if (ctx->ui32IntraCnt > INT_MAX - ui32IPCount + (ctx->ui32IntraCnt % ui32IPCount))
668 ctx->ui32IntraCnt = INT_MAX - ui32IPCount + (ctx->ui32IntraCnt % ui32IPCount);
    [all...]
  /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)) {
  /ndk/tests/build/issue20862-libpng-O0/jni/
pngconf.h 28 * correctness of the definitions below (see uses of INT_MAX).
442 #if defined(INT_MAX) && (INT_MAX > 0x7ffffffeL)
590 (!defined(INT_MAX) || INT_MAX <= 0x7ffffffeL)
  /external/libavc/encoder/
ih264e_me.c 946 s_skip_mbpart.i4_mb_cost = INT_MAX;
947 s_skip_mbpart.i4_mb_distortion = INT_MAX;
964 ps_me_ctxt->as_mb_part[PRED_L0].i4_mb_cost = INT_MAX;
965 ps_me_ctxt->as_mb_part[PRED_L0].i4_mb_distortion = INT_MAX;
    [all...]
  /external/toybox/toys/pending/
tcpsvd.c 203 n = atolx_range(user, 0, INT_MAX);
211 n = atolx_range(group, 0, INT_MAX);
282 TT.maxc = atolx_range(TT.nmsg, 1, INT_MAX);
  /frameworks/base/libs/hwui/
RenderProperties.h 593 // clipped to this RP's bounds. But as we will damage -INT_MAX to INT_MAX
595 // Z damage estimate instead of INT_MAX
  /frameworks/minikin/libs/minikin/
LineBreaker.cpp 87 mFirstTabIndex = INT_MAX;
164 if (mFirstTabIndex == INT_MAX) {
302 mFirstTabIndex = INT_MAX;
  /frameworks/native/libs/gui/
Sensor.cpp 71 if (hwSensor->maxDelay > INT_MAX) {
73 // always fit in a 32 bit integer, log error and cap it to INT_MAX.
76 mMaxDelay = INT_MAX;
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/decoder/
vp9_decoder.c 287 cm->frame_refs[ref_index].idx = INT_MAX;
308 if (cm->frame_refs[0].idx != INT_MAX)
328 if (cm->frame_refs[0].idx != INT_MAX)
  /system/bt/stack/gap/
gap_ble.c 257 UINT16_TO_STREAM(p, p_db_attr->attr_value.conn_param.int_max); /* int_max */
421 p_db_attr->attr_value.conn_param.int_max = GAP_PREFER_CONN_INT_MAX; /* 6 */
  /external/openssh/openbsd-compat/
glob.c 201 pglob->gl_offs >= INT_MAX || pglob->gl_pathc >= INT_MAX ||
202 pglob->gl_pathc >= INT_MAX - pglob->gl_offs - 1)
806 if (pglob->gl_offs >= INT_MAX ||
807 pglob->gl_pathc >= INT_MAX ||
808 newn >= INT_MAX ||
  /external/tremolo/Tremolo/
codebook.c 253 if (s->used_entries > INT_MAX/2 ||
254 s->used_entries*2 > INT_MAX/((long) sizeof(*work)) - 1) return 1;
259 if (s->used_entries > INT_MAX/(s->dec_leafw+1)) goto error_out;
260 if (s->dec_nodeb && s->used_entries * (s->dec_leafw+1) > INT_MAX/s->dec_nodeb) goto error_out;
419 if (s->dim > INT_MAX/s->entries) goto _eofout;
515 if (s->dim > (INT_MAX-8)/s->q_bits) goto _eofout;
  /bionic/libc/upstream-openbsd/lib/libc/stdio/
vfprintf.c 417 if ((val) > INT_MAX / 10) \
420 if ((val) > INT_MAX - to_digit((dig))) \
498 if (m < 0 || m > INT_MAX - ret)
706 if (expt == INT_MAX)
750 expt = INT_MAX;
755 if (expt == INT_MAX) { /* inf or nan */
879 if ((len = strlen(cp)) > INT_MAX)
1058 if (width > INT_MAX - ret)
    [all...]
vfwprintf.c 405 if ((val) > INT_MAX / 10) \
408 if ((val) > INT_MAX - to_digit((dig))) \
474 if (m < 0 || m > INT_MAX - ret)
668 if (expt == INT_MAX)
720 expt = INT_MAX;
733 if (expt == INT_MAX) { /* inf or nan */
855 if ((len = wcslen(cp)) > INT_MAX)
1035 if (width > INT_MAX - ret)
    [all...]
  /external/bison/lib/
strerror_r.c 179 if (buflen > INT_MAX)
180 buflen = INT_MAX;
  /external/bison/src/
gram.h 116 #define ITEM_NUMBER_MAX INT_MAX
148 #define RULE_NUMBER_MAX INT_MAX
  /external/boringssl/src/crypto/asn1/
a_object.c 300 if (len <= 0 || len > INT_MAX || pp == NULL || (p = *pp) == NULL ||
306 /* Now 0 < len <= INT_MAX, so the cast is safe. */
  /external/boringssl/src/crypto/bio/
bio_mem.c 141 if (b->length < INT_MAX && ret > (int)b->length) {
176 if (INT_MAX - blen < inl) {
  /external/boringssl/src/crypto/cipher/
e_ssl3.c 141 in_len > INT_MAX) {
247 if (in_len > INT_MAX) {
  /external/boringssl/src/crypto/
constant_time_test.c 234 32000, -32000, INT_MAX, INT_MIN, INT_MAX - 1, INT_MIN + 1};
  /external/google-breakpad/src/testing/test/
gmock-cardinalities_test.cc 130 EXPECT_EQ(INT_MAX, c.ConservativeUpperBound());
185 EXPECT_EQ(INT_MAX, c.ConservativeUpperBound());
  /external/libvncserver/client_examples/
scrap.c 392 0, INT_MAX/4, False, format, &seln_type,
534 0, INT_MAX/4, False, req->target,
  /external/libvncserver/common/
lzoconf.h 130 # define LZO_INT_MAX INT_MAX
149 # define LZO_INT32_MAX INT_MAX

Completed in 1852 milliseconds

<<11121314151617181920>>