/external/eigen/unsupported/Eigen/CXX11/src/Tensor/ |
D | TensorDevice.h | 35 typedef TensorAssignOp<ExpressionType, const OtherDerived> Assign; in EIGEN_DEFAULT_COPY_CONSTRUCTOR() typedef 36 Assign assign(m_expression, other); in EIGEN_DEFAULT_COPY_CONSTRUCTOR() 37 internal::TensorExecutor<const Assign, DeviceType>::run(assign, m_device); in EIGEN_DEFAULT_COPY_CONSTRUCTOR() 46 typedef TensorAssignOp<ExpressionType, const Sum> Assign; typedef 47 Assign assign(m_expression, sum); 48 internal::TensorExecutor<const Assign, DeviceType>::run(assign, m_device); 57 typedef TensorAssignOp<ExpressionType, const Difference> Assign; typedef 58 Assign assign(m_expression, difference); 59 internal::TensorExecutor<const Assign, DeviceType>::run(assign, m_device); 91 typedef TensorAssignOp<ExpressionType, const OtherDerived> Assign; typedef [all …]
|
D | Tensor.h | 386 typedef TensorAssignOp<Tensor, const OtherDerived> Assign; in Tensor() typedef 387 Assign assign(*this, other.derived()); in Tensor() 388 resize(TensorEvaluator<const Assign, DefaultDevice>(assign, DefaultDevice()).dimensions()); in Tensor() 389 internal::TensorExecutor<const Assign, DefaultDevice>::run(assign, DefaultDevice()); in Tensor() 396 typedef TensorAssignOp<Tensor, const OtherDerived> Assign; in Tensor() typedef 397 Assign assign(*this, other.derived()); in Tensor() 398 resize(TensorEvaluator<const Assign, DefaultDevice>(assign, DefaultDevice()).dimensions()); in Tensor() 399 internal::TensorExecutor<const Assign, DefaultDevice>::run(assign, DefaultDevice()); in Tensor() 419 typedef TensorAssignOp<Tensor, const Tensor> Assign; typedef 420 Assign assign(*this, other); [all …]
|
/external/libgav1/src/utils/ |
D | bit_reader.cc | 25 bool Assign(int* const value, int assignment, bool return_value) { in Assign() function 56 return Assign(value, 0, true); in DecodeUniform() 63 return Assign(value, 0, false); in DecodeUniform() 66 return Assign(value, v, true); in DecodeUniform() 70 return Assign(value, 0, false); in DecodeUniform() 72 return Assign(value, (v << 1) - m + extra_bit, true); in DecodeUniform() 94 return Assign(value, 0, false); in DecodeSubexp() 110 return Assign(value, 0, false); in DecodeSubexp() 112 return Assign(value, subexp_bits + mk, true); in DecodeSubexp()
|
/external/libbrillo/brillo/ |
D | any_internal_impl_test.cc | 22 buffer.Assign(2); in TEST() 30 buffer.Assign(2.3); in TEST() 39 buffer.Assign(nullptr); in TEST() 46 buffer.Assign("abcd"); in TEST() 56 buffer.Assign(&non_trivial); in TEST() 68 buffer.Assign(non_trivial); in TEST() 80 buffer.Assign(small); in TEST() 88 buffer.Assign(large); in TEST() 98 buffer1.Assign(30); in TEST() 107 buffer1.Assign(std::string("abc")); in TEST() [all …]
|
/external/eigen/unsupported/test/ |
D | cxx11_tensor_executor.cpp | 28 using Assign = Eigen::TensorAssignOp<Dst, const Expr>; in DefaultAssign() typedef 30 Eigen::internal::TensorExecutor<const Assign, DefaultDevice, in DefaultAssign() 34 Executor::run(Assign(dst, expr), DefaultDevice()); in DefaultAssign() 41 using Assign = Eigen::TensorAssignOp<Dst, const Expr>; in DeviceAssign() typedef 42 using Executor = Eigen::internal::TensorExecutor<const Assign, Device, in DeviceAssign() 45 Executor::run(Assign(dst, expr), d); in DeviceAssign() 73 using Assign = TensorAssignOp<decltype(dst), const decltype(expr)>; in test_execute_unary_expr() typedef 75 internal::TensorExecutor<const Assign, Device, Vectorizable, Tiling>; in test_execute_unary_expr() 77 Executor::run(Assign(dst, expr), d); in test_execute_unary_expr() 104 using Assign = TensorAssignOp<decltype(dst), const decltype(expr)>; in test_execute_binary_expr() typedef [all …]
|
/external/webrtc/api/ |
D | candidate.h | 55 void set_id(absl::string_view id) { Assign(id_, id); } in set_id() 61 void set_protocol(absl::string_view protocol) { Assign(protocol_, protocol); } in set_protocol() 66 Assign(relay_protocol_, protocol); in set_relay_protocol() 98 void set_username(absl::string_view username) { Assign(username_, username); } in set_username() 101 void set_password(absl::string_view password) { Assign(password_, password); } in set_password() 104 void set_type(absl::string_view type) { Assign(type_, type); } in set_type() 108 Assign(network_name_, network_name); in set_network_name() 142 Assign(foundation_, foundation); in set_foundation() 150 void set_tcptype(absl::string_view tcptype) { Assign(tcptype_, tcptype); } in set_tcptype() 156 Assign(transport_name_, transport_name); in set_transport_name() [all …]
|
/external/python/jinja/tests/ |
D | test_idtracking.py | 15 [nodes.Assign(nodes.Name("foo", "store"), nodes.Name("bar", "load")), for_loop] 58 nodes.Assign( 69 nodes.Assign( 216 [nodes.Assign(nodes.Name("variable", "store"), nodes.Const(42))], 238 nodes.Assign(nodes.Name("variable", "store"), nodes.Const(23)), 241 [nodes.Assign(nodes.Name("variable", "store"), nodes.Const(42))], 267 [nodes.Assign(nodes.Name("x", "store"), nodes.Const(42))], 279 [nodes.Assign(nodes.Name("x", "store"), nodes.Const(23)), for_loop]
|
/external/tensorflow/tensorflow/core/platform/ |
D | statusor_internals.h | 112 Assign(other.data_); 114 Assign(other.status_); 121 Assign(std::move(other.data_)); 123 Assign(std::move(other.status_)); 136 void Assign(const T& value) { in Assign() function 146 void Assign(T&& value) { in Assign() function 156 void Assign(const Status& status) { in Assign() function 162 void Assign(Status&& status) { in Assign() function
|
/external/tensorflow/tensorflow/core/kernels/ |
D | training_ops_test.cc | 93 test::graph::Assign(g, var, Zeros(g, n)); in SGD() 127 test::graph::Assign(g, var, zero); in Adagrad() 128 test::graph::Assign(g, accum, zero); in Adagrad() 164 test::graph::Assign(g, var, zero); in SparseAdagrad() 165 test::graph::Assign(g, accum, zero); in SparseAdagrad() 209 test::graph::Assign(g, var, zero); in Momentum() 210 test::graph::Assign(g, accum, zero); in Momentum() 248 test::graph::Assign(g, var, zero); in Adam() 249 test::graph::Assign(g, m, zero); in Adam() 250 test::graph::Assign(g, v, zero); in Adam() [all …]
|
D | cwise_ops_common.h | 353 void Assign(const D& d, Out out, Rhs rhs) { in Assign() function 364 Assign(d, out, in0.binaryExpr(in1, typename Functor::func())); 377 Assign(d, out, in.unaryExpr(Unary(scalar.data()))); 389 Assign(d, out, in.unaryExpr(Unary(scalar.data()))); 401 Assign(dev, out, in0.binaryExpr(in1, func)); 404 Assign(dev, out, in0.binaryExpr(rhs, func)); 407 Assign(dev, out, lhs.binaryExpr(in1, func)); 411 Assign(dev, out, lhs.binaryExpr(rhs, func)); 425 Assign(d, out, in0.binaryExpr(in1, typename Functor::func())); 438 Assign(d, out, in.unaryExpr(Unary(scalar.data()))); [all …]
|
D | scatter_functor.h | 45 struct Assign {}; struct 47 struct Assign<scatter_op::UpdateOp::ASSIGN> { 58 struct Assign<scatter_op::UpdateOp::ADD> { 69 struct Assign<scatter_op::UpdateOp::SUB> { 80 struct Assign<scatter_op::UpdateOp::MUL> { 91 struct Assign<scatter_op::UpdateOp::DIV> { 102 struct Assign<scatter_op::UpdateOp::MIN> { 115 struct Assign<scatter_op::UpdateOp::MAX> { 169 scatter_op::internal::Assign<op>::Run(params.template chip<0>(index), 196 scatter_op::internal::Assign<op>::Run(params.template chip<0>(index), [all …]
|
/external/clang/test/SemaCXX/ |
D | deprecated.cpp | 71 struct Assign { struct 72 …Assign &operator=(const Assign&); // expected-warning {{definition of implicit copy constructor fo… 74 Assign a1, a2(a1); // expected-note {{implicit copy constructor for 'Assign' first required here}}
|
/external/tflite-support/tensorflow_lite_support/cc/port/default/ |
D | statusor.h | 165 this->Assign(other); 180 this->Assign(std::move(other)); 234 this->Assign(std::forward<U>(v)); 399 using internal_statusor::StatusOrData<T>::Assign; 401 void Assign(const StatusOr<U>& other); 403 void Assign(StatusOr<U>&& other); 425 this->Assign(status); 438 this->Assign(std::move(status)); 444 inline void StatusOr<T>::Assign(const StatusOr<U>& other) { in Assign() function 446 this->Assign(other.value()); in Assign() [all …]
|
D | statusor_internals.h | 212 Assign(other.data_); 214 Assign(other.status_); 221 Assign(std::move(other.data_)); 223 Assign(std::move(other.status_)); 239 void Assign(U&& value) { 254 void Assign(U&& value) { 264 void Assign(const absl::Status& status) { 270 void Assign(absl::Status&& status) {
|
/external/pigweed/pw_string/ |
D | util_test.cc | 152 EXPECT_EQ(OkStatus(), Assign(string_, "")); in TEST_F() 158 EXPECT_EQ(Status::ResourceExhausted(), Assign(zero_capacity, "Hello")); in TEST_F() 164 EXPECT_EQ(Status::ResourceExhausted(), Assign(string_, "12345HELLO?")); in TEST_F() 169 EXPECT_EQ(OkStatus(), Assign(string_, "12345")); in TEST_F() 174 EXPECT_EQ(OkStatus(), Assign(string_, "\0!\0\0\0"sv)); in TEST_F() 180 EXPECT_EQ(OkStatus(), Assign(string_, "")); in TEST_F() 186 EXPECT_EQ(OkStatus(), Assign(string_, "12345")); in TEST_F() 192 EXPECT_EQ(Status::ResourceExhausted(), Assign(string_, "1234567")); in TEST_F()
|
/external/clang/lib/StaticAnalyzer/Core/ |
D | CheckerHelpers.cpp | 81 if (auto Assign = dyn_cast_or_null<BinaryOperator>(S)) { in parseAssignment() local 82 if (Assign->isAssignmentOp()) { in parseAssignment() 84 RHS = Assign->getRHS(); in parseAssignment() 85 if (auto DE = dyn_cast_or_null<DeclRefExpr>(Assign->getLHS())) in parseAssignment()
|
/external/autotest/metadata/utils/ |
D | control_files.py | 73 def _find_last_global_assignment(stmts: List[ast.Assign], argument 74 name: str) -> Optional[ast.Assign]: 81 def _find_global_assignments(stmts: List[ast.Assign], argument 82 name: str) -> List[ast.Assign]: 85 if isinstance(stmt, ast.Assign) and _contains_name(stmt.targets, name): 102 def _extract_str_value(stmt: ast.Assign) -> str: argument
|
/external/tensorflow/tensorflow/cc/saved_model/testdata/half_plus_two_pbtxt/00000123/ |
D | saved_model.pbtxt | 40 name: "Assign" 524 name: "a/Assign" 525 op: "Assign" 661 name: "b/Assign" 662 op: "Assign" 798 name: "c/Assign" 799 op: "Assign" 1513 name: "filename_tensor/Assign" 1514 op: "Assign" 1582 name: "Assign/value" [all …]
|
/external/tensorflow/tensorflow/core/ir/importexport/tests/roundtrip/ |
D | test3.pbtxt | 91 name: "b/Assign" 92 op: "Assign" 144 input: "^b/Assign" 318 name: "save/Assign" 319 op: "Assign" 625 op: "Assign" 788 op: "Assign" 1135 op: "Assign" 1298 op: "Assign" 1457 name: "save/Assign/_1_qt" [all …]
|
/external/tensorflow/tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/ |
D | target.pbtxt | 3 …mport=false %s -tf-prune-unused-nodes -tf-control-output-arrays=Variable/Assign,AssignAdd -o - | F… 65 name: "Variable/Assign" 66 op: "Assign" 184 # PRUNE-NOT: "tf.Assign" 196 # PRESERVE-SAME: control_outputs = "Variable/Assign,AssignAdd" 201 # PRESERVE-DAG: %{{.*}}, %[[ASSIGN_CTRL:.*]] = tf_executor.island wraps "tf.Assign"
|
/external/cronet/base/android/ |
D | jni_weak_ref.cc | 18 Assign(orig); in JavaObjectWeakGlobalRef() 42 Assign(rhs); in operator =() 69 void JavaObjectWeakGlobalRef::Assign(const JavaObjectWeakGlobalRef& other) { in Assign() function in JavaObjectWeakGlobalRef
|
/external/libchrome/base/android/ |
D | jni_weak_ref.cc | 19 Assign(orig); in JavaObjectWeakGlobalRef() 43 Assign(rhs); in operator =() 70 void JavaObjectWeakGlobalRef::Assign(const JavaObjectWeakGlobalRef& other) { in Assign() function in JavaObjectWeakGlobalRef
|
/external/python/cpython3/Lib/lib2to3/fixes/ |
D | fix_except.py | 28 from ..fixer_util import Assign, Attr, Name, is_tuple, is_list, syms 78 assign = Assign(target, Attr(new_N, Name('args'))) 80 assign = Assign(target, new_N)
|
/external/python/cpython2/Lib/lib2to3/fixes/ |
D | fix_except.py | 28 from ..fixer_util import Assign, Attr, Name, is_tuple, is_list, syms 78 assign = Assign(target, Attr(new_N, Name(u'args'))) 80 assign = Assign(target, new_N)
|
/external/openscreen/third_party/abseil/src/absl/status/ |
D | statusor.h | 302 this->Assign(other); 317 this->Assign(std::move(other)); 405 this->Assign(std::forward<U>(v)); 601 using internal_statusor::StatusOrData<T>::Assign; 603 void Assign(const absl::StatusOr<U>& other); 605 void Assign(absl::StatusOr<U>&& other); 635 inline void StatusOr<T>::Assign(const StatusOr<U>& other) { in Assign() function 637 this->Assign(*other); in Assign() 645 inline void StatusOr<T>::Assign(StatusOr<U>&& other) { in Assign() function 647 this->Assign(*std::move(other)); in Assign()
|