Home | History | Annotate | Download | only in mjsunit

Lines Matching refs:Math

109 o[Math.pow(2,30)-1] = 0;
110 o[Math.pow(2,31)-1] = 0;
115 assertFalse(Math.pow(2,30)-2 in o);
116 assertTrue(Math.pow(2,30)-1 in o);
117 assertFalse(Math.pow(2,30)-0 in o);
118 assertTrue(Math.pow(2,31)-1 in o);
134 a[Math.pow(2,30)-1] = 0;
135 a[Math.pow(2,31)-1] = 0;
140 assertFalse(Math.pow(2,30)-2 in a, "Math.pow(2,30)-2 in a");
141 assertTrue(Math.pow(2,30)-1 in a, "Math.pow(2,30)-1 in a");
142 assertFalse(Math.pow(2,30)-0 in a, "Math.pow(2,30)-0 in a");
143 assertTrue(Math.pow(2,31)-1 in a, "Math.pow(2,31)-1 in a");