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

Function RoundUpToMultipleOf64

cpp/src/arrow/util/bit_util.h:114–116  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

112constexpr int64_t RoundUpToMultipleOf8(int64_t num) { return RoundUpToPowerOf2(num, 8); }
113
114constexpr int64_t RoundUpToMultipleOf64(int64_t num) {
115 return RoundUpToPowerOf2(num, 64);
116}
117
118// Returns the number of bytes covering a sliced bitmap. Find the length
119// rounded to cover full bytes on both extremities.

Callers 5

RoundCapacityMethod · 0.85
TestCapacityReserveMethod · 0.85
HashFixedLengthFromFunction · 0.85
ConsumeMethod · 0.85
TEST_FFunction · 0.85

Calls 1

RoundUpToPowerOf2Function · 0.85

Tested by 3

TestCapacityReserveMethod · 0.68
HashFixedLengthFromFunction · 0.68
TEST_FFunction · 0.68