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

Function TotalBufferSize

cpp/src/arrow/util/byte_size.cc:93–96  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

91} // namespace
92
93int64_t TotalBufferSize(const ArrayData& array_data) {
94 std::unordered_set<const uint8_t*> seen_buffers;
95 return DoTotalBufferSize(array_data, &seen_buffers);
96}
97
98int64_t TotalBufferSize(const Array& array) { return TotalBufferSize(*array.data()); }
99

Callers 5

TotalBufferSizeMethod · 0.85
EstimatedDataBytesMethod · 0.85
EstimatedDataBytesMethod · 0.85
BenchmarkAggregateFunction · 0.85
TESTFunction · 0.85

Calls 2

DoTotalBufferSizeFunction · 0.85
dataMethod · 0.45

Tested by 2

EstimatedDataBytesMethod · 0.68
TESTFunction · 0.68