MCPcopy Create free account
hub / github.com/apache/arrow / unpack

Function unpack

cpp/src/arrow/util/bpacking.cc:49–52  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

47
48template <typename Uint>
49void unpack(const uint8_t* in, Uint* out, const UnpackOptions& opts) {
50 static const DynamicDispatch<UnpackDynamicFunction<Uint>> dispatch;
51 return dispatch(in, out, opts);
52}
53
54template void unpack<bool>(const uint8_t*, bool*, const UnpackOptions&);
55template void unpack<uint8_t>(const uint8_t*, uint8_t*, const UnpackOptions&);

Callers 12

UnpackValuesFunction · 0.70
unpack_widthFunction · 0.70
unpackMethod · 0.70
unpackMethod · 0.70
unpackMethod · 0.70
unpackMethod · 0.70
unpackMethod · 0.70
unpackMethod · 0.70
BM_UnpackFunction · 0.70
GetBatchMethod · 0.70
GetBatchMethod · 0.70
unpackMethod · 0.70

Calls

no outgoing calls

Tested by 1

UnpackValuesFunction · 0.56