• Home
  • Raw
  • Download

Lines Matching refs:SRC2

218 #define bitset_and(DST, SRC1, SRC2) BITSET_AND_ (DST, SRC1, SRC2)  argument
221 #define bitset_and_cmp(DST, SRC1, SRC2) BITSET_AND_CMP_ (DST, SRC1, SRC2) argument
224 #define bitset_andn(DST, SRC1, SRC2) BITSET_ANDN_ (DST, SRC1, SRC2) argument
227 #define bitset_andn_cmp(DST, SRC1, SRC2) BITSET_ANDN_CMP_ (DST, SRC1, SRC2) argument
230 #define bitset_or(DST, SRC1, SRC2) BITSET_OR_ (DST, SRC1, SRC2) argument
233 #define bitset_or_cmp(DST, SRC1, SRC2) BITSET_OR_CMP_ (DST, SRC1, SRC2) argument
236 #define bitset_xor(DST, SRC1, SRC2) BITSET_XOR_ (DST, SRC1, SRC2) argument
239 #define bitset_xor_cmp(DST, SRC1, SRC2) BITSET_XOR_CMP_ (DST, SRC1, SRC2) argument
244 #define bitset_and_or(DST, SRC1, SRC2, SRC3) \ argument
245 BITSET_AND_OR_ (DST, SRC1, SRC2, SRC3)
249 #define bitset_and_or_cmp(DST, SRC1, SRC2, SRC3) \ argument
250 BITSET_AND_OR_CMP_ (DST, SRC1, SRC2, SRC3)
253 #define bitset_andn_or(DST, SRC1, SRC2, SRC3) \ argument
254 BITSET_ANDN_OR_ (DST, SRC1, SRC2, SRC3)
258 #define bitset_andn_or_cmp(DST, SRC1, SRC2, SRC3) \ argument
259 BITSET_ANDN_OR_CMP_ (DST, SRC1, SRC2, SRC3)
262 #define bitset_or_and(DST, SRC1, SRC2, SRC3)\ argument
263 BITSET_OR_AND_ (DST, SRC1, SRC2, SRC3)
267 #define bitset_or_and_cmp(DST, SRC1, SRC2, SRC3)\ argument
268 BITSET_OR_AND_CMP_ (DST, SRC1, SRC2, SRC3)
349 #define bitset_diff(DST, SRC1, SRC2) bitset_andn (DST, SRC1, SRC2) argument
350 #define bitset_diff_cmp(DST, SRC1, SRC2) bitset_andn_cmp (DST, SRC1, SRC2) argument
352 #define bitset_intersection(DST, SRC1, SRC2) bitset_and (DST, SRC1, SRC2) argument
353 #define bitset_intersection_cmp(DST, SRC1, SRC2) bitset_and_cmp (DST, SRC1, SRC2) argument
355 #define bitset_union(DST, SRC1, SRC2) bitset_or (DST, SRC1, SRC2) argument
356 #define bitset_union_cmp(DST, SRC1, SRC2) bitset_or_cmp (DST, SRC1, SRC2) argument
359 #define bitset_symdiff(DST, SRC1, SRC2) bitset_xor (DST, SRC1, SRC2) argument
360 #define bitset_symdiff_cmp(DST, SRC1, SRC2) bitset_xor_cmp (DST, SRC1, SRC2) argument
363 #define bitset_diff_union(DST, SRC1, SRC2, SRC3) \ argument
364 bitset_andn_or (DST, SRC1, SRC2, SRC3)
365 #define bitset_diff_union_cmp(DST, SRC1, SRC2, SRC3) \ argument
366 bitset_andn_or_cmp (DST, SRC1, SRC2, SRC3)