• Home
  • Raw
  • Download

Lines Matching refs:SRC1

217 #define bitset_and(DST, SRC1, SRC2) BITSET_AND_ (DST, SRC1, SRC2)  argument
220 #define bitset_and_cmp(DST, SRC1, SRC2) BITSET_AND_CMP_ (DST, SRC1, SRC2) argument
223 #define bitset_andn(DST, SRC1, SRC2) BITSET_ANDN_ (DST, SRC1, SRC2) argument
226 #define bitset_andn_cmp(DST, SRC1, SRC2) BITSET_ANDN_CMP_ (DST, SRC1, SRC2) argument
229 #define bitset_or(DST, SRC1, SRC2) BITSET_OR_ (DST, SRC1, SRC2) argument
232 #define bitset_or_cmp(DST, SRC1, SRC2) BITSET_OR_CMP_ (DST, SRC1, SRC2) argument
235 #define bitset_xor(DST, SRC1, SRC2) BITSET_XOR_ (DST, SRC1, SRC2) argument
238 #define bitset_xor_cmp(DST, SRC1, SRC2) BITSET_XOR_CMP_ (DST, SRC1, SRC2) argument
243 #define bitset_and_or(DST, SRC1, SRC2, SRC3) \ argument
244 BITSET_AND_OR_ (DST, SRC1, SRC2, SRC3)
248 #define bitset_and_or_cmp(DST, SRC1, SRC2, SRC3) \ argument
249 BITSET_AND_OR_CMP_ (DST, SRC1, SRC2, SRC3)
252 #define bitset_andn_or(DST, SRC1, SRC2, SRC3) \ argument
253 BITSET_ANDN_OR_ (DST, SRC1, SRC2, SRC3)
257 #define bitset_andn_or_cmp(DST, SRC1, SRC2, SRC3) \ argument
258 BITSET_ANDN_OR_CMP_ (DST, SRC1, SRC2, SRC3)
261 #define bitset_or_and(DST, SRC1, SRC2, SRC3)\ argument
262 BITSET_OR_AND_ (DST, SRC1, SRC2, SRC3)
266 #define bitset_or_and_cmp(DST, SRC1, SRC2, SRC3)\ argument
267 BITSET_OR_AND_CMP_ (DST, SRC1, SRC2, SRC3)
348 #define bitset_diff(DST, SRC1, SRC2) bitset_andn (DST, SRC1, SRC2) argument
349 #define bitset_diff_cmp(DST, SRC1, SRC2) bitset_andn_cmp (DST, SRC1, SRC2) argument
351 #define bitset_intersection(DST, SRC1, SRC2) bitset_and (DST, SRC1, SRC2) argument
352 #define bitset_intersection_cmp(DST, SRC1, SRC2) bitset_and_cmp (DST, SRC1, SRC2) argument
354 #define bitset_union(DST, SRC1, SRC2) bitset_or (DST, SRC1, SRC2) argument
355 #define bitset_union_cmp(DST, SRC1, SRC2) bitset_or_cmp (DST, SRC1, SRC2) argument
358 #define bitset_symdiff(DST, SRC1, SRC2) bitset_xor (DST, SRC1, SRC2) argument
359 #define bitset_symdiff_cmp(DST, SRC1, SRC2) bitset_xor_cmp (DST, SRC1, SRC2) argument
362 #define bitset_diff_union(DST, SRC1, SRC2, SRC3) \ argument
363 bitset_andn_or (DST, SRC1, SRC2, SRC3)
364 #define bitset_diff_union_cmp(DST, SRC1, SRC2, SRC3) \ argument
365 bitset_andn_or_cmp (DST, SRC1, SRC2, SRC3)