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

Function RoundUpToMultipleOf8

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

Source from the content-addressed store, hash-verified

107}
108
109constexpr int64_t RoundUpToMultipleOf8(int64_t num) { return RoundUpToPowerOf2(num, 8); }
110
111constexpr int64_t RoundUpToMultipleOf64(int64_t num) {
112 return RoundUpToPowerOf2(num, 64);

Callers 10

ARROW_ASSIGN_OR_RAISEFunction · 0.85
FuzzIpcFileFunction · 0.85
AssembleMethod · 0.85
VisitMethod · 0.85
WriteIpcPayloadFunction · 0.85
AssembleMethod · 0.85
VisitBitsUnrolledFunction · 0.85

Calls 1

RoundUpToPowerOf2Function · 0.85