Searched defs:CTZ (Results 1 - 1 of 1) sorted by relevance

/art/runtime/base/
H A Dbit_utils.h41 static constexpr int CTZ(T x) { function in namespace:art
70 return (value == 0) ? -1 : CTZ(value);
99 return CTZ(x);
307 return CTZ(this->bits_);

Completed in 50 milliseconds