Lines Matching refs:Math
85 assertTrue(delete a[Math.pow(2,31)-1], "delete 2^31-1");
102 o[Math.pow(2,30)-1] = 0;
103 o[Math.pow(2,31)-1] = 0;
106 assertTrue(delete o[Math.pow(2,30)]);
108 assertFalse(has(o, Math.pow(2,30)));
110 assertTrue(has(o, Math.pow(2,30)-1));
111 assertTrue(has(o, Math.pow(2,31)-1));
113 assertTrue(delete o[Math.pow(2,30)-1]);
115 assertFalse(has(o, Math.pow(2,30)-1), "delete 2^30-1");
116 assertTrue(has(o, Math.pow(2,31)-1));
120 assertFalse(has(o, Math.pow(2,30)-1), "delete 2^30-1");
121 assertTrue(has(o, Math.pow(2,31)-1));
123 assertTrue(delete o[Math.pow(2,31)-1]);
125 assertFalse(has(o, Math.pow(2,30)-1), "delete 2^30-1");
126 assertFalse(has(o, Math.pow(2,31)-1), "delete 2^31-1");
130 a[Math.pow(2,30)-1] = 0;
131 a[Math.pow(2,31)-1] = 0;
134 assertTrue(delete a[Math.pow(2,30)]);
136 assertFalse(has(a, Math.pow(2,30)), "delete 2^30");
138 assertTrue(has(a, Math.pow(2,30)-1));
139 assertTrue(has(a, Math.pow(2,31)-1));
140 assertEquals(Math.pow(2,31), a.length);
142 assertTrue(delete a[Math.pow(2,30)-1]);
144 assertFalse(has(a, Math.pow(2,30)-1), "delete 2^30-1");
145 assertTrue(has(a, Math.pow(2,31)-1));
146 assertEquals(Math.pow(2,31), a.length);
150 assertFalse(has(a, Math.pow(2,30)-1), "delete 2^30-1");
151 assertTrue(has(a, Math.pow(2,31)-1));
152 assertEquals(Math.pow(2,31), a.length);
154 assertTrue(delete a[Math.pow(2,31)-1]);
156 assertFalse(has(a, Math.pow(2,30)-1), "delete 2^30-1");
157 assertFalse(has(a, Math.pow(2,31)-1), "delete 2^31-1");
158 assertEquals(Math.pow(2,31), a.length);