Home
last modified time | relevance | path

Searched refs:count_set_bits (Results 1 – 4 of 4) sorted by relevance

/external/perfetto/src/trace_processor/db/
Dnull_overlay.cc45 uint32_t count_set_bits = null_bv_->CountSetBits(); in StableSort() local
47 std::vector<uint32_t> non_null_rows(count_set_bits); in StableSort()
48 std::vector<uint32_t> storage_to_rows(count_set_bits); in StableSort()
78 inner_->StableSort(non_null_rows.data(), count_set_bits); in StableSort()
79 uint32_t set_rows_offset = null_bv_->size() - count_set_bits; in StableSort()
80 for (uint32_t i = 0; i < count_set_bits; ++i) { in StableSort()
/external/arm-trusted-firmware/drivers/arm/ccn/
Dccn_private.h187 static inline unsigned int count_set_bits(unsigned long long bitmap) in count_set_bits() function
205 for (unsigned long long region_id_limit = count_set_bits(bit_map) \
/external/python/cpython3/Modules/
Dmathmodule.c1553 count_set_bits(unsigned long n) in count_set_bits() function
2092 two_valuation = x - count_set_bits(x); in math_factorial()
/external/python/cpython3/Lib/test/
Dtest_math.py77 def count_set_bits(n): function
79 return 1 + count_set_bits(n & n - 1) if n else 0
104 return outer << (n - count_set_bits(n))