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

Function IsMultipleOf8

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

Source from the content-addressed store, hash-verified

73constexpr bool IsMultipleOf64(int64_t n) { return (n & 63) == 0; }
74
75constexpr bool IsMultipleOf8(int64_t n) { return (n & 7) == 0; }
76
77// Returns a mask for the bit_index lower order bits.
78// Valid in the range `[0, 8*sizof(Uint)]` if `kAllowUpperBound`

Callers 9

ReadBufferMethod · 0.85
CheckAlignedFunction · 0.85
ReadSparseTensorMetadataFunction · 0.85
WriteFileFooterFunction · 0.85
AssembleMethod · 0.85
AssembleMethod · 0.85
OptimalNumOfBytesFunction · 0.85
VisitMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected