Home
last modified time | relevance | path

Searched defs:IsPowerOfTwo (Results 1 – 14 of 14) sorted by relevance

/external/gemmlowp/internal/
Dcommon.h167 struct IsPowerOfTwo { struct
168 static const bool value = !(N & (N - 1));
/external/libchrome/base/
Dbits.h27 constexpr inline bool IsPowerOfTwo(T value) { in IsPowerOfTwo() function
/external/pdfium/third_party/base/
Dbits.h29 constexpr inline bool IsPowerOfTwo(T value) { in IsPowerOfTwo() function
/external/perfetto/src/profiling/perf/
Devent_config_unittest.cc33 bool IsPowerOfTwo(size_t v) { in IsPowerOfTwo() function
Devent_config.cc85 constexpr bool IsPowerOfTwo(size_t v) { in IsPowerOfTwo() function
Devent_reader.cc40 bool IsPowerOfTwo(size_t v) { in IsPowerOfTwo() function
/external/OpenCL-CTS/test_conformance/basic/
Dtest_sizeof.cpp156 static int IsPowerOfTwo( cl_ulong x ){ return 0 == (x & (x-1)); } in IsPowerOfTwo() function
/external/v8/src/base/
Dbits.h140 constexpr inline bool IsPowerOfTwo(T value) { in IsPowerOfTwo() function
/external/tensorflow/tensorflow/lite/kernels/
Drfft2d.cc45 bool IsPowerOfTwo(uint32_t v) { return v && !(v & (v - 1)); } in IsPowerOfTwo() function
/external/tensorflow/tensorflow/compiler/xla/
Dutil.h476 inline bool IsPowerOfTwo(T x) { in IsPowerOfTwo() function
/external/compiler-rt/lib/sanitizer_common/
Dsanitizer_common.h440 INLINE bool IsPowerOfTwo(uptr x) { in IsPowerOfTwo() function
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/SelectionDAG/
DDAGCombiner.cpp3155 auto IsPowerOfTwo = [](ConstantSDNode *C) { in visitSDIVLike() local
/external/sqlite/dist/
Dsqlite3.c14128 #define IsPowerOfTwo(X) (((X)&((X)-1))==0) macro
/external/sqlite/dist/orig/
Dsqlite3.c14128 #define IsPowerOfTwo(X) (((X)&((X)-1))==0) macro