Searched defs:maxint (Results 1 - 3 of 3) 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/stlport/test/unit/
H A Dsstream_test.cpp28 CPPUNIT_TEST(maxint);
48 void maxint();
201 void SstreamTest::maxint() function in class:SstreamTest
/external/icu4c/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;

Completed in 409 milliseconds