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

/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_common.h440 INLINE bool IsPowerOfTwo(uptr x) { function in namespace:__sanitizer
446 if (IsPowerOfTwo(size)) return size;
455 RAW_CHECK(IsPowerOfTwo(boundary));
468 CHECK(IsPowerOfTwo(x));
/external/gemmlowp/internal/
H A Dcommon.h297 struct IsPowerOfTwo { struct in namespace:gemmlowp
/external/tensorflow/tensorflow/compiler/xla/
H A Dutil.h393 inline bool IsPowerOfTwo(T x) { function in namespace:xla
/external/vulkan-validation-layers/layers/
H A Dcore_validation.cpp8630 static bool IsPowerOfTwo(unsigned x) { return x && !(x & (x - 1)); } function in namespace:core_validation
8761 if (!dev_data->extensions.vk_amd_mixed_attachment_samples && sample_count && !IsPowerOfTwo(sample_count)) {
/external/sqlite/dist/orig/
H A Dsqlite3.c13168 #define IsPowerOfTwo(X) (((X)&((X)-1))==0) macro
[all...]
/external/sqlite/dist/
H A Dsqlite3.c13168 #define IsPowerOfTwo(X) (((X)&((X)-1))==0) macro
[all...]

Completed in 975 milliseconds