Searched defs:maxint (Results 1 - 8 of 8) sorted by relevance

/external/clang/test/PCH/
H A Dstmts.h93 #define maxint(a,b) ({int _a = (a), _b = (b); _a > _b ? _a : _b; }) macro
95 return maxint(++x, --y);
/external/chromium_org/third_party/cython/src/Cython/Plex/
H A DTransitions.py8 from sys import maxint as maxint namespace
29 code_0 == -maxint
30 code_n == maxint
43 map = [-maxint, {}, maxint]
117 len = len, maxint = maxint):
127 if code == maxint:
167 if code == -maxint
[all...]
H A DRegexps.py10 from sys import maxint as maxint namespace
469 ranges.insert(0, -maxint)
470 ranges.append(maxint)
/external/chromium_org/v8/test/webkit/fast/js/kde/
H A DArray.js158 var maxint = Math.pow(2,32)-1; variable
166 arr[maxint] = "test";
168 shouldBe("arr[maxint]","\"test\"");
169 delete arr[maxint];
171 shouldBe("arr[maxint]","undefined");
172 arr[maxint-1] = "test2";
173 shouldBe("arr.length","maxint");
174 shouldBe("arr[maxint-1]","\"test2\"");
/external/stlport/test/unit/
H A Dsstream_test.cpp28 CPPUNIT_TEST(maxint);
48 void maxint();
201 void SstreamTest::maxint() function in class:SstreamTest
/external/chromium_org/third_party/icu/source/test/intltest/
H A Dpunyref.c102 /* maxint is the maximum value of a punycode_uint variable: */
103 static const punycode_uint maxint = (punycode_uint) (-1); variable
104 /* Because maxint is unsigned, -1 becomes the maximum value. */
168 for (m = maxint, j = 0; j < input_length; ++j) {
177 if (m - n > (maxint - delta) / (h + 1)) return punycode_overflow;
262 if (digit > (maxint - i) / w) return punycode_overflow;
267 if (w > maxint / (base - t)) return punycode_overflow;
276 if (i / (out + 1) > maxint - n) return punycode_overflow;
/external/icu/icu4c/source/test/intltest/
H A Dpunyref.c102 /* maxint is the maximum value of a punycode_uint variable: */
103 static const punycode_uint maxint = (punycode_uint) (-1); variable
104 /* Because maxint is unsigned, -1 becomes the maximum value. */
168 for (m = maxint, j = 0; j < input_length; ++j) {
177 if (m - n > (maxint - delta) / (h + 1)) return punycode_overflow;
262 if (digit > (maxint - i) / w) return punycode_overflow;
267 if (w > maxint / (base - t)) return punycode_overflow;
276 if (i / (out + 1) > maxint - n) return punycode_overflow;
/external/chromium_org/third_party/cld/encodings/compact_lang_det/
H A Dcldutil.h961 static inline int maxint(int a, int b) {return (a > b) ? a: b;} function in namespace:cld

Completed in 367 milliseconds