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

Function unpack

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

Source from the content-addressed store, hash-verified

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