Home | History | Annotate | Download | only in mjsunit

Lines Matching refs:pow

77 a[Math.pow(2,31)-1] = 0;
78 a[Math.pow(2,30)-1] = 0;
79 assertEquals(Math.pow(2,31), a.length);
85 a[Math.pow(2,30)-1] = Math.pow(2,30)-1;
86 a[Math.pow(2,31)-1] = Math.pow(2,31)-1;
87 a[Math.pow(2,32)-2] = Math.pow(2,32)-2;
89 assertEquals(Math.pow(2,30)-1, a[Math.pow(2,30)-1]);
90 assertEquals(Math.pow(2,31)-1, a[Math.pow(2,31)-1]);
91 assertEquals(Math.pow(2,32)-2, a[Math.pow(2,32)-2]);
93 assertEquals(Math.pow(2,32)-1, a.length);
94 assertEquals(Math.pow(2,30) + 1, a.length = Math.pow(2,30)+1); // not a smi!
95 assertEquals(Math.pow(2,30)+1, a.length);
99 assertEquals(Math.pow(2,30)-1, a[Math.pow(2,30)-1]);
100 assertEquals('undefined', typeof a[Math.pow(2,31)-1]);
101 assertEquals('undefined', typeof a[Math.pow(2,32)-2], "top");