| 97 | } |
| 98 | |
| 99 | af_err af_wrap_v2(af_array* out, const af_array in, const dim_t ox, |
| 100 | const dim_t oy, const dim_t wx, const dim_t wy, |
| 101 | const dim_t sx, const dim_t sy, const dim_t px, |
| 102 | const dim_t py, const bool is_column) { |
| 103 | try { |
| 104 | ARG_ASSERT(0, out != 0); // need to dereference out in next call |
| 105 | af_wrap_common(out, in, ox, oy, wx, wy, sx, sy, px, py, is_column, |
| 106 | *out == 0); |
| 107 | } |
| 108 | CATCHALL; |
| 109 | |
| 110 | return AF_SUCCESS; |
| 111 | } |
no test coverage detected