Home | History | Annotate | Download | only in lib

Lines Matching refs:src1

1037 lbitset_op3_cmp (bitset dst, bitset src1, bitset src2, enum bitset_ops op)
1039 lbitset_elt *selt1 = LBITSET_HEAD (src1);
1195 lbitset_and_cmp (bitset dst, bitset src1, bitset src2)
1197 lbitset_elt *selt1 = LBITSET_HEAD (src1);
1215 return lbitset_op3_cmp (dst, src1, src2, BITSET_OP_AND);
1220 lbitset_and (bitset dst, bitset src1, bitset src2)
1222 lbitset_and_cmp (dst, src1, src2);
1227 lbitset_andn_cmp (bitset dst, bitset src1, bitset src2)
1229 lbitset_elt *selt1 = LBITSET_HEAD (src1);
1235 return lbitset_copy_cmp (dst, src1);
1244 return lbitset_op3_cmp (dst, src1, src2, BITSET_OP_ANDN);
1249 lbitset_andn (bitset dst, bitset src1, bitset src2)
1251 lbitset_andn_cmp (dst, src1, src2);
1256 lbitset_or_cmp (bitset dst, bitset src1, bitset src2)
1258 lbitset_elt *selt1 = LBITSET_HEAD (src1);
1263 return lbitset_copy_cmp (dst, src1);
1269 return lbitset_op3_cmp (dst, src1, src2, BITSET_OP_OR);
1274 lbitset_or (bitset dst, bitset src1, bitset src2)
1276 lbitset_or_cmp (dst, src1, src2);
1281 lbitset_xor_cmp (bitset dst, bitset src1, bitset src2)
1283 lbitset_elt *selt1 = LBITSET_HEAD (src1);
1288 return lbitset_copy_cmp (dst, src1);
1294 return lbitset_op3_cmp (dst, src1, src2, BITSET_OP_XOR);
1299 lbitset_xor (bitset dst, bitset src1, bitset src2)
1301 lbitset_xor_cmp (dst, src1, src2);