Home
last modified time | relevance | path

Searched refs:cv0 (Results 1 – 10 of 10) sorted by relevance

/external/mesa3d/src/gallium/drivers/r600/sb/
Dsb_expr.cpp204 literal dv, cv0, cv1; in fold_setcc() local
207 cv0 = v0->get_const_value(); in fold_setcc()
208 apply_alu_src_mod(n.bc, 0, cv0); in fold_setcc()
217 cond_result = evaluate_condition(flags, cv0, cv1); in fold_setcc()
245 if (cv0.f <= 0.0f && cc == AF_CC_GT) { in fold_setcc()
248 } else if (cv0.f < 0.0f && (cc == AF_CC_GE || cc == AF_CC_E)) { in fold_setcc()
253 if (cv0.f >= 0.0f && cc == AF_CC_GE) { in fold_setcc()
256 } else if (cv0.f > 0.0f && (cc == AF_CC_GT || cc == AF_CC_NE)) { in fold_setcc()
261 } else if (cmp_type == AF_UINT_CMP && cv0.u == 0 && cc == AF_CC_GT) { in fold_setcc()
549 literal cv0, literal cv1) { in eval_const_op() argument
[all …]
Dsb_expr.h81 bool eval_const_op(unsigned op, literal &r, literal cv0, literal cv1);
/external/libcxx/test/std/thread/thread.condition/thread.condition.condvar/
Dcopy.fail.cpp21 std::condition_variable cv0; in main() local
22 std::condition_variable cv1(cv0); in main()
Dassign.fail.cpp21 std::condition_variable cv0; in main() local
23 cv1 = cv0; in main()
/external/libcxx/test/std/thread/thread.condition/thread.condition.condvarany/
Dcopy.fail.cpp21 std::condition_variable_any cv0; in main() local
22 std::condition_variable_any cv1(cv0); in main()
Dassign.fail.cpp21 std::condition_variable_any cv0; in main() local
23 cv1 = cv0; in main()
/external/libcxx/test/std/utilities/variant/variant.get/
Dget_type.pass.cpp245 const V &cv0 = v0; in test_throws_for_all_value_categories() local
267 assert(test(one, cv0)); in test_throws_for_all_value_categories()
275 assert(test(one, std::move(cv0))); in test_throws_for_all_value_categories()
Dget_index.pass.cpp245 const V &cv0 = v0; in test_throws_for_all_value_categories() local
267 assert(test(one, cv0)); in test_throws_for_all_value_categories()
275 assert(test(one, std::move(cv0))); in test_throws_for_all_value_categories()
/external/webp/src/dsp/
Dupsampling_msa.c583 v16u8 tu0, tu1, tv0, tv1, cu0, cu1, cv0, cv1; \
587 LD_UB2(cur_v, 1, cv0, cv1); \
589 UPSAMPLE_32PIXELS(tv0, tv1, cv0, cv1); \
591 ST_UB4(tv0, tv1, cv0, cv1, &temp_v[0], 16); \
607 v16u8 tu0, tu1, tv0, tv1, cu0, cu1, cv0, cv1; \
615 LD_UB2(&temp_v[32], 1, cv0, cv1); \
617 UPSAMPLE_32PIXELS(tv0, tv1, cv0, cv1); \
619 ST_UB4(tv0, tv1, cv0, cv1, &temp_v[0], 16); \
/external/eigen/test/
Dsparse_product.cpp210 ColSpVector cv0(cols), cv1; in sparse_product() local
212 initSparse(2*density,dcv0, cv0); in sparse_product()
218 VERIFY_IS_APPROX(cv1=m3*cv0, dcv1=refMat3*dcv0); in sparse_product()
220 VERIFY_IS_APPROX(cv1=m3t.adjoint()*cv0, dcv1=refMat3t.adjoint()*dcv0); in sparse_product()
222 VERIFY_IS_APPROX(rv1=m3*cv0, drv1=refMat3*dcv0); in sparse_product()