Home
last modified time | relevance | path

Searched refs:data_arg (Results 1 – 4 of 4) sorted by relevance

/external/boringssl/src/crypto/test/
Dtest_util.h39 Bytes(const uint8_t *data_arg, size_t len_arg) in Bytes()
40 : span_(data_arg, len_arg) {} in Bytes()
41 Bytes(const char *data_arg, size_t len_arg) in Bytes()
42 : span_(reinterpret_cast<const uint8_t *>(data_arg), len_arg) {} in Bytes()
/external/rust/crates/quiche/deps/boringssl/src/crypto/test/
Dtest_util.h39 Bytes(const uint8_t *data_arg, size_t len_arg) in Bytes()
40 : span_(data_arg, len_arg) {} in Bytes()
41 Bytes(const char *data_arg, size_t len_arg) in Bytes()
42 : span_(reinterpret_cast<const uint8_t *>(data_arg), len_arg) {} in Bytes()
/external/python/cpython3/Modules/
Dsocketmodule.c4395 sock_sendmsg_iovec(PySocketSockObject *s, PyObject *data_arg, in sock_sendmsg_iovec() argument
4406 data_fast = PySequence_Fast(data_arg, in sock_sendmsg_iovec()
4477 PyObject *data_arg, *cmsg_arg = NULL, *addr_arg = NULL, local
4482 &data_arg, &cmsg_arg, &flags, &addr_arg)) {
4508 if (sock_sendmsg_iovec(s, data_arg, &msg, &databufs, &ndatabufs) == -1) {
4673 PyObject *data_arg = NULL; local
4702 &data_arg,
4753 if (data_arg != NULL) {
4754 if (sock_sendmsg_iovec(self, data_arg, &msg, &databufs, &ndatabufs) == -1) {
/external/tensorflow/tensorflow/compiler/xla/service/
Dhlo_evaluator_test.cc4282 Literal data_arg = LiteralUtil::CreateR1<int32>({1, 2, 3, 4}); in TEST_F() local
4284 TF_ASSERT_OK_AND_ASSIGN(Literal actual, Evaluate({&size_arg, &data_arg})); in TEST_F()