Home
last modified time | relevance | path

Searched refs:in_bufs (Results 1 – 5 of 5) sorted by relevance

/external/tensorflow/tensorflow/contrib/proto/python/kernel_tests/
Dencode_proto_op_test_base.py136 def _testRoundtrip(self, in_bufs, message_type, fields): argument
143 in_bufs,
157 self.assertEqual(in_bufs.shape, out_bufs.shape)
160 for in_buf, out_buf in zip(in_bufs.flat, out_bufs.flat):
180 in_bufs = [value.SerializeToString() for value in case.values]
183 in_bufs = np.reshape(np.array(in_bufs, dtype=object), list(case.shapes))
185 in_bufs, 'tensorflow.contrib.proto.TestValue', case.fields)
195 in_bufs = [
206 in_bufs = np.reshape(np.array(in_bufs, dtype=object), list(case.shapes))
208 in_bufs, 'tensorflow.contrib.proto.PackedTestValue', case.fields)
Ddescriptor_source_test_base.py133 in_bufs = np.array(
142 in_bufs,
158 self.assertEqual(in_bufs.shape, out_bufs.shape)
161 for in_buf, out_buf in zip(in_bufs.flat, out_bufs.flat):
/external/libxcam/modules/soft/
Dsoft_stitcher.h51 SmartPtr<VideoBuffer> in_bufs[XCAM_STITCH_MAX_CAMERAS]; member
68 XCamReturn stitch_buffers (const VideoBufferList &in_bufs, SmartPtr<VideoBuffer> &out_buf);
Dsoft_stitcher.cpp463 dewarp_params->in_buf = param->in_bufs[i]; in start_dewarp_works()
735 SoftStitcher::stitch_buffers (const VideoBufferList &in_bufs, SmartPtr<VideoBuffer> &out_buf) in stitch_buffers() argument
738 ERROR, !in_bufs.empty (), XCAM_RETURN_ERROR_PARAM, in stitch_buffers()
744 for (VideoBufferList::const_iterator i = in_bufs.begin(); i != in_bufs.end (); ++i) { in stitch_buffers()
747 param->in_bufs[count++] = buf; in stitch_buffers()
933 … ERROR, param.ptr () && param->in_buf_num > 0 && param->in_bufs[0].ptr (), XCAM_RETURN_ERROR_PARAM, in start_work()
/external/libxcam/xcore/interface/
Dstitcher.h161 …virtual XCamReturn stitch_buffers (const VideoBufferList &in_bufs, SmartPtr<VideoBuffer> &out_buf)…