(int size)
| 82 | /// to call with image-scale sizes - but using `allocByte(int)` directly is preferred when the |
| 83 | /// size is known to be large. |
| 84 | public byte[] allocaByte(int size) { |
| 85 | return allocByte(size); |
| 86 | } |
| 87 | |
| 88 | /// @deprecated This is a special scratch-allocation API. On ParparVM this may be lowered to a |
| 89 | /// stack-backed faux array, so callers MUST keep it method-local, MUST be extremely cautious |