Searched refs:INT32_MAX (Results 1 - 25 of 64) sorted by relevance

123

/external/llvm/include/llvm/Support/
H A DDataTypes.h90 #define INT32_MAX 2147483647 macro
133 #ifndef INT32_MAX
134 # define INT32_MAX 2147483647 macro
138 # define INT32_MIN (-INT32_MAX - 1)
H A DDataTypes.h.cmake123 #ifndef INT32_MAX
124 # define INT32_MAX 2147483647
128 # define INT32_MIN (-INT32_MAX - 1)
H A DDataTypes.h.in120 #ifndef INT32_MAX
121 # define INT32_MAX 2147483647
125 # define INT32_MIN (-INT32_MAX - 1)
/external/icu4c/tools/tzcode/
H A Dprivate.h150 #ifndef INT32_MAX
151 #define INT32_MAX 0x7fffffff macro
152 #endif /* !defined INT32_MAX */
154 #define INT32_MIN (-1 - INT32_MAX)
/external/icu4c/common/
H A Duvectr64.cpp52 if (initialCapacity > (int32_t)(INT32_MAX / sizeof(int64_t))) {
128 if (capacity > (INT32_MAX - 1) / 2) { // integer overflow check
139 if (newCap > (int32_t)(INT32_MAX / sizeof(int64_t))) { // integer overflow check
160 if (limit > (int32_t)(INT32_MAX / sizeof(int64_t))) { // integer overflow check for realloc
H A Dfilterednormalizer2.cpp123 int32_t suffixStart=set.spanBack(first, INT32_MAX, USET_SPAN_SIMPLE);
131 UnicodeString middle(first, suffixStart, INT32_MAX);
137 first.replace(suffixStart, INT32_MAX, middle);
141 UnicodeString rest(second.tempSubString(prefixLimit, INT32_MAX));
H A Dservrbf.cpp62 length=_bundleName.extract(0, INT32_MAX, pkg, (int32_t)sizeof(pkg), US_INV);
H A Duvectr32.cpp55 if (initialCapacity > (int32_t)(INT32_MAX / sizeof(int32_t))) {
210 if (capacity > (INT32_MAX - 1) / 2) { // integer overflow check
221 if (newCap > (int32_t)(INT32_MAX / sizeof(int32_t))) { // integer overflow check
242 if (limit > (int32_t)(INT32_MAX / sizeof(int32_t))) { // integer overflow check for realloc
H A Dlocutil.cpp108 U_ASSERT(id->extract(0, INT32_MAX, buf, buflen) < buflen);
155 id.extract(prev, INT32_MAX, buffer + prev, BUFLEN - prev, US_INV);
/external/mesa3d/include/c99/
H A Dstdint.h137 #define INT32_MAX _I32_MAX macro
151 #define INT_LEAST32_MAX INT32_MAX
165 #define INT_FAST32_MAX INT32_MAX
180 # define INTPTR_MAX INT32_MAX
/external/webkit/Source/JavaScriptCore/icu/unicode/
H A Dumachine.h179 #ifndef INT32_MAX
181 # define INT32_MAX ((int32_t)(2147483647)) macro
/external/webkit/Source/JavaScriptGlue/icu/unicode/
H A Dumachine.h179 #ifndef INT32_MAX
181 # define INT32_MAX ((int32_t)(2147483647)) macro
/external/webkit/Source/WebCore/icu/unicode/
H A Dumachine.h179 #ifndef INT32_MAX
181 # define INT32_MAX ((int32_t)(2147483647)) macro
/external/webkit/Source/WebKit/mac/icu/unicode/
H A Dumachine.h179 #ifndef INT32_MAX
181 # define INT32_MAX ((int32_t)(2147483647)) macro
/external/icu4c/io/
H A Dsprintf.c109 written = u_vsnprintf(buffer, INT32_MAX, patternSpecification, ap);
124 written = u_vsnprintf_u(buffer, INT32_MAX, patternSpecification, ap);
135 return u_vsnprintf(buffer, INT32_MAX, patternSpecification, ap);
209 return u_vsnprintf_u(buffer, INT32_MAX, patternSpecification, ap);
229 count = INT32_MAX;
/external/icu4c/common/unicode/
H A Dumachine.h172 #ifndef INT32_MAX
174 # define INT32_MAX ((int32_t)(2147483647)) macro
/external/clang/test/Preprocessor/
H A Dstdint.c910 INT32_MAX_ INT32_MAX
/external/icu4c/i18n/unicode/
H A Ducurr.h202 UCURR_ALL = INT32_MAX,
/external/icu4c/test/intltest/
H A Dtsnmfmt.cpp226 tryIt((int32_t)INT32_MAX);
228 tryIt((double)INT32_MAX);
230 tryIt((double)INT32_MAX + 1.0);
274 it = randFraction() * INT32_MAX;
/external/icu4c/samples/ustring/
H A Dustring.cpp218 U16_NEXT(input, i, INT32_MAX, c); /* without length because NUL-terminated */
229 U16_NEXT(input, i, INT32_MAX, c); /* without length because NUL-terminated */
240 U16_NEXT(input, i, INT32_MAX, c); /* without length because NUL-terminated */
251 U16_NEXT(input, i, INT32_MAX, c); /* without length because NUL-terminated */
262 U16_NEXT(input, i, INT32_MAX, c); /* without length because NUL-terminated */
/external/bison/src/
H A Dsystem.h34 # undef INT32_MAX macro
/external/clang/lib/include/
H A Dstdint.h529 # define INT32_MAX INT32_C(2147483647) macro
533 # define __INT_LEAST32_MAX INT32_MAX
536 # define __INT_LEAST16_MAX INT32_MAX
539 # define __INT_LEAST8_MAX INT32_MAX
/external/clang/lib/Headers/
H A Dstdint.h529 # define INT32_MAX INT32_C(2147483647) macro
533 # define __INT_LEAST32_MAX INT32_MAX
536 # define __INT_LEAST16_MAX INT32_MAX
539 # define __INT_LEAST8_MAX INT32_MAX
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_internal_defs.h154 #undef INT32_MAX macro
155 #define INT32_MAX (2147483647) macro
/external/ipsec-tools/src/libipsec/
H A Dpolicy_parse.y89 #ifndef INT32_MAX
90 #define INT32_MAX (0xffffffff)
94 #define INT32_MIN (-INT32_MAX-1)
192 if (errno != 0 || p_priority_offset > INT32_MAX)

Completed in 726 milliseconds

123