MCPcopy Create free account
hub / github.com/CodingGay/BlackDex / IsAlignedParam

Function IsAlignedParam

Bcore/src/main/cpp/base/bit_utils.h:206–208  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

204
205template<typename T>
206inline bool IsAlignedParam(T x, int n) {
207 return (x & (n - 1)) == 0;
208}
209
210template<typename T>
211inline bool IsAlignedParam(T* x, int n) {

Callers 3

AlignmentPadVectorFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected