Home
last modified time | relevance | path

Searched refs:IsPowerOfTwo (Results 1 – 2 of 2) sorted by relevance

/frameworks/native/libs/vr/libbroadcastring/include/libbroadcastring/
Dbroadcast_ring.h156 static constexpr bool IsPowerOfTwo(uint32_t size) { in IsPowerOfTwo() function
166 IsPowerOfTwo(Traits::kStaticRecordCount),
254 return IsPowerOfTwo(count) ? count : (NextPowerOf2(count) / 2); in GetRecordCount()
497 if (!IsPowerOfTwo(record_count())) return false; in ValidateGeometry()
/frameworks/native/cmds/installd/
Dotapreopt.cpp91 static constexpr bool IsPowerOfTwo(T x) { in IsPowerOfTwo() function
99 return DCHECK_CONSTEXPR(IsPowerOfTwo(n), , T(0))(x & -n); in RoundDown()