HomeSort by relevance Sort by last modified time
    Searched defs:maxint (Results 1 - 25 of 31) sorted by null

1 2

  /external/clang/test/PCH/
stmts.h 93 #define maxint(a,b) ({int _a = (a), _b = (b); _a > _b ? _a : _b; }) macro
95 return maxint(++x, --y);
  /external/chromium_org/v8/test/webkit/fast/js/kde/
Array.js 158 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/chromium_org/third_party/icu/source/test/intltest/
punyref.c 102 /* 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/icu4c/test/intltest/
punyref.c 102 /* 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/stlport/test/unit/
sstream_test.cpp 28 CPPUNIT_TEST(maxint);
48 void maxint();
201 void SstreamTest::maxint() function in class:SstreamTest
  /ndk/tests/device/test-gnustl-full/unit/
sstream_test.cpp 28 CPPUNIT_TEST(maxint);
48 void maxint();
201 void SstreamTest::maxint() function in class:SstreamTest
  /ndk/tests/device/test-stlport/unit/
sstream_test.cpp 28 CPPUNIT_TEST(maxint);
48 void maxint();
201 void SstreamTest::maxint() function in class:SstreamTest
  /external/chromium_org/third_party/cld/encodings/compact_lang_det/
cldutil.h 961 static inline int maxint(int a, int b) {return (a > b) ? a: b;} function in namespace:cld
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_index.py 4 from sys import maxint namespace
259 return maxint # cannot return long here
273 return maxint # cannot return long here
281 self.assertEqual(x[self.neg:self.pos], (maxint+minsize, maxsize))
test_grammar.py 30 from sys import maxint namespace
31 if maxint == 2147483647:
41 elif maxint == 9223372036854775807:
52 self.fail('Weird maxint value %r' % maxint)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_index.py 4 from sys import maxint namespace
259 return maxint # cannot return long here
273 return maxint # cannot return long here
281 self.assertEqual(x[self.neg:self.pos], (maxint+minsize, maxsize))
test_grammar.py 30 from sys import maxint namespace
31 if maxint == 2147483647:
41 elif maxint == 9223372036854775807:
52 self.fail('Weird maxint value %r' % maxint)
  /hardware/ti/omap3/omx/audio/src/openmax_il/g711_enc/tests/
G711EncTest.c 193 int maxint(int a, int b);
229 int maxint(int a, int b) function
538 fdmax = maxint(IpBuf_Pipe[0], OpBuf_Pipe[0]);
539 fdmax = maxint(fdmax,Event_Pipe[0]);
    [all...]
  /hardware/ti/omap3/omx/audio/src/openmax_il/g722_dec/tests/
G722DecTest.c 120 int maxint (int a, int b);
618 * @fn maxint() gives the maximum of two integers.
633 int maxint(int a, int b) function
    [all...]
  /hardware/ti/omap3/omx/audio/src/openmax_il/g722_enc/tests/
G722EncTest.c 119 int maxint(int a, int b);
140 int maxint(int a, int b) function
478 fdmax = maxint(IpBuf_Pipe[0], OpBuf_Pipe[0]);
479 fdmax = maxint(fdmax,Event_Pipe[0]);
    [all...]
  /hardware/ti/omap3/omx/audio/src/openmax_il/g726_dec/tests/
G726DecTest.c 133 int maxint(int a, int b);
150 * @fn maxint() gives the maximum of two integers.
165 int maxint(int a, int b) function
558 int fdmax = maxint(IpBuf_Pipe[0], OpBuf_Pipe[0]);
    [all...]
  /hardware/ti/omap3/omx/audio/src/openmax_il/g729_dec/tests/
G729DecTest.c 176 OMX_S16 maxint(OMX_S16 a, OMX_S16 b);
230 OMX_S16 maxint(OMX_S16 a, OMX_S16 b) function
532 OMX_S16 fdmax = maxint(IpBuf_Pipe[0], OpBuf_Pipe[0]);
    [all...]
  /hardware/ti/omap3/omx/image/src/openmax_il/jpeg_dec/tests/
JPEGTest.c 76 inline int maxint(int a, int b) function
768 nFdmax = maxint(IpBuf_Pipe[0], OpBuf_Pipe[0]);
769 nFdmax = maxint(Event_Pipe[0], nFdmax);
    [all...]
  /hardware/ti/omap3/omx/image/src/openmax_il/jpeg_enc/test/
JPEGTestEnc.c 655 inline int maxint(int a, int b);
663 inline int maxint(int a, int b) function
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/tests/data/
py2_test_grammar.py 35 from sys import maxint namespace
36 if maxint == 2147483647:
46 elif maxint == 9223372036854775807:
57 self.fail('Weird maxint value %r' % maxint)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/tests/data/
py2_test_grammar.py 35 from sys import maxint namespace
36 if maxint == 2147483647:
46 elif maxint == 9223372036854775807:
57 self.fail('Weird maxint value %r' % maxint)
  /hardware/ti/omap3/omx/audio/src/openmax_il/g711_dec/tests/
G711DecTest.c 205 OMX_S16 maxint(OMX_S16 a, OMX_S16 b);
255 * maxint()
259 OMX_S16 maxint(OMX_S16 a, OMX_S16 b) function
576 OMX_S16 fdmax = maxint(IpBuf_Pipe[0], OpBuf_Pipe[0]);
577 fdmax = maxint(fdmax,Event_Pipe[0]);
    [all...]
  /hardware/ti/omap3/omx/audio/src/openmax_il/g726_enc/tests/
G726EncTest.c 271 int maxint(int a, int b);
300 int maxint(int a, int b) function
634 fdmax = maxint(IpBuf_Pipe[0], OpBuf_Pipe[0]);
635 fdmax = maxint(fdmax,Event_Pipe[0]);
    [all...]
  /hardware/ti/omap3/omx/audio/src/openmax_il/g729_enc/tests/
G729EncTest.c 209 int maxint(int a, int b);
243 int maxint(int a, int b) function
527 fdmax = maxint(IpBuf_Pipe[0], OpBuf_Pipe[0]);
    [all...]
  /hardware/ti/omap3/omx/audio/src/openmax_il/nbamr_enc/tests/
AmrEncTest.c 317 int maxint(int a, int b);
356 int maxint(int a, int b) function
704 fdmax = maxint(IpBuf_Pipe[0], OpBuf_Pipe[0]);
705 fdmax = maxint(fdmax,Event_Pipe[0]);
    [all...]

Completed in 1749 milliseconds

1 2