• Home
  • Raw
  • Download

Lines Matching refs:bitset_word

55   bitset_word word;  in abitset_small_list()
151 bitset_word *srcp = ABITSET_WORDS (src); in abitset_list_reverse()
172 bitset_word word; in abitset_list_reverse()
210 bitset_word *srcp = ABITSET_WORDS (src); in abitset_list()
211 bitset_word word; in abitset_list()
310 ((bitset_word) 1 << last_bit) - 1; in abitset_unused_clear()
317 bitset_word *dstp = ABITSET_WORDS (dst); in abitset_ones()
320 bytes = sizeof (bitset_word) * dst->b.csize; in abitset_ones()
330 bitset_word *dstp = ABITSET_WORDS (dst); in abitset_zero()
333 bytes = sizeof (bitset_word) * dst->b.csize; in abitset_zero()
343 bitset_word *dstp = ABITSET_WORDS (dst); in abitset_empty_p()
356 bitset_word *srcp = ABITSET_WORDS (src); in abitset_copy1()
357 bitset_word *dstp = ABITSET_WORDS (dst); in abitset_copy1()
362 memcpy (dstp, srcp, sizeof (bitset_word) * size); in abitset_copy1()
370 bitset_word *srcp = ABITSET_WORDS (src); in abitset_not()
371 bitset_word *dstp = ABITSET_WORDS (dst); in abitset_not()
384 bitset_word *srcp = ABITSET_WORDS (src); in abitset_equal_p()
385 bitset_word *dstp = ABITSET_WORDS (dst); in abitset_equal_p()
399 bitset_word *srcp = ABITSET_WORDS (src); in abitset_subset_p()
400 bitset_word *dstp = ABITSET_WORDS (dst); in abitset_subset_p()
414 bitset_word *srcp = ABITSET_WORDS (src); in abitset_disjoint_p()
415 bitset_word *dstp = ABITSET_WORDS (dst); in abitset_disjoint_p()
430 bitset_word *src1p = ABITSET_WORDS (src1); in abitset_and()
431 bitset_word *src2p = ABITSET_WORDS (src2); in abitset_and()
432 bitset_word *dstp = ABITSET_WORDS (dst); in abitset_and()
445 bitset_word *src1p = ABITSET_WORDS (src1); in abitset_and_cmp()
446 bitset_word *src2p = ABITSET_WORDS (src2); in abitset_and_cmp()
447 bitset_word *dstp = ABITSET_WORDS (dst); in abitset_and_cmp()
452 bitset_word tmp = *src1p++ & *src2p++; in abitset_and_cmp()
468 bitset_word *src1p = ABITSET_WORDS (src1); in abitset_andn()
469 bitset_word *src2p = ABITSET_WORDS (src2); in abitset_andn()
470 bitset_word *dstp = ABITSET_WORDS (dst); in abitset_andn()
483 bitset_word *src1p = ABITSET_WORDS (src1); in abitset_andn_cmp()
484 bitset_word *src2p = ABITSET_WORDS (src2); in abitset_andn_cmp()
485 bitset_word *dstp = ABITSET_WORDS (dst); in abitset_andn_cmp()
490 bitset_word tmp = *src1p++ & ~(*src2p++); in abitset_andn_cmp()
506 bitset_word *src1p = ABITSET_WORDS (src1); in abitset_or()
507 bitset_word *src2p = ABITSET_WORDS (src2); in abitset_or()
508 bitset_word *dstp = ABITSET_WORDS (dst); in abitset_or()
521 bitset_word *src1p = ABITSET_WORDS (src1); in abitset_or_cmp()
522 bitset_word *src2p = ABITSET_WORDS (src2); in abitset_or_cmp()
523 bitset_word *dstp = ABITSET_WORDS (dst); in abitset_or_cmp()
528 bitset_word tmp = *src1p++ | *src2p++; in abitset_or_cmp()
544 bitset_word *src1p = ABITSET_WORDS (src1); in abitset_xor()
545 bitset_word *src2p = ABITSET_WORDS (src2); in abitset_xor()
546 bitset_word *dstp = ABITSET_WORDS (dst); in abitset_xor()
559 bitset_word *src1p = ABITSET_WORDS (src1); in abitset_xor_cmp()
560 bitset_word *src2p = ABITSET_WORDS (src2); in abitset_xor_cmp()
561 bitset_word *dstp = ABITSET_WORDS (dst); in abitset_xor_cmp()
566 bitset_word tmp = *src1p++ ^ *src2p++; in abitset_xor_cmp()
582 bitset_word *src1p = ABITSET_WORDS (src1); in abitset_and_or()
583 bitset_word *src2p = ABITSET_WORDS (src2); in abitset_and_or()
584 bitset_word *src3p = ABITSET_WORDS (src3); in abitset_and_or()
585 bitset_word *dstp = ABITSET_WORDS (dst); in abitset_and_or()
598 bitset_word *src1p = ABITSET_WORDS (src1); in abitset_and_or_cmp()
599 bitset_word *src2p = ABITSET_WORDS (src2); in abitset_and_or_cmp()
600 bitset_word *src3p = ABITSET_WORDS (src3); in abitset_and_or_cmp()
601 bitset_word *dstp = ABITSET_WORDS (dst); in abitset_and_or_cmp()
606 bitset_word tmp = (*src1p++ & *src2p++) | *src3p++; in abitset_and_or_cmp()
622 bitset_word *src1p = ABITSET_WORDS (src1); in abitset_andn_or()
623 bitset_word *src2p = ABITSET_WORDS (src2); in abitset_andn_or()
624 bitset_word *src3p = ABITSET_WORDS (src3); in abitset_andn_or()
625 bitset_word *dstp = ABITSET_WORDS (dst); in abitset_andn_or()
638 bitset_word *src1p = ABITSET_WORDS (src1); in abitset_andn_or_cmp()
639 bitset_word *src2p = ABITSET_WORDS (src2); in abitset_andn_or_cmp()
640 bitset_word *src3p = ABITSET_WORDS (src3); in abitset_andn_or_cmp()
641 bitset_word *dstp = ABITSET_WORDS (dst); in abitset_andn_or_cmp()
646 bitset_word tmp = (*src1p++ & ~(*src2p++)) | *src3p++; in abitset_andn_or_cmp()
662 bitset_word *src1p = ABITSET_WORDS (src1); in abitset_or_and()
663 bitset_word *src2p = ABITSET_WORDS (src2); in abitset_or_and()
664 bitset_word *src3p = ABITSET_WORDS (src3); in abitset_or_and()
665 bitset_word *dstp = ABITSET_WORDS (dst); in abitset_or_and()
678 bitset_word *src1p = ABITSET_WORDS (src1); in abitset_or_and_cmp()
679 bitset_word *src2p = ABITSET_WORDS (src2); in abitset_or_and_cmp()
680 bitset_word *src3p = ABITSET_WORDS (src3); in abitset_or_and_cmp()
681 bitset_word *dstp = ABITSET_WORDS (dst); in abitset_or_and_cmp()
686 bitset_word tmp = (*src1p++ | *src2p++) & *src3p++; in abitset_or_and_cmp()
794 bytes = header_size + size * sizeof (bitset_word); in abitset_bytes()
798 || sizeof (bitset_word) % bitset_alignment != 0) in abitset_bytes()