| 52 | |
| 53 | template <typename Uint> |
| 54 | void unpack(const uint8_t* in, Uint* out, const UnpackOptions& opts) { |
| 55 | #if defined(ARROW_HAVE_NEON) |
| 56 | return bpacking::unpack_neon(in, out, opts); |
| 57 | #else |
| 58 | static DynamicDispatch<UnpackDynamicFunction<Uint> > dispatch; |
| 59 | return dispatch.func(in, out, opts); |
| 60 | #endif |
| 61 | } |
| 62 | |
| 63 | template void unpack<bool>(const uint8_t*, bool*, const UnpackOptions&); |
| 64 | template void unpack<uint8_t>(const uint8_t*, uint8_t*, const UnpackOptions&); |
no outgoing calls