Home
last modified time | relevance | path

Searched refs:result_handle (Results 1 – 8 of 8) sorted by relevance

/external/libchrome/mojo/public/cpp/system/
Dbuffer.cc28 SharedBufferHandle result_handle; in Clone() local
29 MojoDuplicateBufferHandle(value(), &options, result_handle.mutable_value()); in Clone()
30 result.reset(result_handle); in Clone()
/external/tensorflow/tensorflow/c/eager/parallel_device/
Dparallel_device_testlib.h132 TFE_TensorHandle* result_handle; in CreatePerDeviceValues() local
134 TFE_Execute(op.get(), &result_handle, &num_retvals, status); in CreatePerDeviceValues()
136 return TensorHandlePtr(result_handle); in CreatePerDeviceValues()
Dparallel_device_testlib.cc195 TFE_TensorHandle* result_handle; in Multiply() local
197 TFE_Execute(op.get(), &result_handle, &num_retvals, status); in Multiply()
199 return TensorHandlePtr(result_handle); in Multiply()
Dparallel_device_test.cc401 TFE_TensorHandle* result_handle; in CollectiveSum() local
403 TFE_Execute(op.get(), &result_handle, &num_retvals, status); in CollectiveSum()
405 return TensorHandlePtr(result_handle); in CollectiveSum()
/external/libchrome/ipc/
Dipc_message_utils_unittest.cc108 IPC::ChannelHandle result_handle; in TEST() local
109 EXPECT_TRUE(IPC::ReadParam(&message, &iter, &result_handle)); in TEST()
110 EXPECT_EQ(channel_handle.mojo_handle, result_handle.mojo_handle); in TEST()
/external/cronet/ipc/
Dipc_message_utils_unittest.cc112 IPC::ChannelHandle result_handle; in TEST() local
113 EXPECT_TRUE(IPC::ReadParam(&message, &iter, &result_handle)); in TEST()
114 EXPECT_EQ(channel_handle.mojo_handle, result_handle.mojo_handle); in TEST()
/external/tensorflow/tensorflow/c/eager/
Dc_api.cc429 TFE_TensorHandle* result_handle = device_.copy_tensor_to_device( in CopyTensorToDevice() local
433 *result = tensorflow::unwrap(result_handle); in CopyTensorToDevice()
435 TFE_DeleteTensorHandle(result_handle); in CopyTensorToDevice()
445 TFE_TensorHandle* result_handle = device_.copy_tensor_from_device( in CopyTensorFromDevice() local
450 *result = tensorflow::unwrap(result_handle); in CopyTensorFromDevice()
452 TFE_DeleteTensorHandle(result_handle); in CopyTensorFromDevice()
/external/tensorflow/tensorflow/core/common_runtime/eager/
Dexecute.cc181 TensorHandle* result_handle = nullptr; in CopyInputToExpectedDevice() local
190 /* mirror= */ true, &result_handle); in CopyInputToExpectedDevice()
200 *result = result_handle; in CopyInputToExpectedDevice()