Home
last modified time | relevance | path

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

/third_party/gstreamer/gstplugins_good/ext/wavpack/
Dgstwavpackstreamreader.c34 read_id *rid = (read_id *) id; in gst_wavpack_stream_reader_read_bytes()
54 GST_DEBUG ("Returning position %d", ((read_id *) id)->position); in gst_wavpack_stream_reader_get_pos()
55 return ((read_id *) id)->position; in gst_wavpack_stream_reader_get_pos()
77 read_id *rid = (read_id *) id; in gst_wavpack_stream_reader_push_back_byte()
91 GST_DEBUG ("Returning length %d", ((read_id *) id)->length); in gst_wavpack_stream_reader_get_length()
93 return ((read_id *) id)->length; in gst_wavpack_stream_reader_get_length()
Dgstwavpackstreamreader.h32 } read_id; typedef
Dgstwavpackdec.h48 read_id wv_id;
/third_party/gstreamer/gstplugins_base/gst-libs/gst/rtp/
Dgstrtpbuffer.c1381 guint8 read_id, read_len; in _get_extension_onebyte_header() local
1386 read_id = GST_READ_UINT8 (pdata + offset) >> 4; in _get_extension_onebyte_header()
1391 if (read_id == 0) in _get_extension_onebyte_header()
1395 if (read_id == 15) in _get_extension_onebyte_header()
1403 if (id == read_id) { in _get_extension_onebyte_header()
1524 guint8 read_id, read_len; in gst_rtp_buffer_get_extension_twobytes_header() local
1529 read_id = GST_READ_UINT8 (pdata + offset); in gst_rtp_buffer_get_extension_twobytes_header()
1532 if (read_id == 0) in gst_rtp_buffer_get_extension_twobytes_header()
1543 if (id == read_id) { in gst_rtp_buffer_get_extension_twobytes_header()
1572 guint8 read_id, read_len; in get_onebyte_header_end_offset() local
[all …]
Dgstrtpbasedepayload.c1184 guint8 read_id, read_len; in read_rtp_header_extensions() local
1193 read_id = GST_READ_UINT8 (pdata + offset) >> 4; in read_rtp_header_extensions()
1197 if (read_id == 0) in read_rtp_header_extensions()
1201 if (read_id == 15) in read_rtp_header_extensions()
1205 read_id = GST_READ_UINT8 (pdata + offset); in read_rtp_header_extensions()
1208 if (read_id == 0) in read_rtp_header_extensions()
1216 "length %u", read_id, read_len); in read_rtp_header_extensions()
1228 if (read_id == gst_rtp_header_extension_get_id (ext)) { in read_rtp_header_extensions()
/third_party/pulseaudio/src/modules/
Dudev-util.c34 static int read_id(struct udev_device *d, const char *n) { in read_id() function
209 if ((id = read_id(card, "ID_VENDOR_ID")) > 0) in pa_udev_get_info()
223 if ((id = read_id(card, "ID_MODEL_ID")) >= 0) in pa_udev_get_info()
/third_party/alsa-utils/seq/aplaymidi/
Daplaymidi.c228 static int read_id(void) in read_id() function
538 int id = read_id(); in read_smf()
567 if (read_id() != MAKE_ID('R', 'M', 'I', 'D')) { in read_riff()
574 int id = read_id(); in read_riff()
588 if (read_id() != MAKE_ID('M', 'T', 'h', 'd')) in read_riff()
790 switch (read_id()) { in play_file()
/third_party/flutter/skia/src/core/
DSkFontDescriptor.cpp53 static size_t SK_WARN_UNUSED_RESULT read_id(SkStream* stream) { in read_id() function
69 for (size_t id; (id = read_id(stream)) != kSentinel;) { in Deserialize()
/third_party/skia/src/core/
DSkFontDescriptor.cpp51 static size_t SK_WARN_UNUSED_RESULT read_id(SkStream* stream) { in read_id() function
70 for (size_t id; (id = read_id(stream)) != kSentinel;) { in Deserialize()
/third_party/mindspore/mindspore/ccsrc/backend/kernel_compiler/gpu/cuda_impl/
Dgather_grad.cu40 size_t read_id = i * dim_at_axis_output * dim_after_axis + j_read * dim_after_axis + k; in GatherGradKernel() local
41 MsAtomicAdd(output + read_id, grad[id]); in GatherGradKernel()
Dgather.cu38 size_t read_id = i * dim_at_axis_input * dim_after_axis + j_read * dim_after_axis + k; in GatherKernel() local
39 output[id] = input[read_id]; in GatherKernel()
/third_party/mindspore/mindspore/ops/_grad/
Dgrad_array_ops.py475 read_id = i*dim_at_axis_output*dim_after_axis + j_read * dim_after_axis + k
477 dx = op(dout, read_id, 0)