Home
last modified time | relevance | path

Searched refs:INT_MAX (Results 1 – 25 of 113) sorted by relevance

12345

/external/bison/src/
Dscan-gram.l132 if (rule_length == INT_MAX) in increment_rule_length()
723 unsigned int remaining_columns = INT_MAX - column; in add_column_width()
727 if (INT_MAX / 2 <= bufsize) in add_column_width()
728 return INT_MAX; in add_column_width()
734 return width <= remaining_columns ? column + width : INT_MAX; in add_column_width()
755 line += line < INT_MAX; in adjust_location()
775 if (line == INT_MAX && loc->start.line != INT_MAX) in adjust_location()
777 if (column == INT_MAX && loc->start.column != INT_MAX) in adjust_location()
873 if (1 - INT_MAX + rule_length <= num && num <= rule_length) in handle_action_dollar()
951 if (1 - INT_MAX + rule_length <= num && num <= rule_length) in handle_action_at()
[all …]
Dscan-gram.c993 if (rule_length == INT_MAX) in increment_rule_length()
3377 unsigned int remaining_columns = INT_MAX - column; in add_column_width()
3381 if (INT_MAX / 2 <= bufsize) in add_column_width()
3382 return INT_MAX; in add_column_width()
3388 return width <= remaining_columns ? column + width : INT_MAX; in add_column_width()
3409 line += line < INT_MAX; in adjust_location()
3429 if (line == INT_MAX && loc->start.line != INT_MAX) in adjust_location()
3431 if (column == INT_MAX && loc->start.column != INT_MAX) in adjust_location()
3527 if (1 - INT_MAX + rule_length <= num && num <= rule_length) in handle_action_dollar()
3605 if (1 - INT_MAX + rule_length <= num && num <= rule_length) in handle_action_at()
[all …]
Dsymtab.h45 #define SYMBOL_NUMBER_MAXIMUM INT_MAX
/external/qemu/audio/
Dnoaudio.c55 bytes = audio_MIN (bytes, INT_MAX); in no_run_out()
113 bytes = audio_MIN (bytes, INT_MAX); in no_run_in()
168 INIT_FIELD (max_voices_out = ) INT_MAX,
169 INIT_FIELD (max_voices_in = ) INT_MAX,
Dwavaudio.c65 if (bytes > INT_MAX) { in wav_out_run()
66 samples = INT_MAX >> hw->info.shift; in wav_out_run()
357 if (bytes > INT_MAX) { in wav_in_run()
358 samples = INT_MAX >> hw->info.shift; in wav_in_run()
/external/webkit/WebKit/android/nav/
DSelectText.cpp46 mBase = mBottom = mTop = INT_MAX; in setUp()
50 if (mBase == INT_MAX) { in base()
59 if (mBottom == INT_MAX) { in bottom()
70 if (mTop == INT_MAX) { in top()
92 : mDistance(INT_MAX), mFocusX(x), mFocusY(y) { in FirstCheck()
139 mLastBase = INT_MAX; in MultilineBuilder()
/external/opencore/oscl/oscl/config/shared/
Dosclconfig_limits_typedefs.h64 #elif ( INT_MAX == 32767 )
74 #if ( INT_MAX == 2147483647 )
/external/webkit/WebCore/dom/
DElementRareData.h45 return IntSize(INT_MAX, INT_MAX); in defaultMinimumSizeForResizing()
/external/opencore/codecs_v2/audio/gsm_amr/amr_wb/dec/src/
Dpv_amr_wb_type_defs.h133 #ifndef INT_MAX
134 #define INT_MAX INT32_MAX /* for 32 bit */ macro
/external/opencore/codecs_v2/audio/aac/dec/include/
Dpv_audio_type_defs.h146 #ifndef INT_MAX
147 #define INT_MAX INT32_MAX /* for 32 bit */ macro
/external/opencore/codecs_v2/audio/mp3/dec/include/
Dpvmp3_audio_type_defs.h140 #ifndef INT_MAX
141 #define INT_MAX INT32_MAX /* for 32 bit */ macro
/external/libffi/include/
Dffi_real.h118 #if INT_MAX == 32767
121 #elif INT_MAX == 2147483647
124 #elif INT_MAX == 9223372036854775807
/external/webkit/JavaScriptCore/wtf/
DThreadingWin.cpp340 else if (++m_waitersGone == (INT_MAX / 2)) { // timeout/canceled or spurious semaphore in timedWait()
461 if (intervalMilliseconds >= INT_MAX) in timedWait()
462 intervalMilliseconds = INT_MAX; in timedWait()
/external/openssl/crypto/bio/
Dbss_bio.c93 # define SSIZE_MAX INT_MAX
871 if (ret > INT_MAX) in BIO_nread0()
872 return INT_MAX; in BIO_nread0()
904 if (ret > INT_MAX) in BIO_nwrite0()
905 return INT_MAX; in BIO_nwrite0()
/external/safe-iop/src/
Dsafe_iop.c209 a=INT_MAX; b=1; EXPECT_FALSE(safe_add(NULL, a, b)); in T_add_s32()
211 a=INT_MIN; b=INT_MAX; EXPECT_TRUE(safe_add(NULL, a, b)); in T_add_s32()
212 a=INT_MAX/2; b=INT_MAX/2; EXPECT_TRUE(safe_add(NULL, a, b)); in T_add_s32()
405 a=INT_MIN; b=INT_MAX; EXPECT_FALSE(safe_sub(NULL, a, b)); in T_sub_s32()
406 a=INT_MIN/2; b=INT_MAX; EXPECT_FALSE(safe_sub(NULL, a, b)); in T_sub_s32()
407 a=-2; b=INT_MAX; EXPECT_FALSE(safe_sub(NULL, a, b)); in T_sub_s32()
408 a=INT_MAX; b=INT_MAX; EXPECT_TRUE(safe_sub(NULL, a, b)); in T_sub_s32()
594 a=INT_MAX; b=INT_MAX; EXPECT_FALSE(safe_mul(NULL, a, b)); in T_mul_s32()
595 a=INT_MAX/2+1; b=2; EXPECT_FALSE(safe_mul(NULL, a, b)); in T_mul_s32()
596 a=INT_MAX/2; b=2; EXPECT_TRUE(safe_mul(NULL, a, b)); in T_mul_s32()
[all …]
/external/webkit/WebCore/rendering/
DRenderText.cpp220 ASSERT(end == UINT_MAX || end <= INT_MAX); in addLineBoxRects()
221 ASSERT(start <= INT_MAX); in addLineBoxRects()
222 start = min(start, static_cast<unsigned>(INT_MAX)); in addLineBoxRects()
223 end = min(end, static_cast<unsigned>(INT_MAX)); in addLineBoxRects()
265 ASSERT(end == UINT_MAX || end <= INT_MAX); in collectAbsoluteLineBoxQuads()
266 ASSERT(start <= INT_MAX); in collectAbsoluteLineBoxQuads()
267 start = min(start, static_cast<unsigned>(INT_MAX)); in collectAbsoluteLineBoxQuads()
268 end = min(end, static_cast<unsigned>(INT_MAX)); in collectAbsoluteLineBoxQuads()
DRenderFlexibleBox.cpp530 …int projectedFlex = (allowedFlex == INT_MAX) ? allowedFlex : (int)(allowedFlex * (totalFlex / chil… in layoutHorizontalBox()
943 …int projectedFlex = (allowedFlex == INT_MAX) ? allowedFlex : (int)(allowedFlex * (totalFlex / chil… in layoutVerticalBox()
1101 int maxW = INT_MAX; in allowedChildFlex()
1110 if (maxW == INT_MAX) in allowedChildFlex()
1115 int maxH = INT_MAX; in allowedChildFlex()
1120 if (maxH == INT_MAX) in allowedChildFlex()
/external/dropbear/libtomcrypt/src/pk/ecc/
Decc_get_size.c37 return INT_MAX; /* large value known to cause it to fail when passed to ecc_make_key() */ in ecc_get_size()
Decc_sizes.c32 *low = INT_MAX; in ecc_sizes()
/external/tremor/Tremor/
Dcodebook.c219 if (s->used_entries > INT_MAX/2 || in _make_decode_table()
220 s->used_entries*2 > INT_MAX/((long) sizeof(*work)) - 1) return 1; in _make_decode_table()
225 if (s->used_entries > INT_MAX/(s->dec_leafw+1)) return 1; in _make_decode_table()
226 if (s->dec_nodeb && s->used_entries * (s->dec_leafw+1) > INT_MAX/s->dec_nodeb) return 1; in _make_decode_table()
377 if (s->dim > INT_MAX/s->entries) goto _eofout; in vorbis_book_unpack()
473 if (s->dim > (INT_MAX-8)/s->q_bits) goto _eofout; in vorbis_book_unpack()
/external/freetype/include/freetype/config/
Dftstdlib.h63 #define FT_INT_MAX INT_MAX
/external/webkit/WebCore/platform/graphics/
DFontCache.h84 void purgeInactiveFontData(int count = INT_MAX);
/external/webkit/WebCore/platform/graphics/qt/
DFontQt43.cpp266 l.setLineWidth(INT_MAX/256); in offsetForPositionForComplexText()
290 l.setLineWidth(INT_MAX/256); in offsetForPositionForComplexText()
324 l.setLineWidth(INT_MAX/256); in cursorToX()
/external/webkit/JavaScriptCore/runtime/
DJSImmediate.h323 static const int minImmediateInt = ((-INT_MAX) - 1);
324 static const int maxImmediateInt = INT_MAX;
326 static const int minImmediateInt = ((-INT_MAX) - 1) >> IntegerPayloadShift;
327 static const int maxImmediateInt = INT_MAX >> IntegerPayloadShift;
/external/webkit/WebKit/android/jni/
DWebCoreResourceLoader.cpp164 if ((unsigned long)expireTime > INT_MAX) in CreateResponse()
165 expireTime = INT_MAX; in CreateResponse()

12345