Query: popcountl
OS: netbsd
Section: 3
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
POPCOUNT(3) BSD Library Functions Manual POPCOUNT(3)NAMEpopcount, popcountl, popcountll, popcount32, popcount64 -- count number of bits set in a bit stringLIBRARYStandard C Library (libc, -lc)SYNOPSIS#include <strings.h> unsigned int popcount(unsigned int value); unsigned int popcountl(unsigned long value); unsigned int popcountll(unsigned long long value); #include <stdint.h> unsigned int popcount32(uint32_t value); unsigned int popcount64(uint64_t value);DESCRIPTIONThe popcount functions returns the number of bits set in value.SEE ALSOffs(3)HISTORYThe popcount(), popcountl(), popcountll(), popcount32(), and popcount64() functions appeared in NetBSD 6.0.BSDAugust 22, 2011 BSD
| Related Man Pages | 
|---|
| atomic_and(3) - netbsd | 
| atomic_and_32(3) - netbsd | 
| atomic_and_uint(3) - netbsd | 
| atomic_or_64(3) - netbsd | 
| atomic_or_64_nv(3) - netbsd | 
| Similar Topics in the Unix Linux Community | 
|---|
| sorting left-justified numeric values | 
| Memory Leaks | 
| RFC - Korn shell prompt | 
| Make bold chars in UNIX | 
| BSD Unix Toolbox: 1000+ Commands for FreeBSD, OpenBSD, and NetBSD |