HomeSort by: relevance | last modified time | path
    Searched refs:popcount32 (Results 1 - 14 of 14) sorted by relevancy

  /src/common/lib/libc/string/
popcount32.c 1 /* $NetBSD: popcount32.c,v 1.5 2015/05/29 19:39:41 matt Exp $ */
35 __RCSID("$NetBSD: popcount32.c,v 1.5 2015/05/29 19:39:41 matt Exp $");
46 #ifndef popcount32 // might be a builtin
57 popcount32(uint32_t v) function in typeref:typename:unsigned int
75 __strong_alias(popcount, popcount32)
79 __strong_alias(popcountl, popcount32)
82 #endif /* !popcount32 */
popcount64.c 52 * The native pocount64 version is based on the same ideas as popcount32(3),
53 * see popcount32.c for comments.
60 return popcount32((uint32_t)(v >> 32)) +
61 popcount32((uint32_t)(v & 0xffffffffULL));
  /src/sys/stand/efiboot/
efigop.c 66 return popcount32(info->PixelInformation.RedMask) +
67 popcount32(info->PixelInformation.GreenMask) +
68 popcount32(info->PixelInformation.BlueMask);
  /src/include/
strings.h 69 unsigned int popcount32(__uint32_t) __constfunc;
  /src/sys/dev/nand/
hamming.c 187 /* we allocate 4 bytes so we can use popcount32 in one step */
203 if (popcount32(*(uint32_t *)correction_code) == 11) {
225 if (popcount32(*(uint32_t *)correction_code) == 1) {
  /src/sys/external/bsd/common/include/linux/
bitops.h 88 return popcount32(n);
94 return popcount32(n);
  /src/sys/lib/libkern/
libkern.h 489 #define popcount32 __builtin_popcount macro
495 unsigned int popcount32(uint32_t) __constfunc;
  /src/sys/arch/arm/cortex/
gic.c 629 u_int priorities = 1 << popcount32(pmr);
664 sc->sc_gic_lines += popcount32(valid);
738 const u_int ppis = popcount32(sc->sc_gic_valid_lines[0] >> 16);
739 const u_int sgis = popcount32(sc->sc_gic_valid_lines[0] & 0xffff);
  /src/sys/dev/spi/
mcp23xxxgpio_spi.c 316 nchips = popcount32(spi_present_mask);
  /src/sys/arch/arm/nvidia/
tegra_soctherm.c 397 const int bits = popcount32(bitmask);
  /src/sys/kern/
subr_kcpuset.c 490 count += popcount32(kcp->bits[j]);
  /src/sys/arch/arm/ti/
omap2_nand.c 516 switch (popcount32(xor)) {
  /src/sys/arch/powerpc/booke/dev/
pq3gpio.c 422 "abc"[i], popcount32(pinmask[i]));
  /src/sys/arch/i386/stand/efiboot/
eficons.c 468 n = popcount32(mask);

Completed in 18 milliseconds