(int size)
| 93 | /// to call with image-scale sizes - but using `allocInt(int)` directly is preferred when the |
| 94 | /// size is known to be large. |
| 95 | public int[] allocaInt(int size) { |
| 96 | return allocInt(size); |
| 97 | } |
| 98 | |
| 99 | /// @deprecated This is a special scratch-allocation API. On ParparVM this may be lowered to a |
| 100 | /// stack-backed faux array, so callers MUST keep it method-local, MUST be extremely cautious |