Searched refs:n (Results 1 – 15 of 15) sorted by relevance
39 def count_bits(n): argument41 while n != 0:42 n &= n - 1
61 static uint8_t count_bits(uint32_t n) in count_bits() argument64 for (i = 0; n != 0; i++) in count_bits()65 n &= n - 1; in count_bits()
33 int count_bits(uint8_t n) in count_bits() argument36 for (i = 0; n != 0; i++) in count_bits()37 n &= n - 1; in count_bits()
253 static uint8_t count_bits(uint64_t n) in count_bits() argument256 return (uint8_t) __builtin_popcountll (n); in count_bits()259 for (i = 0; n != 0; i++) in count_bits()260 n &= n - 1; in count_bits()
9 # @if test -n "$(PYTHON)"; then \
12 COMMAND git log -n 1 --format=%h
8 STRING(REGEX REPLACE "\n" ";" files "${files}")
121 set(configsText "${configsText} ${filename} (version ${version})\n")124 … set(configsText "${configsText} Reason given by package: ${${_NAME}_NOT_FOUND_MESSAGE}\n")126 …_FPHSA_FAILURE_MESSAGE("${FPHSA_FAIL_MESSAGE} ${VERSION_MSG}, checked the following files:\n${conf…
59 string(REGEX REPLACE "gitdir: (.*)\n$" "\\1" GIT_DIR_RELATIVE ${submodule})