• Home
  • Raw
  • Download

Lines Matching refs:DST

161 #define BITSET_CHECK2_(DST, SRC) \  argument
162 if (!BITSET_COMPATIBLE_ (DST, SRC)) abort ();
164 #define BITSET_CHECK3_(DST, SRC1, SRC2) \ argument
165 if (!BITSET_COMPATIBLE_ (DST, SRC1) \
166 || !BITSET_COMPATIBLE_ (DST, SRC2)) abort ();
168 #define BITSET_CHECK4_(DST, SRC1, SRC2, SRC3) \ argument
169 if (!BITSET_COMPATIBLE_ (DST, SRC1) || !BITSET_COMPATIBLE_ (DST, SRC2) \
170 || !BITSET_COMPATIBLE_ (DST, SRC3)) abort ();
174 #define BITSET_RESIZE_(DST, SIZE) (DST)->b.vtable->resize (DST, SIZE) argument
183 #define BITSET_TYPE_(DST) (DST)->b.vtable->type argument
186 #define BITSET_SET_(DST, BITNO) (DST)->b.vtable->set (DST, BITNO) argument
189 #define BITSET_RESET_(DST, BITNO) (DST)->b.vtable->reset (DST, BITNO) argument
192 #define BITSET_TOGGLE_(DST, BITNO) (DST)->b.vtable->toggle (DST, BITNO) argument
206 #define BITSET_ONES_(DST) (DST)->b.vtable->ones (DST) argument
209 #define BITSET_ZERO_(DST) (DST)->b.vtable->zero (DST) argument
214 #define BITSET_COPY_(DST, SRC) (SRC)->b.vtable->copy (DST, SRC) argument
217 #define BITSET_DISJOINT_P_(DST, SRC) (SRC)->b.vtable->disjoint_p (DST, SRC) argument
220 #define BITSET_EQUAL_P_(DST, SRC) (SRC)->b.vtable->equal_p (DST, SRC) argument
223 #define BITSET_NOT_(DST, SRC) (SRC)->b.vtable->not_ (DST, SRC) argument
226 #define BITSET_SUBSET_P_(DST, SRC) (SRC)->b.vtable->subset_p (DST, SRC) argument
230 #define BITSET_AND_(DST, SRC1, SRC2) (SRC1)->b.vtable->and_ (DST, SRC1, SRC2) argument
231 #define BITSET_AND_CMP_(DST, SRC1, SRC2) (SRC1)->b.vtable->and_cmp (DST, SRC1, SRC2) argument
234 #define BITSET_ANDN_(DST, SRC1, SRC2) (SRC1)->b.vtable->andn (DST, SRC1, SRC2) argument
235 #define BITSET_ANDN_CMP_(DST, SRC1, SRC2) (SRC1)->b.vtable->andn_cmp (DST, SRC1, SRC2) argument
238 #define BITSET_OR_(DST, SRC1, SRC2) (SRC1)->b.vtable->or_ (DST, SRC1, SRC2) argument
239 #define BITSET_OR_CMP_(DST, SRC1, SRC2) (SRC1)->b.vtable->or_cmp (DST, SRC1, SRC2) argument
242 #define BITSET_XOR_(DST, SRC1, SRC2) (SRC1)->b.vtable->xor_ (DST, SRC1, SRC2) argument
243 #define BITSET_XOR_CMP_(DST, SRC1, SRC2) (SRC1)->b.vtable->xor_cmp (DST, SRC1, SRC2) argument
249 #define BITSET_AND_OR_(DST, SRC1, SRC2, SRC3) \ argument
250 (SRC1)->b.vtable->and_or (DST, SRC1, SRC2, SRC3)
251 #define BITSET_AND_OR_CMP_(DST, SRC1, SRC2, SRC3) \ argument
252 (SRC1)->b.vtable->and_or_cmp (DST, SRC1, SRC2, SRC3)
256 #define BITSET_ANDN_OR_(DST, SRC1, SRC2, SRC3) \ argument
257 (SRC1)->b.vtable->andn_or (DST, SRC1, SRC2, SRC3)
258 #define BITSET_ANDN_OR_CMP_(DST, SRC1, SRC2, SRC3) \ argument
259 (SRC1)->b.vtable->andn_or_cmp (DST, SRC1, SRC2, SRC3)
263 #define BITSET_OR_AND_(DST, SRC1, SRC2, SRC3) \ argument
264 (SRC1)->b.vtable->or_and (DST, SRC1, SRC2, SRC3)
265 #define BITSET_OR_AND_CMP_(DST, SRC1, SRC2, SRC3) \ argument
266 (SRC1)->b.vtable->or_and_cmp (DST, SRC1, SRC2, SRC3)