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

Function IsMultipleOf64

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

Source from the content-addressed store, hash-verified

71}
72
73constexpr bool IsMultipleOf64(int64_t n) { return (n & 63) == 0; }
74
75constexpr bool IsMultipleOf8(int64_t n) { return (n & 7) == 0; }
76

Callers 3

NextRunFunction · 0.85
bit_run_reader.hFile · 0.85
TESTFunction · 0.85

Calls

no outgoing calls

Tested by 1

TESTFunction · 0.68