Lines Matching refs:dstp
129 static __always_inline void __node_set(int node, volatile nodemask_t *dstp) in __node_set() argument
131 set_bit(node, dstp->bits); in __node_set()
135 static inline void __node_clear(int node, volatile nodemask_t *dstp) in __node_clear() argument
137 clear_bit(node, dstp->bits); in __node_clear()
141 static inline void __nodes_setall(nodemask_t *dstp, unsigned int nbits) in __nodes_setall() argument
143 bitmap_fill(dstp->bits, nbits); in __nodes_setall()
147 static inline void __nodes_clear(nodemask_t *dstp, unsigned int nbits) in __nodes_clear() argument
149 bitmap_zero(dstp->bits, nbits); in __nodes_clear()
164 static inline void __nodes_and(nodemask_t *dstp, const nodemask_t *src1p, in __nodes_and() argument
167 bitmap_and(dstp->bits, src1p->bits, src2p->bits, nbits); in __nodes_and()
172 static inline void __nodes_or(nodemask_t *dstp, const nodemask_t *src1p, in __nodes_or() argument
175 bitmap_or(dstp->bits, src1p->bits, src2p->bits, nbits); in __nodes_or()
180 static inline void __nodes_xor(nodemask_t *dstp, const nodemask_t *src1p, in __nodes_xor() argument
183 bitmap_xor(dstp->bits, src1p->bits, src2p->bits, nbits); in __nodes_xor()
188 static inline void __nodes_andnot(nodemask_t *dstp, const nodemask_t *src1p, in __nodes_andnot() argument
191 bitmap_andnot(dstp->bits, src1p->bits, src2p->bits, nbits); in __nodes_andnot()
196 static inline void __nodes_complement(nodemask_t *dstp, in __nodes_complement() argument
199 bitmap_complement(dstp->bits, srcp->bits, nbits); in __nodes_complement()
246 static inline void __nodes_shift_right(nodemask_t *dstp, in __nodes_shift_right() argument
249 bitmap_shift_right(dstp->bits, srcp->bits, n, nbits); in __nodes_shift_right()
254 static inline void __nodes_shift_left(nodemask_t *dstp, in __nodes_shift_left() argument
257 bitmap_shift_left(dstp->bits, srcp->bits, n, nbits); in __nodes_shift_left()
342 nodemask_t *dstp, int nbits) in __nodemask_parse_user() argument
344 return bitmap_parse_user(buf, len, dstp->bits, nbits); in __nodemask_parse_user()
348 static inline int __nodelist_parse(const char *buf, nodemask_t *dstp, int nbits) in __nodelist_parse() argument
350 return bitmap_parselist(buf, dstp->bits, nbits); in __nodelist_parse()
363 static inline void __nodes_remap(nodemask_t *dstp, const nodemask_t *srcp, in __nodes_remap() argument
366 bitmap_remap(dstp->bits, srcp->bits, oldp->bits, newp->bits, nbits); in __nodes_remap()
371 static inline void __nodes_onto(nodemask_t *dstp, const nodemask_t *origp, in __nodes_onto() argument
374 bitmap_onto(dstp->bits, origp->bits, relmapp->bits, nbits); in __nodes_onto()
379 static inline void __nodes_fold(nodemask_t *dstp, const nodemask_t *origp, in __nodes_fold() argument
382 bitmap_fold(dstp->bits, origp->bits, sz, nbits); in __nodes_fold()