Lines Matching refs:src3p
877 bitset_word *src3p; in vbitset_and_or() local
892 src3p = VBITSET_WORDS (src3); in vbitset_and_or()
897 *dstp++ = (*src1p++ & *src2p++) | *src3p++; in vbitset_and_or()
908 bitset_word *src3p; in vbitset_and_or_cmp() local
920 src3p = VBITSET_WORDS (src3); in vbitset_and_or_cmp()
926 bitset_word tmp = (*src1p++ & *src2p++) | *src3p++; in vbitset_and_or_cmp()
944 bitset_word *src3p; in vbitset_andn_or() local
959 src3p = VBITSET_WORDS (src3); in vbitset_andn_or()
964 *dstp++ = (*src1p++ & ~(*src2p++)) | *src3p++; in vbitset_andn_or()
975 bitset_word *src3p; in vbitset_andn_or_cmp() local
987 src3p = VBITSET_WORDS (src3); in vbitset_andn_or_cmp()
993 bitset_word tmp = (*src1p++ & ~(*src2p++)) | *src3p++; in vbitset_andn_or_cmp()
1011 bitset_word *src3p; in vbitset_or_and() local
1026 src3p = VBITSET_WORDS (src3); in vbitset_or_and()
1031 *dstp++ = (*src1p++ | *src2p++) & *src3p++; in vbitset_or_and()
1042 bitset_word *src3p; in vbitset_or_and_cmp() local
1054 src3p = VBITSET_WORDS (src3); in vbitset_or_and_cmp()
1060 bitset_word tmp = (*src1p++ | *src2p++) & *src3p++; in vbitset_or_and_cmp()