Home | History | Annotate | Download | only in mjsunit

Lines Matching refs:testBitNot

28 function testBitNot(x, name) {
42 testBitNot(0, 0);
43 testBitNot(1, 1);
44 testBitNot(-1, 1);
45 testBitNot(100, 100);
46 testBitNot(0x40000000, "0x40000000");
47 testBitNot(0x7fffffff, "0x7fffffff");
48 testBitNot(0x80000000, "0x80000000");
50 testBitNot(2.2, 2.2);
51 testBitNot(-2.3, -2.3);
52 testBitNot(Infinity, "Infinity");
53 testBitNot(NaN, "NaN");
54 testBitNot(-Infinity, "-Infinity");
55 testBitNot(0x40000000 + 0.12345, "float1");
56 testBitNot(0x40000000 - 0.12345, "float2");
57 testBitNot(0x7fffffff + 0.12345, "float3");
58 testBitNot(0x7fffffff - 0.12345, "float4");
59 testBitNot(0x80000000 + 0.12345, "float5");
60 testBitNot(0x80000000 - 0.12345, "float6");
62 testBitNot("0", "string0");
63 testBitNot("2.3", "string2.3");
64 testBitNot("-9.4", "string-9.4");