Home
last modified time | relevance | path

Searched refs:end_data (Results 1 – 12 of 12) sorted by relevance

/third_party/gstreamer/gstreamer/tests/check/libs/
Dbytewriter.c85 guint64 end_data = G_GUINT64_CONSTANT (0xff34567890abcdef); in GST_START_TEST() local
90 end_data = GUINT64_TO_BE (end_data); in GST_START_TEST()
123 fail_unless (memcmp (&end_data, data, 8) == 0); in GST_START_TEST()
132 guint64 end_data = G_GUINT64_CONSTANT (0xff34567890abcdef); in GST_START_TEST() local
136 end_data = GUINT64_TO_BE (end_data); in GST_START_TEST()
168 fail_unless (memcmp (&end_data, data, 8) == 0); in GST_START_TEST()
169 end_data = GUINT64_TO_BE (G_GUINT64_CONSTANT (0x1234567890abcdef)); in GST_START_TEST()
170 fail_unless (memcmp (&end_data, data + 8, 8) == 0); in GST_START_TEST()
/third_party/mindspore/mindspore/ccsrc/backend/kernel_compiler/cpu/nnacl/infer/
Dstrided_slice_infer.c55 const TensorC *end_tensor, int *end_data) { in HandleAxesCheckNull() argument
56 … == NULL || begin_tensor == NULL || end_tensor == NULL || begin_data == NULL || end_data == NULL) { in HandleAxesCheckNull()
66 int *end_data = (int *)(end_tensor->data_); in HandleAxesInputNotExist() local
69 if (begin_data == NULL || end_data == NULL || stride_data == NULL) { in HandleAxesInputNotExist()
75 ShapePush(transfer_buffer->ends_, &transfer_buffer->ends_size_, end_data[i]); in HandleAxesInputNotExist()
114 int *end_data = (int *)(end_tensor->data_); in HandleAxesInputExist() local
116 …ndle_check_ret = HandleAxesCheckNull(input_tensor, begin_tensor, begin_data, end_tensor, end_data); in HandleAxesInputExist()
173 ends[i] = imax(imin(end_data[axis], input_tensor->shape_[i]), -input_tensor->shape_[i] - 1); in HandleAxesInputExist()
Dstrided_slice_grad_infer.c85 int *end_data = (int *)(inputs[3]->data_); in StridedSliceGradInferShape() local
91 ShapePush(ends_, &ends_size, end_data[i]); in StridedSliceGradInferShape()
/third_party/musl/porting/liteos_a/kernel/include/sys/
Dprctl.h92 uint64_t end_data; member
/third_party/musl/ndk_musl_include/sys/
Dprctl.h92 uint64_t end_data; member
/third_party/musl/porting/uniproton/kernel/include/sys/
Dprctl.h92 uint64_t end_data; member
/third_party/musl/porting/liteos_m/kernel/include/sys/
Dprctl.h92 uint64_t end_data; member
/third_party/musl/porting/liteos_a_newlib/kernel/include/sys/
Dprctl.h92 uint64_t end_data; member
/third_party/musl/porting/liteos_m_iccarm/kernel/include/sys/
Dprctl.h92 uint64_t end_data; member
/third_party/musl/include/sys/
Dprctl.h92 uint64_t end_data; member
/third_party/gstreamer/gstplugins_bad/ext/libde265/
Dlibde265-dec.c765 uint8_t *end_data; in gst_libde265_dec_handle_frame() local
785 end_data = frame_data + size; in gst_libde265_dec_handle_frame()
791 while (start_data + dec->length_size <= end_data) { in gst_libde265_dec_handle_frame()
797 if (start_data + dec->length_size + nal_size > end_data) { in gst_libde265_dec_handle_frame()
/third_party/python/Lib/
Dplistlib.py267 def end_data(self): member in _PlistParser