Searched refs:mv1 (Results 1 – 8 of 8) sorted by relevance
/external/libcxx/test/std/containers/associative/map/map.modifiers/ |
D | try.emplace.pass.cpp | 69 Moveable mv1(3, 3.0); in main() local 72 r = m.try_emplace(i, std::move(mv1)); in main() 75 assert(!mv1.moved()); // was not moved from in main() 79 r = m.try_emplace(-1, std::move(mv1)); in main() 82 assert(mv1.moved()); // was moved from in main() 113 Moveable mv1(4, 4.0); in main() local 114 r = m.try_emplace(std::move(mvkey1), std::move(mv1)); in main() 117 assert(!mv1.moved()); // was not moved from in main() 122 r = m.try_emplace(std::move(mvkey2), std::move(mv1)); in main() 125 assert(mv1.moved()); // was moved from in main() [all …]
|
D | insert_or_assign.pass.cpp | 82 Moveable mv1(5, 5.0); in main() local 83 r = m.insert_or_assign(-1, std::move(mv1)); in main() 86 assert(mv1.moved()); // was moved from in main() 116 Moveable mv1(4, 4.0); in main() local 117 r = m.insert_or_assign(std::move(mvkey1), std::move(mv1)); in main() 121 assert(mv1.moved()); // was moved from in main() 144 Moveable mv1(3, 3.0); in main() local 145 r = m.insert_or_assign(it, 2, std::move(mv1)); in main() 147 assert(mv1.moved()); // was moved from in main() 168 Moveable mv1(4, 4.0); in main() local [all …]
|
/external/libcxx/test/std/containers/unord/unord.map/unord.map.modifiers/ |
D | try.emplace.pass.cpp | 76 Moveable mv1(3, 3.0); in main() local 79 r = m.try_emplace(i, std::move(mv1)); in main() 82 assert(!mv1.moved()); // was not moved from in main() 86 r = m.try_emplace(-1, std::move(mv1)); in main() 89 assert(mv1.moved()); // was moved from in main() 120 Moveable mv1(4, 4.0); in main() local 121 r = m.try_emplace(std::move(mvkey1), std::move(mv1)); in main() 124 assert(!mv1.moved()); // was not moved from in main() 129 r = m.try_emplace(std::move(mvkey2), std::move(mv1)); in main() 132 assert(mv1.moved()); // was moved from in main() [all …]
|
D | insert_or_assign.pass.cpp | 88 Moveable mv1(5, 5.0); in main() local 89 r = m.insert_or_assign(-1, std::move(mv1)); in main() 92 assert(mv1.moved()); // was moved from in main() 122 Moveable mv1(4, 4.0); in main() local 123 r = m.insert_or_assign(std::move(mvkey1), std::move(mv1)); in main() 127 assert(mv1.moved()); // was moved from in main() 150 Moveable mv1(3, 3.0); in main() local 151 r = m.insert_or_assign(it, 2, std::move(mv1)); in main() 153 assert(mv1.moved()); // was moved from in main() 174 Moveable mv1(4, 4.0); in main() local [all …]
|
/external/eigen/test/ |
D | sparse_vector.cpp | 106 SparseMatrixType mv1; in sparse_vector() local 107 VERIFY_IS_APPROX((mv1=v1),v1); in sparse_vector() 108 VERIFY_IS_APPROX(mv1,(v1=mv1)); in sparse_vector() 109 VERIFY_IS_APPROX(mv1,(v1=mv1.transpose())); in sparse_vector()
|
/external/mesa3d/src/gallium/drivers/nouveau/ |
D | nouveau_video.c | 294 case PIPE_MPEG12_MO_TYPE_FRAME: goto mv1; in nouveau_vpe_mb_mv_header() 316 case PIPE_MPEG12_MO_TYPE_FIELD: goto mv1; in nouveau_vpe_mb_mv_header() 338 mv1: in nouveau_vpe_mb_mv_header()
|
/external/mesa3d/src/gallium/drivers/r600/sb/ |
D | sb_expr.cpp | 1012 value *mv1 = md->src[1]->gvalue(); in fold_alu_op3() local 1019 } else if (v0 == mv1) { in fold_alu_op3() 1025 } else if (v1 == mv1) { in fold_alu_op3() 1032 value *va1 = es1 == 0 ? mv1 : mv0; in fold_alu_op3()
|
/external/tensorflow/tensorflow/python/framework/ |
D | function_test.py | 1586 mv1 = RunForward("cell", cfg) 1589 self.assertAllClose(mv0, mv1, rtol=1e-4)
|