Lines Matching refs:dstp
116 static __always_inline void __node_set(int node, volatile nodemask_t *dstp) in __node_set() argument
118 set_bit(node, dstp->bits); in __node_set()
122 static inline void __node_clear(int node, volatile nodemask_t *dstp) in __node_clear() argument
124 clear_bit(node, dstp->bits); in __node_clear()
128 static inline void __nodes_setall(nodemask_t *dstp, unsigned int nbits) in __nodes_setall() argument
130 bitmap_fill(dstp->bits, nbits); in __nodes_setall()
134 static inline void __nodes_clear(nodemask_t *dstp, unsigned int nbits) in __nodes_clear() argument
136 bitmap_zero(dstp->bits, nbits); in __nodes_clear()
151 static inline void __nodes_and(nodemask_t *dstp, const nodemask_t *src1p, in __nodes_and() argument
154 bitmap_and(dstp->bits, src1p->bits, src2p->bits, nbits); in __nodes_and()
159 static inline void __nodes_or(nodemask_t *dstp, const nodemask_t *src1p, in __nodes_or() argument
162 bitmap_or(dstp->bits, src1p->bits, src2p->bits, nbits); in __nodes_or()
167 static inline void __nodes_xor(nodemask_t *dstp, const nodemask_t *src1p, in __nodes_xor() argument
170 bitmap_xor(dstp->bits, src1p->bits, src2p->bits, nbits); in __nodes_xor()
175 static inline void __nodes_andnot(nodemask_t *dstp, const nodemask_t *src1p, in __nodes_andnot() argument
178 bitmap_andnot(dstp->bits, src1p->bits, src2p->bits, nbits); in __nodes_andnot()
183 static inline void __nodes_complement(nodemask_t *dstp, in __nodes_complement() argument
186 bitmap_complement(dstp->bits, srcp->bits, nbits); in __nodes_complement()
233 static inline void __nodes_shift_right(nodemask_t *dstp, in __nodes_shift_right() argument
236 bitmap_shift_right(dstp->bits, srcp->bits, n, nbits); in __nodes_shift_right()
241 static inline void __nodes_shift_left(nodemask_t *dstp, in __nodes_shift_left() argument
244 bitmap_shift_left(dstp->bits, srcp->bits, n, nbits); in __nodes_shift_left()
315 nodemask_t *dstp, int nbits) in __nodemask_parse_user() argument
317 return bitmap_parse_user(buf, len, dstp->bits, nbits); in __nodemask_parse_user()
321 static inline int __nodelist_parse(const char *buf, nodemask_t *dstp, int nbits) in __nodelist_parse() argument
323 return bitmap_parselist(buf, dstp->bits, nbits); in __nodelist_parse()
336 static inline void __nodes_remap(nodemask_t *dstp, const nodemask_t *srcp, in __nodes_remap() argument
339 bitmap_remap(dstp->bits, srcp->bits, oldp->bits, newp->bits, nbits); in __nodes_remap()
344 static inline void __nodes_onto(nodemask_t *dstp, const nodemask_t *origp, in __nodes_onto() argument
347 bitmap_onto(dstp->bits, origp->bits, relmapp->bits, nbits); in __nodes_onto()
352 static inline void __nodes_fold(nodemask_t *dstp, const nodemask_t *origp, in __nodes_fold() argument
355 bitmap_fold(dstp->bits, origp->bits, sz, nbits); in __nodes_fold()