| 148 | // Test many elements in the small range, make bigger steps later. This is still |
| 149 | // O(2^n), but takes 213 steps to reach 2^32. |
| 150 | const inc = i => i + Math.floor(i/10) + 1; |
| 151 | |
| 152 | function Test32Op(operation, func) { |
| 153 | let i32 = new Uint32Array(memory.buffer); |
no outgoing calls
no test coverage detected