Searched refs:nbits (Results 1 – 5 of 5) sorted by relevance
/include/linux/ |
D | bitmap.h | 124 const unsigned long *src, int nbits); 126 unsigned long *dst, int nbits); 128 unsigned long *dst, int nbits); 130 const unsigned long *src, int nbits); 134 unsigned long *dst, int nbits); 146 extern void bitmap_copy_le(void *dst, const unsigned long *src, int nbits); 150 #define BITMAP_LAST_WORD_MASK(nbits) \ argument 152 ((nbits) % BITS_PER_LONG) ? \ 153 (1UL<<((nbits) % BITS_PER_LONG))-1 : ~0UL \ 156 #define small_const_nbits(nbits) \ argument [all …]
|
D | nodemask.h | 114 static inline void __nodes_setall(nodemask_t *dstp, int nbits) in __nodes_setall() argument 116 bitmap_fill(dstp->bits, nbits); in __nodes_setall() 120 static inline void __nodes_clear(nodemask_t *dstp, int nbits) in __nodes_clear() argument 122 bitmap_zero(dstp->bits, nbits); in __nodes_clear() 138 const nodemask_t *src2p, int nbits) in __nodes_and() argument 140 bitmap_and(dstp->bits, src1p->bits, src2p->bits, nbits); in __nodes_and() 146 const nodemask_t *src2p, int nbits) in __nodes_or() argument 148 bitmap_or(dstp->bits, src1p->bits, src2p->bits, nbits); in __nodes_or() 154 const nodemask_t *src2p, int nbits) in __nodes_xor() argument 156 bitmap_xor(dstp->bits, src1p->bits, src2p->bits, nbits); in __nodes_xor() [all …]
|
D | cpumask.h | 846 static inline void __cpus_setall(cpumask_t *dstp, int nbits) in __cpus_setall() argument 848 bitmap_fill(dstp->bits, nbits); in __cpus_setall() 852 static inline void __cpus_clear(cpumask_t *dstp, int nbits) in __cpus_clear() argument 854 bitmap_zero(dstp->bits, nbits); in __cpus_clear() 868 const cpumask_t *src2p, int nbits) in __cpus_and() argument 870 return bitmap_and(dstp->bits, src1p->bits, src2p->bits, nbits); in __cpus_and() 875 const cpumask_t *src2p, int nbits) in __cpus_or() argument 877 bitmap_or(dstp->bits, src1p->bits, src2p->bits, nbits); in __cpus_or() 882 const cpumask_t *src2p, int nbits) in __cpus_xor() argument 884 bitmap_xor(dstp->bits, src1p->bits, src2p->bits, nbits); in __cpus_xor() [all …]
|
D | mpi.h | 50 int nbits; /* the real number of valid bits (info only) */ member 78 MPI do_encode_md(const void *sha_buffer, unsigned nbits);
|
D | isdn.h | 526 int nbits; /* Number of used bits in streambyte */ member
|