/external/mesa3d/src/gallium/drivers/r600/sb/ |
D | sb_expr.cpp | 206 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 …]
|
D | sb_expr.h | 81 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/ |
D | copy.compile.fail.cpp | 20 std::condition_variable_any cv0; in main() local 21 std::condition_variable_any cv1(cv0); in main()
|
D | assign.compile.fail.cpp | 20 std::condition_variable_any cv0; in main() local 22 cv1 = cv0; in main()
|
/external/libcxx/test/std/thread/thread.condition/thread.condition.condvar/ |
D | copy.fail.cpp | 21 std::condition_variable cv0; in main() local 22 std::condition_variable cv1(cv0); in main()
|
D | assign.fail.cpp | 21 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/ |
D | copy.compile.fail.cpp | 20 std::condition_variable cv0; in main() local 21 std::condition_variable cv1(cv0); in main()
|
D | assign.compile.fail.cpp | 20 std::condition_variable cv0; in main() local 22 cv1 = cv0; in main()
|
/external/libcxx/test/std/thread/thread.condition/thread.condition.condvarany/ |
D | copy.fail.cpp | 21 std::condition_variable_any cv0; in main() local 22 std::condition_variable_any cv1(cv0); in main()
|
D | assign.fail.cpp | 21 std::condition_variable_any cv0; in main() local 23 cv1 = cv0; in main()
|
/external/libcxx/test/std/utilities/variant/variant.get/ |
D | get_index.pass.cpp | 253 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()
|
D | get_type.pass.cpp | 253 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/ |
D | get_type.pass.cpp | 242 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()
|
D | get_index.pass.cpp | 242 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/ |
D | upsampling_msa.c | 589 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/ |
D | dataclass_module_2.py | 19 cv0: ClassVar[int] = 20 variable in CV
|
D | dataclass_module_2_str.py | 19 cv0: ClassVar[int] = 20 variable in CV
|
D | dataclass_module_1_str.py | 19 cv0: typing.ClassVar[int] = 20 variable in CV
|
D | dataclass_module_1.py | 19 cv0: typing.ClassVar[int] = 20 variable in CV
|
D | test_dataclasses.py | 3112 self.assertEqual(c.cv0, 20)
|
/external/eigen/test/ |
D | sparse_product.cpp | 218 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()
|