Lines Matching refs:src2p

506   bitset_word *src2p;  in vbitset_and()  local
519 src2p = VBITSET_WORDS (src2); in vbitset_and()
522 *dstp++ = *src1p++ & *src2p++; in vbitset_and()
534 bitset_word *src2p; in vbitset_and_cmp() local
547 src2p = VBITSET_WORDS (src2); in vbitset_and_cmp()
551 bitset_word tmp = *src1p++ & *src2p++; in vbitset_and_cmp()
562 src1p = src2p; in vbitset_and_cmp()
586 bitset_word *src2p; in vbitset_andn() local
599 src2p = VBITSET_WORDS (src2); in vbitset_andn()
602 *dstp++ = *src1p++ & ~(*src2p++); in vbitset_andn()
627 bitset_word *src2p; in vbitset_andn_cmp() local
640 src2p = VBITSET_WORDS (src2); in vbitset_andn_cmp()
644 bitset_word tmp = *src1p++ & ~(*src2p++); in vbitset_andn_cmp()
691 bitset_word *src2p; in vbitset_or() local
704 src2p = VBITSET_WORDS (src2); in vbitset_or()
707 *dstp++ = *src1p++ | *src2p++; in vbitset_or()
711 src1p = src2p; in vbitset_or()
728 bitset_word *src2p; in vbitset_or_cmp() local
741 src2p = VBITSET_WORDS (src2); in vbitset_or_cmp()
745 bitset_word tmp = *src1p++ | *src2p++; in vbitset_or_cmp()
756 src1p = src2p; in vbitset_or_cmp()
782 bitset_word *src2p; in vbitset_xor() local
795 src2p = VBITSET_WORDS (src2); in vbitset_xor()
798 *dstp++ = *src1p++ ^ *src2p++; in vbitset_xor()
802 src1p = src2p; in vbitset_xor()
819 bitset_word *src2p; in vbitset_xor_cmp() local
832 src2p = VBITSET_WORDS (src2); in vbitset_xor_cmp()
836 bitset_word tmp = *src1p++ ^ *src2p++; in vbitset_xor_cmp()
847 src1p = src2p; in vbitset_xor_cmp()
876 bitset_word *src2p; in vbitset_and_or() local
891 src2p = VBITSET_WORDS (src2); in vbitset_and_or()
897 *dstp++ = (*src1p++ & *src2p++) | *src3p++; in vbitset_and_or()
907 bitset_word *src2p; in vbitset_and_or_cmp() local
919 src2p = VBITSET_WORDS (src2); in vbitset_and_or_cmp()
926 bitset_word tmp = (*src1p++ & *src2p++) | *src3p++; in vbitset_and_or_cmp()
943 bitset_word *src2p; in vbitset_andn_or() local
958 src2p = VBITSET_WORDS (src2); in vbitset_andn_or()
964 *dstp++ = (*src1p++ & ~(*src2p++)) | *src3p++; in vbitset_andn_or()
974 bitset_word *src2p; in vbitset_andn_or_cmp() local
986 src2p = VBITSET_WORDS (src2); in vbitset_andn_or_cmp()
993 bitset_word tmp = (*src1p++ & ~(*src2p++)) | *src3p++; in vbitset_andn_or_cmp()
1010 bitset_word *src2p; in vbitset_or_and() local
1025 src2p = VBITSET_WORDS (src2); in vbitset_or_and()
1031 *dstp++ = (*src1p++ | *src2p++) & *src3p++; in vbitset_or_and()
1041 bitset_word *src2p; in vbitset_or_and_cmp() local
1053 src2p = VBITSET_WORDS (src2); in vbitset_or_and_cmp()
1060 bitset_word tmp = (*src1p++ | *src2p++) & *src3p++; in vbitset_or_and_cmp()