Home | History | Annotate | Download | only in linux

Lines Matching refs:dst

27  * void nodes_and(dst, src1, src2)	dst = src1 & src2  [intersection]
28 * void nodes_or(dst, src1, src2) dst = src1 | src2 [union]
29 * void nodes_xor(dst, src1, src2) dst = src1 ^ src2
30 * void nodes_andnot(dst, src1, src2) dst = src1 & ~src2
31 * void nodes_complement(dst, src) dst = ~src
40 * void nodes_shift_right(dst, src, n) Shift right
41 * void nodes_shift_left(dst, src, n) Shift left
58 * int nodes_remap(dst, src, old, new) *dst = map(old, new)(dst)
91 #define node_set(node, dst) __node_set((node), &(dst))
97 #define node_clear(node, dst) __node_clear((node), &(dst))
103 #define nodes_setall(dst) __nodes_setall(&(dst), MAX_NUMNODES)
109 #define nodes_clear(dst) __nodes_clear(&(dst), MAX_NUMNODES)
125 #define nodes_and(dst, src1, src2) \
126 __nodes_and(&(dst), &(src1), &(src2), MAX_NUMNODES)
133 #define nodes_or(dst, src1, src2) \
134 __nodes_or(&(dst), &(src1), &(src2), MAX_NUMNODES)
141 #define nodes_xor(dst, src1, src2) \
142 __nodes_xor(&(dst), &(src1), &(src2), MAX_NUMNODES)
149 #define nodes_andnot(dst, src1, src2) \
150 __nodes_andnot(&(dst), &(src1), &(src2), MAX_NUMNODES)
157 #define nodes_complement(dst, src) \
158 __nodes_complement(&(dst), &(src), MAX_NUMNODES)
207 #define nodes_shift_right(dst, src, n) \
208 __nodes_shift_right(&(dst), &(src), (n), MAX_NUMNODES)
215 #define nodes_shift_left(dst, src, n) \
216 __nodes_shift_left(&(dst), &(src), (n), MAX_NUMNODES)
291 #define nodemask_parse(ubuf, ulen, dst) \
292 __nodemask_parse((ubuf), (ulen), &(dst), MAX_NUMNODES)
307 #define nodelist_parse(buf, dst) __nodelist_parse((buf), &(dst), MAX_NUMNODES)
321 #define nodes_remap(dst, src, old, new) \
322 __nodes_remap(&(dst), &(src), &(old), &(new), MAX_NUMNODES)