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

Function IsMultipleOf64

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

Source from the content-addressed store, hash-verified

68}
69
70constexpr bool IsMultipleOf64(int64_t n) { return (n & 63) == 0; }
71
72constexpr bool IsMultipleOf8(int64_t n) { return (n & 7) == 0; }
73

Callers 3

NextRunFunction · 0.85
bit_run_reader.hFile · 0.85
TESTFunction · 0.85

Calls

no outgoing calls

Tested by 1

TESTFunction · 0.68