Lines Matching refs:src1p
160 static __always_inline void __nodes_and(nodemask_t *dstp, const nodemask_t *src1p, in __nodes_and() argument
163 bitmap_and(dstp->bits, src1p->bits, src2p->bits, nbits); in __nodes_and()
168 static __always_inline void __nodes_or(nodemask_t *dstp, const nodemask_t *src1p, in __nodes_or() argument
171 bitmap_or(dstp->bits, src1p->bits, src2p->bits, nbits); in __nodes_or()
176 static __always_inline void __nodes_xor(nodemask_t *dstp, const nodemask_t *src1p, in __nodes_xor() argument
179 bitmap_xor(dstp->bits, src1p->bits, src2p->bits, nbits); in __nodes_xor()
184 static __always_inline void __nodes_andnot(nodemask_t *dstp, const nodemask_t *src1p, in __nodes_andnot() argument
187 bitmap_andnot(dstp->bits, src1p->bits, src2p->bits, nbits); in __nodes_andnot()
207 static __always_inline bool __nodes_equal(const nodemask_t *src1p, in __nodes_equal() argument
210 return bitmap_equal(src1p->bits, src2p->bits, nbits); in __nodes_equal()
215 static __always_inline bool __nodes_intersects(const nodemask_t *src1p, in __nodes_intersects() argument
218 return bitmap_intersects(src1p->bits, src2p->bits, nbits); in __nodes_intersects()
223 static __always_inline bool __nodes_subset(const nodemask_t *src1p, in __nodes_subset() argument
226 return bitmap_subset(src1p->bits, src2p->bits, nbits); in __nodes_subset()