Home
last modified time | relevance | path

Searched refs:IsPowerOf2 (Results 1 – 13 of 13) sorted by relevance

/external/vixl/src/vixl/
Dcompiler-intrinsics.cc33 VIXL_ASSERT(IsPowerOf2(width) && (width <= 64)); in CountLeadingSignBitsFallBack()
43 VIXL_ASSERT(IsPowerOf2(width) && (width <= 64)); in CountLeadingZerosFallBack()
78 VIXL_ASSERT(IsPowerOf2(width) && (width <= 64)); in CountSetBitsFallBack()
113 VIXL_ASSERT(IsPowerOf2(width) && (width <= 64)); in CountTrailingZerosFallBack()
Dcompiler-intrinsics.h85 inline bool IsPowerOf2(V value) { in IsPowerOf2() function
Dutils.h195 VIXL_ASSERT(IsPowerOf2(value)); in WhichPowerOf2()
/external/vixl/src/vixl/a64/
Dcpu-a64.cc99 VIXL_ASSERT(IsPowerOf2(dsize)); in EnsureIAndDCacheCoherency()
100 VIXL_ASSERT(IsPowerOf2(isize)); in EnsureIAndDCacheCoherency()
Dassembler-a64.h270 VIXL_ASSERT(IsPowerOf2(lanes_) && (lanes_ <= 16)); in VRegister()
274 VIXL_ASSERT(IsPowerOf2(lanes_) && (lanes_ <= 16)); in CPURegister()
279 VIXL_ASSERT(IsPowerOf2(lanes_) && (lanes_ <= 16)); in VRegister()
Dassembler-a64.cc5212 if (!IsPowerOf2(d)) { in IsImmLogical()
/external/opencv3/modules/core/include/opencv2/core/cuda/detail/
Dreduce.hpp343 template <unsigned int N> struct IsPowerOf2 struct
351 (N <= 32) && IsPowerOf2<N>::value,
354 (N <= 1024) && IsPowerOf2<N>::value,
Dreduce_key_val.hpp480 template <unsigned int N> struct IsPowerOf2 struct
488 (N <= 32) && IsPowerOf2<N>::value,
491 (N <= 1024) && IsPowerOf2<N>::value,
/external/opencv3/modules/cudev/include/opencv2/cudev/util/
Dtype_traits.hpp89 template <int N> struct IsPowerOf2 struct
/external/opencv3/modules/cudev/include/opencv2/cudev/block/detail/
Dreduce.hpp379 (N <= 32) && IsPowerOf2<N>::value,
382 (N <= 1024) && IsPowerOf2<N>::value,
Dreduce_key_val.hpp381 (N <= 32) && IsPowerOf2<N>::value,
384 (N <= 1024) && IsPowerOf2<N>::value,
/external/v8/src/compiler/
Dnode-matchers.h123 bool IsPowerOf2() const { in IsPowerOf2() function
Dmachine-operator-reducer.cc221 if (m.right().IsPowerOf2()) { // x * 2^n => x << n in Reduce()