Home
last modified time | relevance | path

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

/external/gemmlowp/internal/
Dcommon.h167 struct IsPowerOfTwo { struct
168 static constexpr bool value = !(N & (N - 1));
/external/pdfium/third_party/base/
Dbits.h19 constexpr inline bool IsPowerOfTwo(T value) { in IsPowerOfTwo() function
/external/perfetto/src/profiling/memory/
Dscoped_spinlock.cc26 constexpr bool IsPowerOfTwo(size_t v) { in IsPowerOfTwo() function
Dmalloc_interceptor_glibc_preload.cc32 bool IsPowerOfTwo(size_t v) { in IsPowerOfTwo() function
/external/cronet/base/
Dbits.h27 constexpr bool IsPowerOfTwo(T value) { in IsPowerOfTwo() function
/external/cronet/base/allocator/partition_allocator/partition_alloc_base/
Dbits.h23 constexpr bool IsPowerOfTwo(T value) { in IsPowerOfTwo() function
/external/libchrome/base/
Dbits.h27 constexpr inline bool IsPowerOfTwo(T value) { in IsPowerOfTwo() function
/external/OpenCL-CTS/test_conformance/basic/
Dtest_sizeof.cpp128 static int IsPowerOfTwo( cl_ulong x ){ return 0 == (x & (x-1)); } in IsPowerOfTwo() function
/external/rust/crates/grpcio-sys/grpc/third_party/upb/upbc/
Dmessage_layout.h82 static bool IsPowerOfTwo(size_t val) { in IsPowerOfTwo() function
/external/perfetto/src/profiling/perf/
Devent_reader.cc47 bool IsPowerOfTwo(size_t v) { in IsPowerOfTwo() function
Devent_config.cc113 constexpr bool IsPowerOfTwo(size_t v) { in IsPowerOfTwo() function
Devent_config_unittest.cc37 bool IsPowerOfTwo(size_t v) { in IsPowerOfTwo() function
/external/tensorflow/tensorflow/lite/kernels/
Dirfft2d.cc53 bool IsPowerOfTwo(uint32_t v) { return v && !(v & (v - 1)); } in IsPowerOfTwo() function
Drfft2d.cc53 bool IsPowerOfTwo(uint32_t v) { return v && !(v & (v - 1)); } in IsPowerOfTwo() function
/external/compiler-rt/lib/sanitizer_common/
Dsanitizer_common.h440 INLINE bool IsPowerOfTwo(uptr x) { in IsPowerOfTwo() function
/external/sqlite/dist/orig/
Dsqlite3.c14556 #define IsPowerOfTwo(X) (((X)&((X)-1))==0) macro
/external/sqlite/dist/
Dsqlite3.c14556 #define IsPowerOfTwo(X) (((X)&((X)-1))==0) macro
/external/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/SelectionDAG/
DDAGCombiner.cpp3806 auto IsPowerOfTwo = [](ConstantSDNode *C) { in visitSDIVLike() local
/external/rust/crates/libsqlite3-sys/sqlite3/
Dsqlite3.c14715 #define IsPowerOfTwo(X) (((X)&((X)-1))==0) macro