Home | History | Annotate | Download | only in lib

Lines Matching refs:vtable

89   const struct bitset_vtable *vtable;
106 #define BITSET_VTABLE_(SRC) (SRC)->b.vtable
159 ((BSET1)->b.vtable == (BSET2)->b.vtable)
174 #define BITSET_RESIZE_(DST, SIZE) (DST)->b.vtable->resize (DST, SIZE)
177 #define BITSET_SIZE_(SRC) (SRC)->b.vtable->size (SRC)
180 #define BITSET_COUNT_(SRC) (SRC)->b.vtable->count (SRC)
183 #define BITSET_TYPE_(DST) (DST)->b.vtable->type
186 #define BITSET_SET_(DST, BITNO) (DST)->b.vtable->set (DST, BITNO)
189 #define BITSET_RESET_(DST, BITNO) (DST)->b.vtable->reset (DST, BITNO)
192 #define BITSET_TOGGLE_(DST, BITNO) (DST)->b.vtable->toggle (DST, BITNO)
195 #define BITSET_TEST_(SRC, BITNO) (SRC)->b.vtable->test (SRC, BITNO)
199 ((SRC)->b.vtable->free ? (SRC)->b.vtable->free (SRC) :(void)0)
203 #define BITSET_EMPTY_P_(SRC) (SRC)->b.vtable->empty_p (SRC)
206 #define BITSET_ONES_(DST) (DST)->b.vtable->ones (DST)
209 #define BITSET_ZERO_(DST) (DST)->b.vtable->zero (DST)
214 #define BITSET_COPY_(DST, SRC) (SRC)->b.vtable->copy (DST, SRC)
217 #define BITSET_DISJOINT_P_(DST, SRC) (SRC)->b.vtable->disjoint_p (DST, SRC)
220 #define BITSET_EQUAL_P_(DST, SRC) (SRC)->b.vtable->equal_p (DST, SRC)
223 #define BITSET_NOT_(DST, SRC) (SRC)->b.vtable->not_ (DST, SRC)
226 #define BITSET_SUBSET_P_(DST, SRC) (SRC)->b.vtable->subset_p (DST, SRC)
230 #define BITSET_AND_(DST, SRC1, SRC2) (SRC1)->b.vtable->and_ (DST, SRC1, SRC2)
231 #define BITSET_AND_CMP_(DST, SRC1, SRC2) (SRC1)->b.vtable->and_cmp (DST, SRC1, SRC2)
234 #define BITSET_ANDN_(DST, SRC1, SRC2) (SRC1)->b.vtable->andn (DST, SRC1, SRC2)
235 #define BITSET_ANDN_CMP_(DST, SRC1, SRC2) (SRC1)->b.vtable->andn_cmp (DST, SRC1, SRC2)
238 #define BITSET_OR_(DST, SRC1, SRC2) (SRC1)->b.vtable->or_ (DST, SRC1, SRC2)
239 #define BITSET_OR_CMP_(DST, SRC1, SRC2) (SRC1)->b.vtable->or_cmp (DST, SRC1, SRC2)
242 #define BITSET_XOR_(DST, SRC1, SRC2) (SRC1)->b.vtable->xor_ (DST, SRC1, SRC2)
243 #define BITSET_XOR_CMP_(DST, SRC1, SRC2) (SRC1)->b.vtable->xor_cmp (DST, SRC1, SRC2)
250 (SRC1)->b.vtable->and_or (DST, SRC1, SRC2, SRC3)
252 (SRC1)->b.vtable->and_or_cmp (DST, SRC1, SRC2, SRC3)
257 (SRC1)->b.vtable->andn_or (DST, SRC1, SRC2, SRC3)
259 (SRC1)->b.vtable->andn_or_cmp (DST, SRC1, SRC2, SRC3)
264 (SRC1)->b.vtable->or_and (DST, SRC1, SRC2, SRC3)
266 (SRC1)->b.vtable->or_and_cmp (DST, SRC1, SRC2, SRC3)
273 (BSET)->b.vtable->list (BSET, LIST, NUM, NEXT)
279 (BSET)->b.vtable->list_reverse (BSET, LIST, NUM, NEXT)