pub extern "C" fn runtime_new_boxed_array(len: i64, init: i64) -> i64
Allocate a new boxed array of len pointer slots, each initialized to init. Layout: [u64 length][ptr0][ptr1]…[ptrN-1] Each slot is 8 bytes (a heap pointer).
len
init