Home
last modified time | relevance | path

Searched refs:stream (Results 2876 - 2900 of 4260) sorted by relevance

1...<<111112113114115116117118119120>>...171

/third_party/python/Lib/xmlrpc/
H A Dclient.py1088 # @param response A stream supporting a read() method
1334 stream = GzipDecodedResponse(response)
1336 stream = response
1338 stream = response
1343 data = stream.read(1024)
1350 if stream is not response:
1351 stream.close()
/kernel/linux/linux-5.10/drivers/media/pci/ngene/
H A Dngene-core.c105 /* Stop processing stream */ in demux_tasklet()
116 break; /* Stop processing stream */ in demux_tasklet()
453 /* Set NGENE I2S Config to transport stream compatible mode */
540 static int ngene_command_stream_control(struct ngene *dev, u8 stream, in ngene_command_stream_control() argument
544 struct ngene_channel *chan = &dev->channel[stream]; in ngene_command_stream_control()
546 u16 BsUVI = ((stream & 1) ? 0x9400 : 0x9300); in ngene_command_stream_control()
547 u16 BsSDI = ((stream & 1) ? 0x9600 : 0x9500); in ngene_command_stream_control()
548 u16 BsSPI = ((stream & 1) ? 0x9800 : 0x9700); in ngene_command_stream_control()
554 com.cmd.StreamControl.Stream = stream | (control ? 8 : 0); in ngene_command_stream_control()
632 4 * dev->card_info->i2s[stream], in ngene_command_stream_control()
[all...]
/kernel/linux/linux-5.10/sound/soc/codecs/
H A Dmt6359.c2425 dev_dbg(priv->dev, "%s(), id %d, substream->stream %d, rate %d, number %d\n", in mt6359_codec_dai_hw_params()
2426 __func__, id, substream->stream, rate, substream->number); in mt6359_codec_dai_hw_params()
2428 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) in mt6359_codec_dai_hw_params()
2430 else if (substream->stream == SNDRV_PCM_STREAM_CAPTURE) in mt6359_codec_dai_hw_params()
2442 dev_dbg(priv->dev, "%s stream %d\n", __func__, substream->stream); in mt6359_codec_dai_startup()
2443 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) in mt6359_codec_dai_startup()
2445 else if (substream->stream == SNDRV_PCM_STREAM_CAPTURE) in mt6359_codec_dai_startup()
2457 dev_dbg(priv->dev, "%s stream %d\n", __func__, substream->stream); in mt6359_codec_dai_shutdown()
[all...]
/kernel/linux/linux-6.6/drivers/media/pci/ngene/
H A Dngene-core.c105 /* Stop processing stream */ in demux_tasklet()
116 break; /* Stop processing stream */ in demux_tasklet()
453 /* Set NGENE I2S Config to transport stream compatible mode */
540 static int ngene_command_stream_control(struct ngene *dev, u8 stream, in ngene_command_stream_control() argument
544 struct ngene_channel *chan = &dev->channel[stream]; in ngene_command_stream_control()
546 u16 BsUVI = ((stream & 1) ? 0x9400 : 0x9300); in ngene_command_stream_control()
547 u16 BsSDI = ((stream & 1) ? 0x9600 : 0x9500); in ngene_command_stream_control()
548 u16 BsSPI = ((stream & 1) ? 0x9800 : 0x9700); in ngene_command_stream_control()
554 com.cmd.StreamControl.Stream = stream | (control ? 8 : 0); in ngene_command_stream_control()
632 4 * dev->card_info->i2s[stream], in ngene_command_stream_control()
[all...]
/kernel/linux/linux-6.6/sound/soc/codecs/
H A Dmt6359.c2653 dev_dbg(priv->dev, "%s(), id %d, substream->stream %d, rate %d, number %d\n", in mt6359_codec_dai_hw_params()
2654 __func__, id, substream->stream, rate, substream->number); in mt6359_codec_dai_hw_params()
2656 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) in mt6359_codec_dai_hw_params()
2658 else if (substream->stream == SNDRV_PCM_STREAM_CAPTURE) in mt6359_codec_dai_hw_params()
2670 dev_dbg(priv->dev, "%s stream %d\n", __func__, substream->stream); in mt6359_codec_dai_startup()
2671 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) in mt6359_codec_dai_startup()
2673 else if (substream->stream == SNDRV_PCM_STREAM_CAPTURE) in mt6359_codec_dai_startup()
2685 dev_dbg(priv->dev, "%s stream %d\n", __func__, substream->stream); in mt6359_codec_dai_shutdown()
[all...]
/third_party/alsa-lib/src/pcm/
H A Dpcm_multi.c421 if (pcm->stream == SND_PCM_STREAM_PLAYBACK) { in snd_pcm_multi_hwptr_update()
1086 snd_pcm_stream_t stream; in snd_pcm_multi_open() local
1099 stream = slaves_pcm[0]->stream; in snd_pcm_multi_open()
1117 assert(slaves_pcm[i]->stream == stream); in snd_pcm_multi_open()
1133 err = snd_pcm_new(&pcm, SND_PCM_TYPE_MULTI, name, stream, in snd_pcm_multi_open()
1185 hw:0,1) as one 4-channel stereo PCM stream, define like this:
1236 * \param stream Stream type
1245 snd_pcm_stream_t stream, in in _snd_pcm_multi_open()
1243 _snd_pcm_multi_open(snd_pcm_t **pcmp, const char *name, snd_config_t *root, snd_config_t *conf, snd_pcm_stream_t stream, int mode) _snd_pcm_multi_open() argument
[all...]
/third_party/node/lib/
H A Dnet.js43 const stream = require('stream');
421 stream.Duplex.call(this, options);
493 // Stop the handle from reading and pause the stream
510 ObjectSetPrototypeOf(Socket.prototype, stream.Duplex.prototype);
511 ObjectSetPrototypeOf(Socket, stream.Duplex);
561 return stream.Duplex.prototype.write.call(this, chunk, encoding, cb);
731 stream.Duplex.prototype.end.call(this,
763 return stream.Duplex.prototype.pause.call(this);
772 return stream
[all...]
/third_party/mesa3d/src/mesa/main/
H A Ddraw.c579 GLuint stream, in _mesa_validate_DrawTransformFeedback()
588 if (!obj || !obj->EverBound || stream >= ctx->Const.MaxVertexStreams || in _mesa_validate_DrawTransformFeedback()
2283 * \param stream index of the transform feedback stream from which to
2290 GLuint stream, GLuint numInstances) in _mesa_draw_transform_feedback()
2301 !_mesa_validate_DrawTransformFeedback(ctx, mode, obj, stream, in _mesa_draw_transform_feedback()
2309 st_draw_transform_feedback(ctx, mode, numInstances, stream, obj); in _mesa_draw_transform_feedback()
2337 _mesa_DrawTransformFeedbackStream(GLenum mode, GLuint name, GLuint stream) in _mesa_DrawTransformFeedbackStream() argument
2343 _mesa_draw_transform_feedback(ctx, mode, obj, stream, 1); in _mesa_DrawTransformFeedbackStream()
2361 GLuint stream, in _mesa_DrawTransformFeedbackStreamInstanced()
576 _mesa_validate_DrawTransformFeedback(struct gl_context *ctx, GLenum mode, struct gl_transform_feedback_object *obj, GLuint stream, GLsizei numInstances) _mesa_validate_DrawTransformFeedback() argument
2288 _mesa_draw_transform_feedback(struct gl_context *ctx, GLenum mode, struct gl_transform_feedback_object *obj, GLuint stream, GLuint numInstances) _mesa_draw_transform_feedback() argument
2360 _mesa_DrawTransformFeedbackStreamInstanced(GLenum mode, GLuint name, GLuint stream, GLsizei primcount) _mesa_DrawTransformFeedbackStreamInstanced() argument
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/pipeline/
H A DvktPipelineSamplerBorderSwizzleTests.cpp1124 std::ostringstream stream; in swizzleArrayToString() local
1130 case VK_COMPONENT_SWIZZLE_IDENTITY: stream << "i"; break; in swizzleArrayToString()
1131 case VK_COMPONENT_SWIZZLE_ZERO: stream << "0"; break; in swizzleArrayToString()
1132 case VK_COMPONENT_SWIZZLE_ONE: stream << "1"; break; in swizzleArrayToString()
1133 case VK_COMPONENT_SWIZZLE_R: stream << "r"; break; in swizzleArrayToString()
1134 case VK_COMPONENT_SWIZZLE_G: stream << "g"; break; in swizzleArrayToString()
1135 case VK_COMPONENT_SWIZZLE_B: stream << "b"; break; in swizzleArrayToString()
1136 case VK_COMPONENT_SWIZZLE_A: stream << "a"; break; in swizzleArrayToString()
1142 return stream.str(); in swizzleArrayToString()
/third_party/vk-gl-cts/external/openglcts/modules/common/
H A DglcUniformBlockCase.cpp194 std::ostream& operator<<(std::ostream& stream, const BlockLayoutEntry& entry) in operator <<() argument
196 stream << entry.name << " { name = " << entry.name << ", size = " << entry.size << ", activeUniformIndices = ["; in operator <<()
201 stream << ", "; in operator <<()
202 stream << *i; in operator <<()
205 stream << "] }"; in operator <<()
206 return stream; in operator <<()
226 std::ostream& operator<<(std::ostream& stream, const UniformLayoutEntry& entry) in operator <<() argument
228 stream << entry.name << " { type = " << glu::getDataTypeName(entry.type) << ", size = " << entry.size in operator <<()
232 return stream; in operator <<()
/third_party/protobuf/src/google/protobuf/
H A Dwrappers.pb.h181 ::PROTOBUF_NAMESPACE_ID::uint8* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream) const final;
318 ::PROTOBUF_NAMESPACE_ID::uint8* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream) const final;
455 ::PROTOBUF_NAMESPACE_ID::uint8* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream) const final;
592 ::PROTOBUF_NAMESPACE_ID::uint8* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream) const final;
729 ::PROTOBUF_NAMESPACE_ID::uint8* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream) const final;
866 ::PROTOBUF_NAMESPACE_ID::uint8* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream) const final;
1003 ::PROTOBUF_NAMESPACE_ID::uint8* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream) const final;
1140 ::PROTOBUF_NAMESPACE_ID::uint8* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream) const final;
1284 ::PROTOBUF_NAMESPACE_ID::uint8* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream) const final;
/third_party/rust/crates/libc/src/fuchsia/
H A Dmod.rs3385 pub fn setvbuf(stream: *mut FILE, buffer: *mut c_char, mode: c_int, size: size_t) -> c_int; in setvbuf()
3386 pub fn setbuf(stream: *mut FILE, buf: *mut c_char); in setbuf()
3389 pub fn fgetc(stream: *mut FILE) -> c_int; in fgetc()
3390 pub fn fgets(buf: *mut c_char, n: c_int, stream: *mut FILE) -> *mut c_char; in fgets()
3391 pub fn fputc(c: c_int, stream: *mut FILE) -> c_int; in fputc()
3392 pub fn fputs(s: *const c_char, stream: *mut FILE) -> c_int; in fputs()
3394 pub fn ungetc(c: c_int, stream: *mut FILE) -> c_int; in ungetc()
3395 pub fn fread(ptr: *mut c_void, size: size_t, nobj: size_t, stream: *mut FILE) -> size_t; in fread()
3396 pub fn fwrite(ptr: *const c_void, size: size_t, nobj: size_t, stream: *mut FILE) -> size_t; in fwrite()
3397 pub fn fseek(stream in fwrite()
[all...]
/kernel/linux/linux-5.10/net/sctp/
H A Dsm_make_chunk.c91 asoc->stream.si->enqueue_event(&asoc->ulpq, ev); in sctp_control_release_owner()
734 dp.stream = htons(sinfo->sinfo_stream); in sctp_make_datafrag_empty()
1536 struct sctp_stream *stream; in sctp_chunk_assign_ssn() local
1544 /* All fragments will be on the same stream */ in sctp_chunk_assign_ssn()
1545 sid = ntohs(chunk->subh.data_hdr->stream); in sctp_chunk_assign_ssn()
1546 stream = &chunk->asoc->stream; in sctp_chunk_assign_ssn()
1549 * All fragments must have the same stream sequence number. in sctp_chunk_assign_ssn()
1557 ssn = sctp_ssn_next(stream, out, sid); in sctp_chunk_assign_ssn()
1559 ssn = sctp_ssn_peek(stream, ou in sctp_chunk_assign_ssn()
[all...]
/kernel/linux/linux-5.10/drivers/media/usb/dvb-usb/
H A Ddw2102.c1999 .stream = {
2054 .stream = {
2106 .stream = {
2153 .stream = {
2200 .stream = {
2247 .stream = {
2302 .stream = {
2351 .stream = {
2428 .stream = {
2481 .stream
[all...]
/kernel/linux/linux-6.6/drivers/media/usb/dvb-usb/
H A Ddw2102.c1991 .stream = {
2046 .stream = {
2098 .stream = {
2145 .stream = {
2192 .stream = {
2239 .stream = {
2294 .stream = {
2343 .stream = {
2424 .stream = {
2477 .stream
[all...]
/kernel/linux/linux-6.6/net/sctp/
H A Dsm_make_chunk.c91 asoc->stream.si->enqueue_event(&asoc->ulpq, ev); in sctp_control_release_owner()
734 dp.stream = htons(sinfo->sinfo_stream); in sctp_make_datafrag_empty()
1581 struct sctp_stream *stream; in sctp_chunk_assign_ssn() local
1589 /* All fragments will be on the same stream */ in sctp_chunk_assign_ssn()
1590 sid = ntohs(chunk->subh.data_hdr->stream); in sctp_chunk_assign_ssn()
1591 stream = &chunk->asoc->stream; in sctp_chunk_assign_ssn()
1594 * All fragments must have the same stream sequence number. in sctp_chunk_assign_ssn()
1602 ssn = sctp_ssn_next(stream, out, sid); in sctp_chunk_assign_ssn()
1604 ssn = sctp_ssn_peek(stream, ou in sctp_chunk_assign_ssn()
[all...]
/drivers/peripheral/camera/vdi_base/common/adapter/platform/v4l2/src/driver_adapter/include/
H A Dv4l2_buffer.h32 #include <stream.h>
/drivers/peripheral/audio/supportlibs/alsa_adapter/include/
H A Dalsa_soundcard.h114 int32_t SndSaveCardListInfo(snd_pcm_stream_t stream);
/foundation/communication/bluetooth_service/services/bluetooth/service/src/gavdp/
H A Da2dp_def.h77 #define A2DP_STREAM_HANDLES_NUMBER 1 // number of start stream
200 StreamInfo stream; member
/foundation/multimedia/image_framework/plugins/common/libs/image/libjpegplugin/include/
H A Djpeg_decoder.h85 bool FindMarker(InputDataStream &stream, uint8_t marker);
/foundation/multimedia/media_foundation/engine/plugin/plugins/sink/sdl/audio_sink/
H A Dsdl_audio_sink_plugin.h86 void AudioCallback(void* userdata, uint8_t* stream, int len); // NOLINT: void*
/foundation/multimedia/image_framework/plugins/common/libs/image/libextplugin/include/heif_impl/heif_parser/
H A Dheif_stream.h62 HeifStreamReader(std::shared_ptr<HeifInputStream> stream,
/foundation/multimedia/media_lite/services/player_lite/impl/player_control/player/
H A Dliteplayer_state_machine.h54 virtual int32_t DoSetDataSource(BufferStream &stream) = 0;
/foundation/multimedia/media_utils_lite/interfaces/kits/
H A Dsource.h63 /** Stream data, such as Advanced Audio Coding (AAC) stream data */
78 * @brief Enumerates buffer types of stream sources.
123 * @brief Sets additional information about a stream.
125 * @param params Indicates the parameters for additional stream information. For details, see {@link Format}.
133 * @brief Provides functions related to the stream source for upper-layer applications.
220 * @brief A constructor used to create a {@link Source} instance based on the stream source and format information.
224 * @param stream Indicates the media source stream. For details, see {@link StreamSource}.
225 * @param formats Indicates stream data information, which is subject to the stream typ
[all...]
/kernel/linux/linux-5.10/drivers/gpu/drm/amd/display/dc/dcn20/
H A Ddcn20_hwseq.h46 const struct dc_stream_state *stream);

Completed in 48 milliseconds

1...<<111112113114115116117118119120>>...171