/external/mesa3d/src/gallium/drivers/r600/sb/ |
D | sb_expr.cpp | 206 literal dv, cv0, cv1; in fold_setcc() local 214 cv1 = v1->get_const_value(); in fold_setcc() 215 apply_alu_src_mod(n.bc, 1, cv1); in fold_setcc() 219 cond_result = evaluate_condition(flags, cv0, cv1); in fold_setcc() 224 if (cv1.f < 0.0f && (cc == AF_CC_GT || cc == AF_CC_NE)) { in fold_setcc() 227 } else if (cv1.f <= 0.0f && cc == AF_CC_GE) { in fold_setcc() 232 if (cv1.f > 0.0f && (cc == AF_CC_GE || cc == AF_CC_E)) { in fold_setcc() 235 } else if (cv1.f >= 0.0f && cc == AF_CC_GT) { in fold_setcc() 240 } else if (cmp_type == AF_UINT_CMP && cv1.u == 0 && cc == AF_CC_GE) { in fold_setcc() 557 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/eigen/test/ |
D | product_notemporary.cpp | 33 ColVectorType cv1 = ColVectorType::Random(cols), cvres(cols); in product_notemporary() local 119 VERIFY_EVALUATION_COUNT( cvres.noalias() = m1 * cv1, 0 ); in product_notemporary() 120 VERIFY_EVALUATION_COUNT( cvres.noalias() -= m1 * cv1, 0 ); in product_notemporary() 125 VERIFY_EVALUATION_COUNT( cvres.noalias() = (m1+m1) * cv1, 0 ); in product_notemporary() 126 VERIFY_EVALUATION_COUNT( cvres.noalias() = (rm3+rm3) * cv1, 0 ); in product_notemporary() 127 VERIFY_EVALUATION_COUNT( cvres.noalias() = (m1+m1) * (m1*cv1), 1 ); in product_notemporary() 128 VERIFY_EVALUATION_COUNT( cvres.noalias() = (rm3+rm3) * (m1*cv1), 1 ); in product_notemporary() 131 m3 = cv1 * rv1; in product_notemporary() 132 VERIFY_EVALUATION_COUNT( m3.noalias() = cv1 * rv1, 0 ); in product_notemporary() 133 VERIFY_EVALUATION_COUNT( m3.noalias() = (cv1+cv1) * (rv1+rv1), 1 ); in product_notemporary() [all …]
|
D | array_for_matrix.cpp | 26 ColVectorType cv1 = ColVectorType::Random(rows); in array_for_matrix() local 52 VERIFY_IS_APPROX(m3.colwise() += cv1, m1.colwise() + cv1); in array_for_matrix() 54 VERIFY_IS_APPROX(m3.colwise() -= cv1, m1.colwise() - cv1); in array_for_matrix()
|
D | array.cpp | 29 ColVectorType cv1 = ColVectorType::Random(rows); in array() local 80 VERIFY_IS_APPROX(m3.colwise() += cv1, m1.colwise() + cv1); in array() 82 VERIFY_IS_APPROX(m3.colwise() -= cv1, m1.colwise() - cv1); in array()
|
/external/python/cpython3/Lib/turtledemo/ |
D | two_canvases.py | 13 cv1 = TK.Canvas(root, width=300, height=200, bg="#ddffff") 15 cv1.pack() 18 s1 = TurtleScreen(cv1)
|
/external/python/cpython2/Demo/turtle/ |
D | tdemo_two_canvases.py | 13 cv1 = TK.Canvas(root, width=300, height=200, bg="#ddffff") 15 cv1.pack() 18 s1 = TurtleScreen(cv1)
|
/external/libcxx/test/std/thread/thread.condition/thread.condition.condvarany/ |
D | assign.fail.cpp | 22 std::condition_variable_any cv1; in main() local 23 cv1 = cv0; in main()
|
D | copy.fail.cpp | 22 std::condition_variable_any cv1(cv0); in main() local
|
/external/libcxx/test/std/thread/thread.condition/thread.condition.condvar/ |
D | assign.fail.cpp | 22 std::condition_variable cv1; in main() local 23 cv1 = cv0; in main()
|
D | copy.fail.cpp | 22 std::condition_variable cv1(cv0); in main() local
|
/external/clang/test/Sema/ |
D | deref.c | 24 extern const void cv1; 28 return &cv1; in foo4()
|
/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/libcxx/test/std/utilities/variant/variant.get/ |
D | get_type.pass.cpp | 256 const V &cv1 = v1; in test_throws_for_all_value_categories() local 276 assert(test(zero, cv1)); in test_throws_for_all_value_categories() 284 assert(test(zero, std::move(cv1))); in test_throws_for_all_value_categories()
|
D | get_index.pass.cpp | 256 const V &cv1 = v1; in test_throws_for_all_value_categories() local 276 assert(test(zero, cv1)); in test_throws_for_all_value_categories() 284 assert(test(zero, std::move(cv1))); in test_throws_for_all_value_categories()
|
/external/python/cpython3/Lib/test/ |
D | dataclass_module_2.py | 20 cv1: ClassVar = 30 variable in CV
|
D | dataclass_module_2_str.py | 20 cv1: ClassVar = 30 variable in CV
|
D | dataclass_module_1.py | 20 cv1: typing.ClassVar = 30 variable in CV
|
D | dataclass_module_1_str.py | 20 cv1: typing.ClassVar = 30 variable in CV
|
/external/libcxx/test/std/utilities/variant/variant.variant/variant.ctor/ |
D | copy.pass.cpp | 231 const V &cv1 = v1; in test_copy_ctor_valueless_by_exception() local 232 V v(cv1); in test_copy_ctor_valueless_by_exception()
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/InstCombine/ |
D | canonicalize-constant-low-bit-mask-and-icmp-uge-to-icmp-ule.ll | 108 define i1 @cv1(i8 %y) { 109 ; CHECK-LABEL: @cv1(
|
D | canonicalize-constant-low-bit-mask-and-icmp-eq-to-icmp-ule.ll | 108 define i1 @cv1(i8 %y) { 109 ; CHECK-LABEL: @cv1(
|
D | canonicalize-constant-low-bit-mask-and-icmp-ult-to-icmp-ugt.ll | 108 define i1 @cv1(i8 %y) { 109 ; CHECK-LABEL: @cv1(
|
D | canonicalize-constant-low-bit-mask-and-icmp-ne-to-icmp-ugt.ll | 108 define i1 @cv1(i8 %y) { 109 ; CHECK-LABEL: @cv1(
|
/external/libcxx/test/std/utilities/variant/variant.visit/ |
D | visit.pass.cpp | 200 const V &cv1 = v1; in test_argument_forwarding() local 207 std::visit(obj, cv1, cv2, std::move(v3)); in test_argument_forwarding()
|