Home
last modified time | relevance | path

Searched defs:is_power_of_two (Results 1 – 10 of 10) sorted by relevance

/aosp_15_r20/external/libcxx/test/libcxx/containers/unord/
H A Dnext_pow2.pass.cpp29 is_power_of_two(unsigned long n) in is_power_of_two() function
/aosp_15_r20/external/cronet/third_party/libc++/src/test/libcxx/containers/unord/
H A Dnext_pow2.pass.cpp29 is_power_of_two(unsigned long n) in is_power_of_two() function
/aosp_15_r20/external/OpenCL-CTS/test_common/harness/
H A DparseParameters.cpp270 bool is_power_of_two(int number) { return number && !(number & (number - 1)); } in is_power_of_two() function
/aosp_15_r20/external/pffft/
H A Dpffft_common.c37 static int is_power_of_two(int N) { in is_power_of_two() function
/aosp_15_r20/external/ComputeLibrary/src/runtime/CL/tuners/
H A DCLTuningParametersList.cpp216 const bool is_power_of_two = (i & (i - 1)) == 0; in initialize_lws_values() local
/aosp_15_r20/external/igt-gpu-tools/lib/
H A Digt_aux.h300 #define is_power_of_two(x) (((x) & ((x)-1)) == 0) macro
/aosp_15_r20/external/pytorch/torch/_functorch/
H A Dfx_minifier.py158 def is_power_of_two(n): function
/aosp_15_r20/external/igt-gpu-tools/overlay/
H A Doverlay.c53 #define is_power_of_two(x) (((x) & ((x)-1)) == 0) macro
/aosp_15_r20/external/pytorch/torch/sparse/
H A D_triton_ops.py71 def is_power_of_two(v): function
/aosp_15_r20/frameworks/base/libs/hwui/
H A DRecordingCanvas.cpp724 static constexpr inline bool is_power_of_two(int value) { in is_power_of_two() function