Home
last modified time | relevance | path

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

/external/tensorflow/tensorflow/python/client/
Dsession_test.py630 sp_out = s.run(sp)
631 indices_out, values_out, shape_out = sp_out
636 sp_out = s.run(sp)
637 self.assertAllEqual(sp_out.indices, indices)
638 self.assertAllEqual(sp_out.values, values)
639 self.assertAllEqual(sp_out.dense_shape, shape)
651 sp_out, = s.run([sp])
652 self.assertAllEqual(sp_out.indices, indices)
653 self.assertAllEqual(sp_out.values, values)
654 self.assertAllEqual(sp_out.dense_shape, shape)
[all …]
/external/ipsec-tools/src/racoon/
Dpfkey.c1640 struct secpolicy *sp_out = NULL, *sp_in = NULL; local
1762 sp_out = getspbyspid(xpl->sadb_x_policy_id);
1763 if (sp_out == NULL) {
1769 "suitable outbound SP found: %s.\n", spidx2str(&sp_out->spidx));
1776 memcpy(&spidx.src, &sp_out->spidx.dst, sizeof(spidx.src));
1777 memcpy(&spidx.dst, &sp_out->spidx.src, sizeof(spidx.dst));
1778 spidx.prefs = sp_out->spidx.prefd;
1779 spidx.prefd = sp_out->spidx.prefs;
1780 spidx.ul_proto = sp_out->spidx.ul_proto;
1835 "new acquire %s\n", spidx2str(&sp_out->spidx));
[all …]
Disakmp_quick.c1912 struct secpolicy *sp_in, *sp_out; local
2152 sp_out = getsp_r(&spidx);
2153 if (!sp_out) {
2175 if (set_proposal_from_policy(iph2, sp_in, sp_out) < 0) {
/external/tensorflow/tensorflow/python/kernel_tests/
Dsparse_tensors_map_ops_test.py90 sp_out = take_many_sparse_from_tensors_map(
93 combined_indices, combined_values, combined_shape = self.evaluate(sp_out)