(x, multiple)
| 1098 | var MIN_TOTAL_MEMORY = 16777216; |
| 1099 | |
| 1100 | function alignUp(x, multiple) { |
| 1101 | if (x % multiple > 0) { |
| 1102 | x += multiple - (x % multiple); |
| 1103 | } |
| 1104 | return x; |
| 1105 | } |
| 1106 | |
| 1107 | var HEAP, |
| 1108 | /** @type {ArrayBuffer} */ |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…