/aosp_15_r20/external/tensorflow/tensorflow/core/kernels/ |
H A D | stage_op.cc | 41 Status Put(Tuple* tuple) { in Put() 89 void Get(Tuple* tuple) { // TODO(zhifengc): Support cancellation. in Get() 106 Status Peek(std::size_t index, Tuple* tuple) { in Peek() 163 std::size_t GetTupleBytes(const Tuple& tuple) { in GetTupleBytes() 209 Buffer::Tuple tuple; in Compute() local 231 Buffer::Tuple tuple; in Compute() local 259 Buffer::Tuple tuple; in Compute() local
|
H A D | fifo_queue.cc | 42 void FIFOQueue::DequeueLocked(OpKernelContext* ctx, Tuple* tuple) { in DequeueLocked() 51 void FIFOQueue::TryEnqueue(const Tuple& tuple, OpKernelContext* ctx, in TryEnqueue() 89 Status FIFOQueue::GetElementComponentFromBatch(const FIFOQueue::Tuple& tuple, in GetElementComponentFromBatch() 102 void FIFOQueue::TryEnqueueMany(const Tuple& tuple, OpKernelContext* ctx, in TryEnqueueMany() 206 Tuple tuple; in TryDequeueMany() local
|
H A D | priority_queue.cc | 63 void PriorityQueue::DequeueLocked(OpKernelContext* ctx, Tuple* tuple) { in DequeueLocked() 72 void PriorityQueue::TryEnqueue(const Tuple& tuple, OpKernelContext* ctx, in TryEnqueue() 119 const PriorityQueue::Tuple& tuple, int index, int component, in GetElementComponentFromBatch() 130 void PriorityQueue::TryEnqueueMany(const Tuple& tuple, OpKernelContext* ctx, in TryEnqueueMany() 248 Tuple tuple; in TryDequeueMany() local
|
H A D | queue_op.cc | 101 QueueInterface::Tuple tuple; in ComputeAsync() local 142 QueueInterface::Tuple tuple; in ComputeAsync() local 178 queue->TryDequeue(ctx, [ctx, callback](const QueueInterface::Tuple& tuple) { in ComputeAsync() 233 [ctx, callback](const QueueInterface::Tuple& tuple) { in ComputeAsync() 306 [ctx, callback](const QueueInterface::Tuple& tuple) { in ComputeAsync()
|
H A D | random_shuffle_queue_op.cc | 118 void RandomShuffleQueue::DequeueLocked(OpKernelContext* ctx, Tuple* tuple) { in DequeueLocked() 129 void RandomShuffleQueue::TryEnqueue(const Tuple& tuple, OpKernelContext* ctx, in TryEnqueue() 167 Status RandomShuffleQueue::GetElementComponentFromBatch(const Tuple& tuple, in GetElementComponentFromBatch() 181 void RandomShuffleQueue::TryEnqueueMany(const Tuple& tuple, in TryEnqueueMany() 288 Tuple tuple; in TryDequeueMany() local
|
H A D | padding_fifo_queue.cc | 60 const PaddingFIFOQueue::Tuple& tuple, int component, OpKernelContext* ctx, in GetElementComponent() 73 Tuple tuple; in TryDequeueMany() local 236 Status PaddingFIFOQueue::ValidateTuple(const Tuple& tuple) { in ValidateTuple() 249 Status PaddingFIFOQueue::ValidateManyTuple(const Tuple& tuple) { in ValidateManyTuple()
|
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/preprocessor/include/boost/preprocessor/tuple/ |
D | to_array.hpp | 30 # define BOOST_PP_TUPLE_TO_ARRAY_1(tuple) (BOOST_PP_TUPLE_SIZE(tuple), tuple) argument 34 # define BOOST_PP_TUPLE_TO_ARRAY_1(tuple) BOOST_PP_TUPLE_TO_ARRAY_1_SIZE(BOOST_PP_VARIADIC_… argument 35 # define BOOST_PP_TUPLE_TO_ARRAY_1_SIZE(size,tuple) (BOOST_PP_IF(size,size,1), tuple) argument 37 # define BOOST_PP_TUPLE_TO_ARRAY_1(tuple) (BOOST_PP_VARIADIC_SIZE tuple, tuple) argument 40 # define BOOST_PP_TUPLE_TO_ARRAY_2(size, tuple) (size, tuple) argument
|
D | size.hpp | 24 # define BOOST_PP_TUPLE_SIZE(tuple) BOOST_PP_TUPLE_SIZE_CHECK(BOOST_PP_CAT(BOOST_PP_VARIADI… argument 26 # define BOOST_PP_TUPLE_SIZE(tuple) BOOST_PP_TUPLE_SIZE_CHECK(BOOST_PP_VARIADIC_SIZE tuple) argument 30 # define BOOST_PP_TUPLE_SIZE(tuple) BOOST_PP_CAT(BOOST_PP_VARIADIC_SIZE tuple,) argument 32 # define BOOST_PP_TUPLE_SIZE(tuple) BOOST_PP_VARIADIC_SIZE tuple argument
|
/aosp_15_r20/external/clang/test/CXX/temp/temp.decls/temp.variadic/ |
H A D | example-bind.cpp | 57 template<> class tuple<> { }; class 60 class tuple<Head, Tail...> : private tuple<Tail...> { class 64 tuple() { } in tuple() function in tuple 68 tuple(typename add_const_reference<Head>::type v, in tuple() function in tuple 73 template<typename... VValues> tuple(const tuple<VValues...>& other) in tuple() function in tuple 168 inline bool operator==(const tuple<>&, const tuple<>&) { return true; } in operator ==() 180 inline bool operator<(const tuple<>&, const tuple<>&) { return false; } in operator <()
|
/aosp_15_r20/external/pytorch/torch/onnx/_internal/fx/passes/ |
H A D | type_promotion.py | 110 self, args: tuple, kwargs: dict 188 self, args: tuple, kwargs: dict 233 self, args: tuple, kwargs: dict 286 self, args: tuple, kwargs: dict 325 self, args: tuple, kwargs: dict 350 self, args: tuple, kwargs: dict 1296 op: torch._ops.OpOverloadPacket, args: tuple, kwargs: dict 1385 args: tuple,
|
/aosp_15_r20/external/linux-kselftest/tools/testing/selftests/bpf/prog_tests/ |
H A D | cls_redirect.c | 31 struct tuple { struct 32 int family; 33 struct addr_port src; 34 struct addr_port dst; 94 int *server, int *conn, struct tuple *tuple) in set_up_conn() 276 const struct tuple *tuple) in build_input() 402 struct tuple *tuple = &tuples[test->type][j]; in test_cls_redirect_common() local
|
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/container/include/boost/container/detail/ |
D | variadic_templates_tools.hpp | 36 template<> class tuple<> class 40 class tuple<Head, Tail...> class 46 tuple() in tuple() function in boost::container::dtl::tuple 51 tuple(U &&u, Args && ...args) in tuple() function in boost::container::dtl::tuple 57 tuple(const tuple<VValues...>& other) in tuple() function in boost::container::dtl::tuple
|
/aosp_15_r20/external/cronet/url/ |
H A D | scheme_host_port_unittest.cc | 86 url::SchemeHostPort tuple(url); in TEST_F() local 116 url::SchemeHostPort tuple(test.scheme, test.host, test.port); in TEST_F() local 153 url::SchemeHostPort tuple(test.scheme, test.host, test.port); in TEST_F() local 180 url::SchemeHostPort tuple(std::string(test.scheme, test.scheme_length), in TEST_F() local 217 url::SchemeHostPort tuple(url); in TEST_F() local 247 url::SchemeHostPort tuple(url); in TEST_F() local
|
H A D | origin.cc | 41 SchemeHostPort tuple; in Create() local 86 SchemeHostPort tuple(std::string(scheme), std::string(host), port, in UnsafelyCreateTupleOriginWithoutNormalization() local 117 SchemeHostPort tuple(std::move(scheme), std::move(host), port, in CreateFromNormalizedTuple() local 303 Origin::Origin(SchemeHostPort tuple) : tuple_(std::move(tuple)) { in Origin() 374 SchemeHostPort tuple(url); in Deserialize() local
|
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/tuple/include/boost/tuple/detail/ |
D | tuple_basic.hpp | 478 class tuple : class 489 tuple() {} in tuple() function in boost::tuples::tuple 491 explicit tuple(typename access_traits<T0>::parameter_type t0) in tuple() function in boost::tuples::tuple 496 tuple(typename access_traits<T0>::parameter_type t0, in tuple() function in boost::tuples::tuple 502 tuple(typename access_traits<T0>::parameter_type t0, in tuple() function in boost::tuples::tuple 509 tuple(typename access_traits<T0>::parameter_type t0, in tuple() function in boost::tuples::tuple 517 tuple(typename access_traits<T0>::parameter_type t0, in tuple() function in boost::tuples::tuple 525 tuple(typename access_traits<T0>::parameter_type t0, in tuple() function in boost::tuples::tuple 534 tuple(typename access_traits<T0>::parameter_type t0, in tuple() function in boost::tuples::tuple 544 tuple(typename access_traits<T0>::parameter_type t0, in tuple() function in boost::tuples::tuple [all …]
|
/aosp_15_r20/external/tensorflow/tensorflow/compiler/xla/service/ |
H A D | hlo_alias_analysis_test.cc | 186 auto tuple = in TEST_F() local 236 auto tuple = builder.AddInstruction( in TEST_F() local 271 auto tuple = in TEST_F() local 314 auto tuple = in TEST_F() local 402 auto tuple = in TEST_F() local 578 auto tuple = builder.AddInstruction( in TEST_F() local 670 auto tuple = builder.AddInstruction( in TEST_F() local 769 auto tuple = builder.AddInstruction( in TEST_F() local 843 auto tuple = builder.AddInstruction( in TEST_F() local
|
/aosp_15_r20/external/clang/test/SemaCXX/ |
H A D | for-range-examples.cpp | 75 struct tuple : tuple_elem<A>... { struct 76 tuple() : tuple_elem<A>()... {} in tuple() function 77 tuple(A... a) : tuple_elem<A>(a)... {} in tuple() function 78 template<typename B> B &get() { return tuple_elem<B>::t; } in get()
|
/aosp_15_r20/external/linux-kselftest/tools/testing/selftests/bpf/progs/ |
H A D | test_cls_redirect.c | 618 static INLINING uint64_t fill_tuple(struct bpf_sock_tuple *tuple, void *iph, in fill_tuple() 648 struct bpf_sock_tuple *tuple, uint64_t tuplen, in classify_tcp() 681 struct bpf_sock_tuple *tuple, uint64_t tuplen) in classify_udp() 699 struct bpf_sock_tuple *tuple, uint64_t tuplen, in classify_icmp() 749 struct bpf_sock_tuple tuple; in process_icmpv4() local 801 struct bpf_sock_tuple tuple; in process_icmpv6() local 830 struct bpf_sock_tuple tuple; in process_tcp() local 848 struct bpf_sock_tuple tuple; in process_udp() local
|
/aosp_15_r20/external/pytorch/torch/csrc/jit/runtime/ |
H A D | vararg_functions.cpp | 104 auto tuple = pop(stack).toTuple(); in tupleUnpack() local 286 auto tuple = c10::ivalue::Tuple::create( in tupleConstruct() local 294 auto tuple = c10::ivalue::Tuple::create( in tupleConstruct() local 396 auto tuple = pop(stack).toTuple(); in tupleSlice() local 406 auto tuple = iv.toTuple(); in dequantize() local
|
/aosp_15_r20/external/bcc/libbpf-tools/ |
H A D | tcptracer.bpf.c | 68 fill_tuple(struct tuple_key_t *tuple, struct sock *sk, int family) in fill_tuple() 113 fill_event(struct tuple_key_t *tuple, struct event *event, __u32 pid, in fill_event() 175 struct tuple_key_t tuple = {}; in exit_tcp_connect() local 234 struct tuple_key_t tuple = {}; in BPF_KPROBE() local 267 struct tuple_key_t tuple = {}; in BPF_KPROBE() local
|
/aosp_15_r20/external/libnetfilter_conntrack/src/conntrack/ |
H A D | snprintf_xml.c | 68 const struct __nfct_tuple *tuple, in __snprintf_ipv4_xml() 80 const struct __nfct_tuple *tuple, in __snprintf_ipv6_xml() 96 const struct __nfct_tuple *tuple, in __snprintf_addr_xml() 124 const struct __nfct_tuple *tuple, in __snprintf_proto_xml() 291 const struct __nfct_tuple *tuple = NULL; in __snprintf_tuple_xml() local
|
/aosp_15_r20/external/tensorflow/tensorflow/compiler/xrt/ |
H A D | xrt_memory_manager.cc | 53 RefPtr<XRTTupleAllocation> tuple; member 59 int64_t Register(RefPtr<XRTTupleAllocation> tuple) { in Register() 194 for (auto& tuple : pinned_tuples_) { in ~WorkingSet() local 221 int64_t XRTMemoryManager::Register(RefPtr<XRTTupleAllocation> tuple) { in Register() 235 RefPtr<XRTTupleAllocation> tuple = device_context->Lookup(handle); in Lookup() local
|
/aosp_15_r20/external/libnl/lib/netfilter/ |
H A D | exp.c | 76 static int exp_parse_ip(struct nfnl_exp *exp, int tuple, struct nlattr *attr) in exp_parse_ip() 131 static int exp_parse_proto(struct nfnl_exp *exp, int tuple, struct nlattr *attr) in exp_parse_proto() 163 static int exp_parse_tuple(struct nfnl_exp *exp, int tuple, struct nlattr *attr) in exp_parse_tuple() 325 static int exp_get_tuple_attr(int tuple) in exp_get_tuple_attr() 351 struct nlattr *tuple, *ip, *proto; in nfnl_exp_build_tuple() local
|
/aosp_15_r20/external/tensorflow/tensorflow/compiler/xla/python/ |
H A D | pytree.cc | 193 py::tuple tuple = py::reinterpret_borrow<py::tuple>(handle); in FlattenIntoImpl() local 309 py::tuple tuple(node.arity); in MakeNode() local 338 py::tuple tuple(node.arity); in MakeNode() local 381 py::tuple tuple = py::reinterpret_borrow<py::tuple>(object); in FlattenUpTo() local 438 py::tuple tuple = py::reinterpret_borrow<py::tuple>(object); in FlattenUpTo() local 520 py::tuple tuple(node.arity); in Walk() local
|
/aosp_15_r20/external/pytorch/torch/csrc/utils/ |
H A D | python_arg_parser.h | 416 auto tuple = six::isTuple(args[i]); in scalarlist() local 446 auto tuple = six::isTuple(args[i]); in tensorlist() local 465 auto tuple = six::isTuple(args[i]); in list_of_optional_tensors() local 486 auto tuple = six::isTuple(args[i]); in tensorlist_n() local 555 auto tuple = PyTuple_Check(arg); in symintlist() local 629 auto tuple = PyTuple_Check(arg); in intlistWithDefault() local 697 auto tuple = PyTuple_Check(arg); in getDoublelist() local 858 auto tuple = PyTuple_Check(arg); in parseDimnameList() local
|