Lines Matching refs:conj
2401 TCGv_i64 conj, disj;
2403 conj = tcg_temp_new_i64();
2415 tcg_gen_mov_i64(conj, a);
2417 tcg_gen_not_i64(conj, a);
2420 tcg_gen_and_i64(conj, conj, b);
2422 tcg_gen_andc_i64(conj, conj, b);
2425 tcg_gen_and_i64(conj, conj, c);
2427 tcg_gen_andc_i64(conj, conj, c);
2429 tcg_gen_or_i64(disj, disj, conj);
2446 TCGv_vec disj, conj;
2448 conj = tcg_temp_new_vec_matching(t);
2460 tcg_gen_mov_vec(conj, a);
2462 tcg_gen_not_vec(vece, conj, a);
2465 tcg_gen_and_vec(vece, conj, conj, b);
2467 tcg_gen_andc_vec(vece, conj, conj, b);
2470 tcg_gen_and_vec(vece, conj, conj, c);
2472 tcg_gen_andc_vec(vece, conj, conj, c);
2474 tcg_gen_or_vec(vece, disj, disj, conj);