HomeSort by relevance Sort by last modified time
    Searched refs:TestPrimitive (Results 1 - 2 of 2) sorted by null

  /external/v8/test/mjsunit/compiler/
compare.js 50 function TestPrimitive(max, x, y) {
57 TestPrimitive(1, 0, 1);
58 TestPrimitive(1, 1, 0);
59 TestPrimitive(4, 3, 4);
60 TestPrimitive(4, 4, 3);
61 TestPrimitive(0, -1, 0);
62 TestPrimitive(0, 0, -1)
63 TestPrimitive(-2, -2, -3);
64 TestPrimitive(-2, -3, -2);
66 TestPrimitive(1, 0.1, 1)
    [all...]
  /art/runtime/lambda/
closure_test.cc 226 void TestPrimitive(const char *descriptor, Args ... args) {
321 TestPrimitive("Z", true);
322 TestPrimitive("B", int8_t(0xde));
323 TestPrimitive("C", uint16_t(0xbeef));
324 TestPrimitive("S", int16_t(0xdead));
325 TestPrimitive("I", int32_t(0xdeadbeef));
326 TestPrimitive("F", 0.123f);
327 TestPrimitive("J", int64_t(0xdeadbeef00c0ffee));
328 TestPrimitive("D", 123.456);
332 TestPrimitive("ZZ", true, false)
    [all...]

Completed in 844 milliseconds