Home
last modified time | relevance | path

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

/external/mesa3d/src/gallium/drivers/r600/sb/
Dsb_expr.cpp206 literal dv, cv0, cv1; in fold_setcc() local
209 cv0 = v0->get_const_value(); in fold_setcc()
210 apply_alu_src_mod(n.bc, 0, cv0); in fold_setcc()
219 cond_result = evaluate_condition(flags, cv0, cv1); in fold_setcc()
247 if (cv0.f <= 0.0f && cc == AF_CC_GT) { in fold_setcc()
250 } else if (cv0.f < 0.0f && (cc == AF_CC_GE || cc == AF_CC_E)) { in fold_setcc()
255 if (cv0.f >= 0.0f && cc == AF_CC_GE) { in fold_setcc()
258 } else if (cv0.f > 0.0f && (cc == AF_CC_GT || cc == AF_CC_NE)) { in fold_setcc()
263 } else if (cmp_type == AF_UINT_CMP && cv0.u == 0 && cc == AF_CC_GT) { in fold_setcc()
558 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/cronet/buildtools/third_party/libc++/trunk/test/std/thread/thread.condition/thread.condition.condvarany/
Dcopy.compile.fail.cpp20 std::condition_variable_any cv0; in main() local
21 std::condition_variable_any cv1(cv0); in main()
Dassign.compile.fail.cpp20 std::condition_variable_any cv0; in main() local
22 cv1 = cv0; in main()
/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/cronet/buildtools/third_party/libc++/trunk/test/std/thread/thread.condition/thread.condition.condvar/
Dcopy.compile.fail.cpp20 std::condition_variable cv0; in main() local
21 std::condition_variable cv1(cv0); in main()
Dassign.compile.fail.cpp20 std::condition_variable cv0; in main() local
22 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_index.pass.cpp253 const V &cv0 = v0; in test_throws_for_all_value_categories() local
275 assert(test(one, cv0)); in test_throws_for_all_value_categories()
283 assert(test(one, std::move(cv0))); in test_throws_for_all_value_categories()
Dget_type.pass.cpp253 const V &cv0 = v0; in test_throws_for_all_value_categories() local
275 assert(test(one, cv0)); in test_throws_for_all_value_categories()
283 assert(test(one, std::move(cv0))); in test_throws_for_all_value_categories()
/external/cronet/buildtools/third_party/libc++/trunk/test/std/utilities/variant/variant.get/
Dget_type.pass.cpp242 const V &cv0 = v0; in test_throws_for_all_value_categories() local
264 assert(test(one, cv0)); in test_throws_for_all_value_categories()
272 assert(test(one, std::move(cv0))); in test_throws_for_all_value_categories()
Dget_index.pass.cpp242 const V &cv0 = v0; in test_throws_for_all_value_categories() local
264 assert(test(one, cv0)); in test_throws_for_all_value_categories()
272 assert(test(one, std::move(cv0))); in test_throws_for_all_value_categories()
/external/webp/src/dsp/
Dupsampling_msa.c589 v16u8 tu0, tu1, tv0, tv1, cu0, cu1, cv0, cv1; \
593 LD_UB2(cur_v, 1, cv0, cv1); \
595 UPSAMPLE_32PIXELS(tv0, tv1, cv0, cv1); \
597 ST_UB4(tv0, tv1, cv0, cv1, &temp_v[0], 16); \
613 v16u8 tu0, tu1, tv0, tv1, cu0, cu1, cv0, cv1; \
621 LD_UB2(&temp_v[32], 1, cv0, cv1); \
623 UPSAMPLE_32PIXELS(tv0, tv1, cv0, cv1); \
625 ST_UB4(tv0, tv1, cv0, cv1, &temp_v[0], 16); \
/external/python/cpython3/Lib/test/
Ddataclass_module_2.py19 cv0: ClassVar[int] = 20 variable in CV
Ddataclass_module_2_str.py19 cv0: ClassVar[int] = 20 variable in CV
Ddataclass_module_1_str.py19 cv0: typing.ClassVar[int] = 20 variable in CV
Ddataclass_module_1.py19 cv0: typing.ClassVar[int] = 20 variable in CV
Dtest_dataclasses.py3112 self.assertEqual(c.cv0, 20)
/external/eigen/test/
Dsparse_product.cpp218 ColSpVector cv0(cols), cv1; in sparse_product() local
220 initSparse(2*density,dcv0, cv0); in sparse_product()
226 VERIFY_IS_APPROX(cv1=m3*cv0, dcv1=refMat3*dcv0); in sparse_product()
228 VERIFY_IS_APPROX(cv1=m3t.adjoint()*cv0, dcv1=refMat3t.adjoint()*dcv0); in sparse_product()
230 VERIFY_IS_APPROX(rv1=m3*cv0, drv1=refMat3*dcv0); in sparse_product()