HomeSort by relevance Sort by last modified time
    Searched refs:count_set_bits (Results 1 - 3 of 3) sorted by null

  /device/linaro/bootloader/arm-trusted-firmware/drivers/arm/ccn/
ccn_private.h 187 static inline unsigned int count_set_bits(unsigned long long bitmap) function
205 for (unsigned long long region_id_limit = count_set_bits(bit_map) \
  /external/python/cpython3/Modules/
mathmodule.c 1265 count_set_bits(unsigned long n) function
    [all...]
  /external/python/cpython3/Lib/test/
test_math.py 81 # factorial(n) = factorial_odd_part(n) << (n - count_set_bits(n))
97 def count_set_bits(n): function
99 return 1 + count_set_bits(n & n - 1) if n else 0
124 return outer << (n - count_set_bits(n))
    [all...]

Completed in 219 milliseconds