Lines Matching refs:dstp

128 static __always_inline void __node_set(int node, volatile nodemask_t *dstp)  in __node_set()  argument
130 set_bit(node, dstp->bits); in __node_set()
134 static inline void __node_clear(int node, volatile nodemask_t *dstp) in __node_clear() argument
136 clear_bit(node, dstp->bits); in __node_clear()
140 static inline void __nodes_setall(nodemask_t *dstp, unsigned int nbits) in __nodes_setall() argument
142 bitmap_fill(dstp->bits, nbits); in __nodes_setall()
146 static inline void __nodes_clear(nodemask_t *dstp, unsigned int nbits) in __nodes_clear() argument
148 bitmap_zero(dstp->bits, nbits); in __nodes_clear()
163 static inline void __nodes_and(nodemask_t *dstp, const nodemask_t *src1p, in __nodes_and() argument
166 bitmap_and(dstp->bits, src1p->bits, src2p->bits, nbits); in __nodes_and()
171 static inline void __nodes_or(nodemask_t *dstp, const nodemask_t *src1p, in __nodes_or() argument
174 bitmap_or(dstp->bits, src1p->bits, src2p->bits, nbits); in __nodes_or()
179 static inline void __nodes_xor(nodemask_t *dstp, const nodemask_t *src1p, in __nodes_xor() argument
182 bitmap_xor(dstp->bits, src1p->bits, src2p->bits, nbits); in __nodes_xor()
187 static inline void __nodes_andnot(nodemask_t *dstp, const nodemask_t *src1p, in __nodes_andnot() argument
190 bitmap_andnot(dstp->bits, src1p->bits, src2p->bits, nbits); in __nodes_andnot()
195 static inline void __nodes_complement(nodemask_t *dstp, in __nodes_complement() argument
198 bitmap_complement(dstp->bits, srcp->bits, nbits); in __nodes_complement()
245 static inline void __nodes_shift_right(nodemask_t *dstp, in __nodes_shift_right() argument
248 bitmap_shift_right(dstp->bits, srcp->bits, n, nbits); in __nodes_shift_right()
253 static inline void __nodes_shift_left(nodemask_t *dstp, in __nodes_shift_left() argument
256 bitmap_shift_left(dstp->bits, srcp->bits, n, nbits); in __nodes_shift_left()
334 nodemask_t *dstp, int nbits) in __nodemask_parse_user() argument
336 return bitmap_parse_user(buf, len, dstp->bits, nbits); in __nodemask_parse_user()
340 static inline int __nodelist_parse(const char *buf, nodemask_t *dstp, int nbits) in __nodelist_parse() argument
342 return bitmap_parselist(buf, dstp->bits, nbits); in __nodelist_parse()
355 static inline void __nodes_remap(nodemask_t *dstp, const nodemask_t *srcp, in __nodes_remap() argument
358 bitmap_remap(dstp->bits, srcp->bits, oldp->bits, newp->bits, nbits); in __nodes_remap()
363 static inline void __nodes_onto(nodemask_t *dstp, const nodemask_t *origp, in __nodes_onto() argument
366 bitmap_onto(dstp->bits, origp->bits, relmapp->bits, nbits); in __nodes_onto()
371 static inline void __nodes_fold(nodemask_t *dstp, const nodemask_t *origp, in __nodes_fold() argument
374 bitmap_fold(dstp->bits, origp->bits, sz, nbits); in __nodes_fold()