Home
last modified time | relevance | path

Searched refs:stream (Results 1 - 25 of 4357) sorted by relevance

12345678910>>...175

/third_party/pulseaudio/sonic/
H A Dsonic.c87 /* Get the speed of the stream. */
89 sonicStream stream) in sonicGetSpeed()
91 return stream->speed; in sonicGetSpeed()
94 /* Set the speed of the stream. */
96 sonicStream stream, in sonicSetSpeed()
99 stream->speed = speed; in sonicSetSpeed()
102 /* Get the pitch of the stream. */
104 sonicStream stream) in sonicGetPitch()
106 return stream->pitch; in sonicGetPitch()
109 /* Set the pitch of the stream
88 sonicGetSpeed( sonicStream stream) sonicGetSpeed() argument
95 sonicSetSpeed( sonicStream stream, float speed) sonicSetSpeed() argument
103 sonicGetPitch( sonicStream stream) sonicGetPitch() argument
110 sonicSetPitch( sonicStream stream, float pitch) sonicSetPitch() argument
118 sonicGetRate( sonicStream stream) sonicGetRate() argument
125 sonicSetRate( sonicStream stream, float rate) sonicSetRate() argument
136 sonicGetChordPitch( sonicStream stream) sonicGetChordPitch() argument
143 sonicSetChordPitch( sonicStream stream, int useChordPitch) sonicSetChordPitch() argument
151 sonicGetQuality( sonicStream stream) sonicGetQuality() argument
158 sonicSetQuality( sonicStream stream, int quality) sonicSetQuality() argument
166 sonicGetVolume( sonicStream stream) sonicGetVolume() argument
173 sonicSetVolume( sonicStream stream, float volume) sonicSetVolume() argument
181 freeStreamBuffers( sonicStream stream) freeStreamBuffers() argument
199 sonicDestroyStream( sonicStream stream) sonicDestroyStream() argument
207 allocateStreamBuffers( sonicStream stream, int sampleRate, int numChannels) allocateStreamBuffers() argument
256 sonicStream stream = (sonicStream)calloc(1, sizeof(struct sonicStreamStruct)); sonicCreateStream() local
276 sonicGetSampleRate( sonicStream stream) sonicGetSampleRate() argument
284 sonicSetSampleRate( sonicStream stream, int sampleRate) sonicSetSampleRate() argument
293 sonicGetNumChannels( sonicStream stream) sonicGetNumChannels() argument
301 sonicSetNumChannels( sonicStream stream, int numChannels) sonicSetNumChannels() argument
310 enlargeOutputBufferIfNeeded( sonicStream stream, int numSamples) enlargeOutputBufferIfNeeded() argument
326 enlargeInputBufferIfNeeded( sonicStream stream, int numSamples) enlargeInputBufferIfNeeded() argument
342 addFloatSamplesToInputBuffer( sonicStream stream, float *samples, int numSamples) addFloatSamplesToInputBuffer() argument
365 addShortSamplesToInputBuffer( sonicStream stream, short *samples, int numSamples) addShortSamplesToInputBuffer() argument
383 addUnsignedCharSamplesToInputBuffer( sonicStream stream, unsigned char *samples, int numSamples) addUnsignedCharSamplesToInputBuffer() argument
406 removeInputSamples( sonicStream stream, int position) removeInputSamples() argument
420 copyToOutput( sonicStream stream, short *samples, int numSamples) copyToOutput() argument
436 copyInputToOutput( sonicStream stream, int position) copyInputToOutput() argument
455 sonicReadFloatFromStream( sonicStream stream, float *samples, int maxSamples) sonicReadFloatFromStream() argument
487 sonicReadShortFromStream( sonicStream stream, short *samples, int maxSamples) sonicReadShortFromStream() argument
513 sonicReadUnsignedCharFromStream( sonicStream stream, unsigned char *samples, int maxSamples) sonicReadUnsignedCharFromStream() argument
546 sonicFlushStream( sonicStream stream) sonicFlushStream() argument
578 sonicSamplesAvailable( sonicStream stream) sonicSamplesAvailable() argument
587 downSampleInput( sonicStream stream, short *samples, int skip) downSampleInput() argument
651 prevPeriodBetter( sonicStream stream, int period, int minDiff, int maxDiff, int preferNewPeriod) prevPeriodBetter() argument
682 findPitchPeriod( sonicStream stream, short *samples, int preferNewPeriod) findPitchPeriod() argument
798 moveNewSamplesToPitchBuffer( sonicStream stream, int originalNumOutputSamples) moveNewSamplesToPitchBuffer() argument
822 removePitchSamples( sonicStream stream, int numSamples) removePitchSamples() argument
841 adjustPitch( sonicStream stream, int originalNumOutputSamples) adjustPitch() argument
882 interpolate( sonicStream stream, short *in, int oldSampleRate, int newSampleRate) interpolate() argument
900 adjustRate( sonicStream stream, float rate, int originalNumOutputSamples) adjustRate() argument
956 skipPitchPeriod( sonicStream stream, short *samples, float speed, int period) skipPitchPeriod() argument
981 insertPitchPeriod( sonicStream stream, short *samples, float speed, int period) insertPitchPeriod() argument
1010 changeSpeed( sonicStream stream, float speed) changeSpeed() argument
1047 processStreamInput( sonicStream stream) processStreamInput() argument
1086 sonicWriteFloatToStream( sonicStream stream, float *samples, int numSamples) sonicWriteFloatToStream() argument
1099 sonicWriteShortToStream( sonicStream stream, short *samples, int numSamples) sonicWriteShortToStream() argument
1112 sonicWriteUnsignedCharToStream( sonicStream stream, unsigned char *samples, int numSamples) sonicWriteUnsignedCharToStream() argument
1135 sonicStream stream = sonicCreateStream(sampleRate, numChannels); sonicChangeFloatSpeed() local
1162 sonicStream stream = sonicCreateStream(sampleRate, numChannels); sonicChangeShortSpeed() local
[all...]
/third_party/nghttp2/lib/
H A Dnghttp2_stream.c35 /* Maximum distance between any two stream's cycle in the same
36 priority queue. Imagine stream A's cycle is A, and stream B's
60 void nghttp2_stream_init(nghttp2_stream *stream, int32_t stream_id, in nghttp2_stream_init() argument
65 nghttp2_pq_init(&stream->obq, stream_less, mem); in nghttp2_stream_init()
67 stream->stream_id = stream_id; in nghttp2_stream_init()
68 stream->flags = flags; in nghttp2_stream_init()
69 stream->state = initial_state; in nghttp2_stream_init()
70 stream->shut_flags = NGHTTP2_SHUT_NONE; in nghttp2_stream_init()
71 stream in nghttp2_stream_init()
107 nghttp2_stream_free(nghttp2_stream *stream) nghttp2_stream_free() argument
114 nghttp2_stream_shutdown(nghttp2_stream *stream, nghttp2_shut_flag flag) nghttp2_stream_shutdown() argument
122 stream_active(nghttp2_stream *stream) stream_active() argument
130 stream_subtree_active(nghttp2_stream *stream) stream_subtree_active() argument
137 stream_next_cycle(nghttp2_stream *stream, uint64_t last_cycle) stream_next_cycle() argument
147 stream_obq_push(nghttp2_stream *dep_stream, nghttp2_stream *stream) stream_obq_push() argument
176 stream_obq_remove(nghttp2_stream *stream) stream_obq_remove() argument
211 stream_obq_move(nghttp2_stream *dest, nghttp2_stream *src, nghttp2_stream *stream) stream_obq_move() argument
226 nghttp2_stream_reschedule(nghttp2_stream *stream) nghttp2_stream_reschedule() argument
248 nghttp2_stream_change_weight(nghttp2_stream *stream, int32_t weight) nghttp2_stream_change_weight() argument
304 stream_last_sib(nghttp2_stream *stream) stream_last_sib() argument
311 nghttp2_stream_dep_distributed_weight(nghttp2_stream *stream, int32_t weight) nghttp2_stream_dep_distributed_weight() argument
320 ensure_inactive(nghttp2_stream *stream) ensure_inactive() argument
346 check_queued(nghttp2_stream *stream) check_queued() argument
394 check_sum_dep(nghttp2_stream *stream) check_sum_dep() argument
410 check_dep_prev(nghttp2_stream *stream) check_dep_prev() argument
424 validate_tree(nghttp2_stream *stream) validate_tree() argument
453 validate_tree(nghttp2_stream *stream) validate_tree() argument
456 stream_update_dep_on_attach_item(nghttp2_stream *stream) stream_update_dep_on_attach_item() argument
468 stream_update_dep_on_detach_item(nghttp2_stream *stream) stream_update_dep_on_detach_item() argument
476 nghttp2_stream_attach_item(nghttp2_stream *stream, nghttp2_outbound_item *item) nghttp2_stream_attach_item() argument
504 nghttp2_stream_detach_item(nghttp2_stream *stream) nghttp2_stream_detach_item() argument
517 nghttp2_stream_defer_item(nghttp2_stream *stream, uint8_t flags) nghttp2_stream_defer_item() argument
532 nghttp2_stream_resume_deferred_item(nghttp2_stream *stream, uint8_t flags) nghttp2_stream_resume_deferred_item() argument
551 nghttp2_stream_check_deferred_item(nghttp2_stream *stream) nghttp2_stream_check_deferred_item() argument
555 nghttp2_stream_check_deferred_by_flow_control(nghttp2_stream *stream) nghttp2_stream_check_deferred_by_flow_control() argument
573 nghttp2_stream_update_remote_initial_window_size( nghttp2_stream *stream, int32_t new_initial_window_size, int32_t old_initial_window_size) nghttp2_stream_update_remote_initial_window_size() argument
581 nghttp2_stream_update_local_initial_window_size( nghttp2_stream *stream, int32_t new_initial_window_size, int32_t old_initial_window_size) nghttp2_stream_update_local_initial_window_size() argument
589 nghttp2_stream_promise_fulfilled(nghttp2_stream *stream) nghttp2_stream_promise_fulfilled() argument
594 nghttp2_stream_dep_find_ancestor(nghttp2_stream *stream, nghttp2_stream *target) nghttp2_stream_dep_find_ancestor() argument
604 nghttp2_stream_dep_insert(nghttp2_stream *dep_stream, nghttp2_stream *stream) nghttp2_stream_dep_insert() argument
644 set_dep_prev(nghttp2_stream *stream, nghttp2_stream *dep) set_dep_prev() argument
650 link_dep(nghttp2_stream *dep_stream, nghttp2_stream *stream) link_dep() argument
664 insert_link_dep(nghttp2_stream *dep_stream, nghttp2_stream *stream) insert_link_dep() argument
677 unlink_sib(nghttp2_stream *stream) unlink_sib() argument
713 unlink_dep(nghttp2_stream *stream) unlink_dep() argument
753 nghttp2_stream_dep_add(nghttp2_stream *dep_stream, nghttp2_stream *stream) nghttp2_stream_dep_add() argument
769 nghttp2_stream_dep_remove(nghttp2_stream *stream) nghttp2_stream_dep_remove() argument
820 nghttp2_stream_dep_insert_subtree(nghttp2_stream *dep_stream, nghttp2_stream *stream) nghttp2_stream_dep_insert_subtree() argument
871 nghttp2_stream_dep_add_subtree(nghttp2_stream *dep_stream, nghttp2_stream *stream) nghttp2_stream_dep_add_subtree() argument
898 nghttp2_stream_dep_remove_subtree(nghttp2_stream *stream) nghttp2_stream_dep_remove_subtree() argument
933 nghttp2_stream_in_dep_tree(nghttp2_stream *stream) nghttp2_stream_in_dep_tree() argument
939 nghttp2_stream_next_outbound_item(nghttp2_stream *stream) nghttp2_stream_next_outbound_item() argument
960 nghttp2_stream_get_state(nghttp2_stream *stream) nghttp2_stream_get_state() argument
990 nghttp2_stream_get_parent(nghttp2_stream *stream) nghttp2_stream_get_parent() argument
994 nghttp2_stream_get_next_sibling(nghttp2_stream *stream) nghttp2_stream_get_next_sibling() argument
998 nghttp2_stream_get_previous_sibling(nghttp2_stream *stream) nghttp2_stream_get_previous_sibling() argument
1002 nghttp2_stream_get_first_child(nghttp2_stream *stream) nghttp2_stream_get_first_child() argument
1006 nghttp2_stream_get_weight(nghttp2_stream *stream) nghttp2_stream_get_weight() argument
1010 nghttp2_stream_get_sum_dependency_weight(nghttp2_stream *stream) nghttp2_stream_get_sum_dependency_weight() argument
1014 nghttp2_stream_get_stream_id(nghttp2_stream *stream) nghttp2_stream_get_stream_id() argument
[all...]
/third_party/node/deps/nghttp2/lib/
H A Dnghttp2_stream.c35 /* Maximum distance between any two stream's cycle in the same
36 priority queue. Imagine stream A's cycle is A, and stream B's
60 void nghttp2_stream_init(nghttp2_stream *stream, int32_t stream_id, in nghttp2_stream_init() argument
65 nghttp2_pq_init(&stream->obq, stream_less, mem); in nghttp2_stream_init()
67 stream->stream_id = stream_id; in nghttp2_stream_init()
68 stream->flags = flags; in nghttp2_stream_init()
69 stream->state = initial_state; in nghttp2_stream_init()
70 stream->shut_flags = NGHTTP2_SHUT_NONE; in nghttp2_stream_init()
71 stream in nghttp2_stream_init()
107 nghttp2_stream_free(nghttp2_stream *stream) nghttp2_stream_free() argument
114 nghttp2_stream_shutdown(nghttp2_stream *stream, nghttp2_shut_flag flag) nghttp2_stream_shutdown() argument
122 stream_active(nghttp2_stream *stream) stream_active() argument
130 stream_subtree_active(nghttp2_stream *stream) stream_subtree_active() argument
137 stream_next_cycle(nghttp2_stream *stream, uint64_t last_cycle) stream_next_cycle() argument
147 stream_obq_push(nghttp2_stream *dep_stream, nghttp2_stream *stream) stream_obq_push() argument
176 stream_obq_remove(nghttp2_stream *stream) stream_obq_remove() argument
211 stream_obq_move(nghttp2_stream *dest, nghttp2_stream *src, nghttp2_stream *stream) stream_obq_move() argument
226 nghttp2_stream_reschedule(nghttp2_stream *stream) nghttp2_stream_reschedule() argument
248 nghttp2_stream_change_weight(nghttp2_stream *stream, int32_t weight) nghttp2_stream_change_weight() argument
304 stream_last_sib(nghttp2_stream *stream) stream_last_sib() argument
311 nghttp2_stream_dep_distributed_weight(nghttp2_stream *stream, int32_t weight) nghttp2_stream_dep_distributed_weight() argument
320 ensure_inactive(nghttp2_stream *stream) ensure_inactive() argument
346 check_queued(nghttp2_stream *stream) check_queued() argument
394 check_sum_dep(nghttp2_stream *stream) check_sum_dep() argument
410 check_dep_prev(nghttp2_stream *stream) check_dep_prev() argument
424 validate_tree(nghttp2_stream *stream) validate_tree() argument
453 validate_tree(nghttp2_stream *stream) validate_tree() argument
456 stream_update_dep_on_attach_item(nghttp2_stream *stream) stream_update_dep_on_attach_item() argument
468 stream_update_dep_on_detach_item(nghttp2_stream *stream) stream_update_dep_on_detach_item() argument
476 nghttp2_stream_attach_item(nghttp2_stream *stream, nghttp2_outbound_item *item) nghttp2_stream_attach_item() argument
504 nghttp2_stream_detach_item(nghttp2_stream *stream) nghttp2_stream_detach_item() argument
517 nghttp2_stream_defer_item(nghttp2_stream *stream, uint8_t flags) nghttp2_stream_defer_item() argument
532 nghttp2_stream_resume_deferred_item(nghttp2_stream *stream, uint8_t flags) nghttp2_stream_resume_deferred_item() argument
551 nghttp2_stream_check_deferred_item(nghttp2_stream *stream) nghttp2_stream_check_deferred_item() argument
555 nghttp2_stream_check_deferred_by_flow_control(nghttp2_stream *stream) nghttp2_stream_check_deferred_by_flow_control() argument
573 nghttp2_stream_update_remote_initial_window_size( nghttp2_stream *stream, int32_t new_initial_window_size, int32_t old_initial_window_size) nghttp2_stream_update_remote_initial_window_size() argument
581 nghttp2_stream_update_local_initial_window_size( nghttp2_stream *stream, int32_t new_initial_window_size, int32_t old_initial_window_size) nghttp2_stream_update_local_initial_window_size() argument
589 nghttp2_stream_promise_fulfilled(nghttp2_stream *stream) nghttp2_stream_promise_fulfilled() argument
594 nghttp2_stream_dep_find_ancestor(nghttp2_stream *stream, nghttp2_stream *target) nghttp2_stream_dep_find_ancestor() argument
604 nghttp2_stream_dep_insert(nghttp2_stream *dep_stream, nghttp2_stream *stream) nghttp2_stream_dep_insert() argument
644 set_dep_prev(nghttp2_stream *stream, nghttp2_stream *dep) set_dep_prev() argument
650 link_dep(nghttp2_stream *dep_stream, nghttp2_stream *stream) link_dep() argument
664 insert_link_dep(nghttp2_stream *dep_stream, nghttp2_stream *stream) insert_link_dep() argument
677 unlink_sib(nghttp2_stream *stream) unlink_sib() argument
713 unlink_dep(nghttp2_stream *stream) unlink_dep() argument
753 nghttp2_stream_dep_add(nghttp2_stream *dep_stream, nghttp2_stream *stream) nghttp2_stream_dep_add() argument
769 nghttp2_stream_dep_remove(nghttp2_stream *stream) nghttp2_stream_dep_remove() argument
820 nghttp2_stream_dep_insert_subtree(nghttp2_stream *dep_stream, nghttp2_stream *stream) nghttp2_stream_dep_insert_subtree() argument
871 nghttp2_stream_dep_add_subtree(nghttp2_stream *dep_stream, nghttp2_stream *stream) nghttp2_stream_dep_add_subtree() argument
898 nghttp2_stream_dep_remove_subtree(nghttp2_stream *stream) nghttp2_stream_dep_remove_subtree() argument
933 nghttp2_stream_in_dep_tree(nghttp2_stream *stream) nghttp2_stream_in_dep_tree() argument
939 nghttp2_stream_next_outbound_item(nghttp2_stream *stream) nghttp2_stream_next_outbound_item() argument
960 nghttp2_stream_get_state(nghttp2_stream *stream) nghttp2_stream_get_state() argument
990 nghttp2_stream_get_parent(nghttp2_stream *stream) nghttp2_stream_get_parent() argument
994 nghttp2_stream_get_next_sibling(nghttp2_stream *stream) nghttp2_stream_get_next_sibling() argument
998 nghttp2_stream_get_previous_sibling(nghttp2_stream *stream) nghttp2_stream_get_previous_sibling() argument
1002 nghttp2_stream_get_first_child(nghttp2_stream *stream) nghttp2_stream_get_first_child() argument
1006 nghttp2_stream_get_weight(nghttp2_stream *stream) nghttp2_stream_get_weight() argument
1010 nghttp2_stream_get_sum_dependency_weight(nghttp2_stream *stream) nghttp2_stream_get_sum_dependency_weight() argument
1014 nghttp2_stream_get_stream_id(nghttp2_stream *stream) nghttp2_stream_get_stream_id() argument
[all...]
/third_party/mesa3d/src/gallium/auxiliary/util/
H A Du_dump_state.c45 util_stream_writef(FILE *stream, const char *format, ...) in util_stream_writef() argument
53 fwrite(buf, len, 1, stream); in util_stream_writef()
57 util_dump_bool(FILE *stream, int value) in util_dump_bool() argument
59 util_stream_writef(stream, "%c", value ? '1' : '0'); in util_dump_bool()
63 util_dump_int(FILE *stream, long long int value) in util_dump_int() argument
65 util_stream_writef(stream, "%lli", value); in util_dump_int()
69 util_dump_uint(FILE *stream, long long unsigned value) in util_dump_uint() argument
71 util_stream_writef(stream, "%llu", value); in util_dump_uint()
75 util_dump_float(FILE *stream, double value) in util_dump_float() argument
77 util_stream_writef(stream, " in util_dump_float()
89 util_dump_string(FILE *stream, const char *str) util_dump_string() argument
97 util_dump_enum(FILE *stream, const char *value) util_dump_enum() argument
103 util_dump_array_begin(FILE *stream) util_dump_array_begin() argument
109 util_dump_array_end(FILE *stream) util_dump_array_end() argument
115 util_dump_elem_begin(UNUSED FILE *stream) util_dump_elem_begin() argument
120 util_dump_elem_end(FILE *stream) util_dump_elem_end() argument
126 util_dump_struct_begin(FILE *stream, UNUSED const char *name) util_dump_struct_begin() argument
132 util_dump_struct_end(FILE *stream) util_dump_struct_end() argument
138 util_dump_member_begin(FILE *stream, const char *name) util_dump_member_begin() argument
144 util_dump_member_end(FILE *stream) util_dump_member_end() argument
150 util_dump_null(FILE *stream) util_dump_null() argument
156 util_dump_ptr(FILE *stream, const void *value) util_dump_ptr() argument
236 util_dump_format(FILE *stream, enum pipe_format format) util_dump_format() argument
243 util_dump_enum_blend_factor(FILE *stream, unsigned value) util_dump_enum_blend_factor() argument
249 util_dump_enum_blend_func(FILE *stream, unsigned value) util_dump_enum_blend_func() argument
255 util_dump_enum_func(FILE *stream, unsigned value) util_dump_enum_func() argument
261 util_dump_enum_prim_mode(FILE *stream, unsigned value) util_dump_enum_prim_mode() argument
267 util_dump_enum_tex_target(FILE *stream, unsigned value) util_dump_enum_tex_target() argument
273 util_dump_enum_tex_filter(FILE *stream, unsigned value) util_dump_enum_tex_filter() argument
279 util_dump_enum_tex_mipfilter(FILE *stream, unsigned value) util_dump_enum_tex_mipfilter() argument
285 util_dump_enum_tex_wrap(FILE *stream, unsigned value) util_dump_enum_tex_wrap() argument
291 util_dump_enum_stencil_op(FILE *stream, unsigned value) util_dump_enum_stencil_op() argument
303 util_dump_resource(FILE *stream, const struct pipe_resource *state) util_dump_resource() argument
332 util_dump_rasterizer_state(FILE *stream, const struct pipe_rasterizer_state *state) util_dump_rasterizer_state() argument
387 util_dump_poly_stipple(FILE *stream, const struct pipe_poly_stipple *state) util_dump_poly_stipple() argument
405 util_dump_viewport_state(FILE *stream, const struct pipe_viewport_state *state) util_dump_viewport_state() argument
422 util_dump_scissor_state(FILE *stream, const struct pipe_scissor_state *state) util_dump_scissor_state() argument
441 util_dump_clip_state(FILE *stream, const struct pipe_clip_state *state) util_dump_clip_state() argument
466 util_dump_stream_output_info(FILE *stream, const struct pipe_stream_output_info *state) util_dump_stream_output_info() argument
494 util_dump_shader_state(FILE *stream, const struct pipe_shader_state *state) util_dump_shader_state() argument
522 util_dump_depth_stencil_alpha_state(FILE *stream, const struct pipe_depth_stencil_alpha_state *state) util_dump_depth_stencil_alpha_state() argument
572 util_dump_rt_blend_state(FILE *stream, const struct pipe_rt_blend_state *state) util_dump_rt_blend_state() argument
593 util_dump_blend_state(FILE *stream, const struct pipe_blend_state *state) util_dump_blend_state() argument
628 util_dump_blend_color(FILE *stream, const struct pipe_blend_color *state) util_dump_blend_color() argument
643 util_dump_stencil_ref(FILE *stream, const struct pipe_stencil_ref *state) util_dump_stencil_ref() argument
658 util_dump_framebuffer_state(FILE *stream, const struct pipe_framebuffer_state *state) util_dump_framebuffer_state() argument
675 util_dump_sampler_state(FILE *stream, const struct pipe_sampler_state *state) util_dump_sampler_state() argument
705 util_dump_surface(FILE *stream, const struct pipe_surface *state) util_dump_surface() argument
728 util_dump_image_view(FILE *stream, const struct pipe_image_view *state) util_dump_image_view() argument
755 util_dump_shader_buffer(FILE *stream, const struct pipe_shader_buffer *state) util_dump_shader_buffer() argument
774 util_dump_sampler_view(FILE *stream, const struct pipe_sampler_view *state) util_dump_sampler_view() argument
808 util_dump_transfer(FILE *stream, const struct pipe_transfer *state) util_dump_transfer() argument
831 util_dump_constant_buffer(FILE *stream, const struct pipe_constant_buffer *state) util_dump_constant_buffer() argument
851 util_dump_vertex_buffer(FILE *stream, const struct pipe_vertex_buffer *state) util_dump_vertex_buffer() argument
870 util_dump_vertex_element(FILE *stream, const struct pipe_vertex_element *state) util_dump_vertex_element() argument
889 util_dump_stream_output_target(FILE *stream, const struct pipe_stream_output_target *state) util_dump_stream_output_target() argument
908 util_dump_draw_info(FILE *stream, const struct pipe_draw_info *state) util_dump_draw_info() argument
942 util_dump_draw_start_count_bias(FILE *stream, const struct pipe_draw_start_count_bias *state) util_dump_draw_start_count_bias() argument
952 util_dump_draw_indirect_info(FILE *stream, const struct pipe_draw_indirect_info *state) util_dump_draw_indirect_info() argument
971 util_dump_grid_info(FILE *stream, const struct pipe_grid_info *state) util_dump_grid_info() argument
998 util_dump_box(FILE *stream, const struct pipe_box *box) util_dump_box() argument
1017 util_dump_blit_info(FILE *stream, const struct pipe_blit_info *info) util_dump_blit_info() argument
[all...]
/third_party/skia/third_party/externals/freetype/src/base/
H A Dftstream.c5 * I/O stream support (body).
30 #define FT_COMPONENT stream
34 FT_Stream_OpenMemory( FT_Stream stream, in FT_Stream_OpenMemory() argument
38 stream->base = (FT_Byte*) base; in FT_Stream_OpenMemory()
39 stream->size = size; in FT_Stream_OpenMemory()
40 stream->pos = 0; in FT_Stream_OpenMemory()
41 stream->cursor = NULL; in FT_Stream_OpenMemory()
42 stream->read = NULL; in FT_Stream_OpenMemory()
43 stream->close = NULL; in FT_Stream_OpenMemory()
48 FT_Stream_Close( FT_Stream stream ) in FT_Stream_Close()
214 FT_Stream_ReleaseFrame( FT_Stream stream, FT_Byte** pbytes ) FT_Stream_ReleaseFrame() argument
[all...]
/third_party/node/lib/internal/streams/
H A Dutils.js10 // for interopt with readable-stream, i.e. readable-stream
13 const kIsDestroyed = SymbolFor('nodejs.stream.destroyed');
14 const kIsErrored = SymbolFor('nodejs.stream.errored');
15 const kIsReadable = SymbolFor('nodejs.stream.readable');
16 const kIsWritable = SymbolFor('nodejs.stream.writable');
17 const kIsDisturbed = SymbolFor('nodejs.stream.disturbed');
106 function isDestroyed(stream) {
107 if (!isNodeStream(stream)) return null;
108 const wState = stream
[all...]
/third_party/mesa3d/src/gallium/drivers/i915/
H A Di915_debug.c68 debug(struct debug_stream *stream, const char *name, unsigned len) in debug() argument
71 unsigned *ptr = (unsigned *)(stream->ptr + stream->offset); in debug()
74 mesa_logi("Error - zero length packet (0x%08x)", stream->ptr[0]); in debug()
79 if (stream->print_addresses) in debug()
80 mesa_logi("%08x: ", stream->offset); in debug()
87 stream->offset += len * sizeof(unsigned); in debug()
139 debug_prim(struct debug_stream *stream, const char *name, bool dump_floats, in debug_prim() argument
142 unsigned *ptr = (unsigned *)(stream->ptr + stream in debug_prim()
163 debug_program(struct debug_stream *stream, const char *name, unsigned len) debug_program() argument
184 debug_chain(struct debug_stream *stream, const char *name, unsigned len) debug_chain() argument
207 debug_variable_length_prim(struct debug_stream *stream) debug_variable_length_prim() argument
230 BITS(struct debug_stream *stream, unsigned dw, unsigned hi, unsigned lo, const char *fmt, ...) BITS() argument
255 FLAG(struct debug_stream *stream, unsigned dw, unsigned bit, const char *fmt, ...) FLAG() argument
271 debug_load_immediate(struct debug_stream *stream, const char *name, unsigned len) debug_load_immediate() argument
375 debug_load_indirect(struct debug_stream *stream, const char *name, unsigned len) debug_load_indirect() argument
437 BR13(struct debug_stream *stream, unsigned val) BR13() argument
447 BR22(struct debug_stream *stream, unsigned val) BR22() argument
455 BR23(struct debug_stream *stream, unsigned val) BR23() argument
463 BR09(struct debug_stream *stream, unsigned val) BR09() argument
469 BR26(struct debug_stream *stream, unsigned val) BR26() argument
477 BR11(struct debug_stream *stream, unsigned val) BR11() argument
484 BR12(struct debug_stream *stream, unsigned val) BR12() argument
490 BR16(struct debug_stream *stream, unsigned val) BR16() argument
496 debug_copy_blit(struct debug_stream *stream, const char *name, unsigned len) debug_copy_blit() argument
518 debug_color_blit(struct debug_stream *stream, const char *name, unsigned len) debug_color_blit() argument
538 debug_modes4(struct debug_stream *stream, const char *name, unsigned len) debug_modes4() argument
558 debug_map_state(struct debug_stream *stream, const char *name, unsigned len) debug_map_state() argument
609 debug_sampler_state(struct debug_stream *stream, const char *name, unsigned len) debug_sampler_state() argument
668 debug_dest_vars(struct debug_stream *stream, const char *name, unsigned len) debug_dest_vars() argument
702 debug_buf_info(struct debug_stream *stream, const char *name, unsigned len) debug_buf_info() argument
731 i915_debug_packet(struct debug_stream *stream) i915_debug_packet() argument
898 struct debug_stream stream; i915_dump_batchbuffer() local
[all...]
H A Di915_debug_fp.c74 print_reg_type_nr(char **stream, unsigned type, unsigned nr) in print_reg_type_nr() argument
80 PRINTF(stream, "T_DIFFUSE"); in print_reg_type_nr()
83 PRINTF(stream, "T_SPECULAR"); in print_reg_type_nr()
86 PRINTF(stream, "T_FOG_W"); in print_reg_type_nr()
89 PRINTF(stream, "T_TEX%d", nr); in print_reg_type_nr()
94 PRINTF(stream, "oC"); in print_reg_type_nr()
100 PRINTF(stream, "oD"); in print_reg_type_nr()
108 PRINTF(stream, "%s[%d]", regname[type], nr); in print_reg_type_nr()
119 print_reg_neg_swizzle(char **stream, unsigned reg) in print_reg_neg_swizzle() argument
127 PRINTF(stream, " in print_reg_neg_swizzle()
160 print_src_reg(char **stream, unsigned dword) print_src_reg() argument
169 print_dest_reg(char **stream, unsigned dword) print_dest_reg() argument
192 print_arith_op(char **stream, unsigned opcode, const unsigned *program) print_arith_op() argument
219 print_tex_op(char **stream, unsigned opcode, const unsigned *program) print_tex_op() argument
234 print_texkil_op(char **stream, unsigned opcode, const unsigned *program) print_texkil_op() argument
244 print_dcl_op(char **stream, unsigned opcode, const unsigned *program) print_dcl_op() argument
286 char *stream = ralloc_strdup(NULL, ""); i915_disassemble_program() local
[all...]
/kernel/linux/linux-6.6/drivers/gpu/drm/amd/display/dc/core/
H A Ddc_stream.c40 void update_stream_signal(struct dc_stream_state *stream, struct dc_sink *sink) in update_stream_signal() argument
43 stream->signal = stream->link->connector_signal; in update_stream_signal()
45 stream->signal = sink->sink_signal; in update_stream_signal()
47 if (dc_is_dvi_signal(stream->signal)) { in update_stream_signal()
48 if (stream->ctx->dc->caps.dual_link_dvi && in update_stream_signal()
49 (stream->timing.pix_clk_100hz / 10) > TMDS_MAX_PIXEL_CLOCK && in update_stream_signal()
51 stream->signal = SIGNAL_TYPE_DVI_DUAL_LINK; in update_stream_signal()
53 stream->signal = SIGNAL_TYPE_DVI_SINGLE_LINK; in update_stream_signal()
57 static bool dc_stream_construct(struct dc_stream_state *stream, in dc_stream_construct() argument
130 dc_stream_destruct(struct dc_stream_state *stream) dc_stream_destruct() argument
139 dc_stream_retain(struct dc_stream_state *stream) dc_stream_retain() argument
146 struct dc_stream_state *stream = container_of(kref, struct dc_stream_state, refcount); dc_stream_free() local
152 dc_stream_release(struct dc_stream_state *stream) dc_stream_release() argument
162 struct dc_stream_state *stream; dc_create_stream_for_sink() local
185 dc_copy_stream(const struct dc_stream_state *stream) dc_copy_stream() argument
219 dc_stream_get_status_from_state( struct dc_state *state, struct dc_stream_state *stream) dc_stream_get_status_from_state() argument
243 dc_stream_get_status( struct dc_stream_state *stream) dc_stream_get_status() argument
250 program_cursor_attributes( struct dc *dc, struct dc_stream_state *stream, const struct dc_cursor_attributes *attributes) program_cursor_attributes() argument
308 is_subvp_high_refresh_candidate(struct dc_stream_state *stream) is_subvp_high_refresh_candidate() argument
337 dc_stream_set_cursor_attributes( struct dc_stream_state *stream, const struct dc_cursor_attributes *attributes) dc_stream_set_cursor_attributes() argument
395 program_cursor_position( struct dc *dc, struct dc_stream_state *stream, const struct dc_cursor_position *position) program_cursor_position() argument
433 dc_stream_set_cursor_position( struct dc_stream_state *stream, const struct dc_cursor_position *position) dc_stream_set_cursor_position() argument
470 dc_stream_add_writeback(struct dc *dc, struct dc_stream_state *stream, struct dc_writeback_info *wb_info) dc_stream_add_writeback() argument
522 dc_stream_remove_writeback(struct dc *dc, struct dc_stream_state *stream, uint32_t dwb_pipe_inst) dc_stream_remove_writeback() argument
575 dc_stream_get_vblank_counter(const struct dc_stream_state *stream) dc_stream_get_vblank_counter() argument
594 dc_stream_send_dp_sdp(const struct dc_stream_state *stream, const uint8_t *custom_sdp_message, unsigned int sdp_message_size) dc_stream_send_dp_sdp() argument
629 dc_stream_get_scanoutpos(const struct dc_stream_state *stream, uint32_t *v_blank_start, uint32_t *v_blank_end, uint32_t *h_position, uint32_t *v_position) dc_stream_get_scanoutpos() argument
660 dc_stream_dmdata_status_done(struct dc *dc, struct dc_stream_state *stream) dc_stream_dmdata_status_done() argument
680 dc_stream_set_dynamic_metadata(struct dc *dc, struct dc_stream_state *stream, struct dc_dmdata_attributes *attr) dc_stream_set_dynamic_metadata() argument
721 dc_stream_add_dsc_to_resource(struct dc *dc, struct dc_state *state, struct dc_stream_state *stream) dc_stream_add_dsc_to_resource() argument
732 dc_stream_get_pipe_ctx(struct dc_stream_state *stream) dc_stream_get_pipe_ctx() argument
746 dc_stream_log(const struct dc *dc, const struct dc_stream_state *stream) dc_stream_log() argument
[all...]
/kernel/linux/linux-5.10/drivers/media/usb/dvb-usb/
H A Dusb-urb.c17 struct usb_data_stream *stream = urb->context; in usb_urb_complete() local
48 stream->complete(stream, b + urb->iso_frame_desc[i].offset, urb->iso_frame_desc[i].actual_length); in usb_urb_complete()
57 stream->complete(stream, b, urb->actual_length); in usb_urb_complete()
66 int usb_urb_kill(struct usb_data_stream *stream) in usb_urb_kill() argument
69 for (i = 0; i < stream->urbs_submitted; i++) { in usb_urb_kill()
73 usb_kill_urb(stream->urb_list[i]); in usb_urb_kill()
75 stream->urbs_submitted = 0; in usb_urb_kill()
79 int usb_urb_submit(struct usb_data_stream *stream) in usb_urb_submit() argument
94 usb_free_stream_buffers(struct usb_data_stream *stream) usb_free_stream_buffers() argument
111 usb_allocate_stream_buffers(struct usb_data_stream *stream, int num, unsigned long size) usb_allocate_stream_buffers() argument
138 usb_bulk_urb_init(struct usb_data_stream *stream) usb_bulk_urb_init() argument
168 usb_isoc_urb_init(struct usb_data_stream *stream) usb_isoc_urb_init() argument
213 usb_urb_init(struct usb_data_stream *stream, struct usb_data_stream_properties *props) usb_urb_init() argument
238 usb_urb_exit(struct usb_data_stream *stream) usb_urb_exit() argument
[all...]
/kernel/linux/linux-6.6/drivers/media/usb/dvb-usb/
H A Dusb-urb.c17 struct usb_data_stream *stream = urb->context; in usb_urb_complete() local
48 stream->complete(stream, b + urb->iso_frame_desc[i].offset, urb->iso_frame_desc[i].actual_length); in usb_urb_complete()
57 stream->complete(stream, b, urb->actual_length); in usb_urb_complete()
66 int usb_urb_kill(struct usb_data_stream *stream) in usb_urb_kill() argument
69 for (i = 0; i < stream->urbs_submitted; i++) { in usb_urb_kill()
73 usb_kill_urb(stream->urb_list[i]); in usb_urb_kill()
75 stream->urbs_submitted = 0; in usb_urb_kill()
79 int usb_urb_submit(struct usb_data_stream *stream) in usb_urb_submit() argument
94 usb_free_stream_buffers(struct usb_data_stream *stream) usb_free_stream_buffers() argument
111 usb_allocate_stream_buffers(struct usb_data_stream *stream, int num, unsigned long size) usb_allocate_stream_buffers() argument
138 usb_bulk_urb_init(struct usb_data_stream *stream) usb_bulk_urb_init() argument
168 usb_isoc_urb_init(struct usb_data_stream *stream) usb_isoc_urb_init() argument
213 usb_urb_init(struct usb_data_stream *stream, struct usb_data_stream_properties *props) usb_urb_init() argument
238 usb_urb_exit(struct usb_data_stream *stream) usb_urb_exit() argument
[all...]
/third_party/mesa3d/src/freedreno/ir3/
H A Dir3_print.c70 print_instr_name(struct log_stream *stream, struct ir3_instruction *instr, in print_instr_name() argument
76 mesa_log_stream_printf(stream, "%04u:", instr->serialno); in print_instr_name()
78 mesa_log_stream_printf(stream, "%04u:", instr->ip); in print_instr_name()
80 mesa_log_stream_printf(stream, "XXX: "); in print_instr_name()
82 mesa_log_stream_printf(stream, "%03u: ", instr->use_count); in print_instr_name()
86 mesa_log_stream_printf(stream, "\t"); in print_instr_name()
88 mesa_log_stream_printf(stream, "(sy)"); in print_instr_name()
90 mesa_log_stream_printf(stream, "(ss)"); in print_instr_name()
92 mesa_log_stream_printf(stream, "(jp)"); in print_instr_name()
94 mesa_log_stream_printf(stream, "(rp in print_instr_name()
249 print_ssa_def_name(struct log_stream *stream, struct ir3_register *reg) print_ssa_def_name() argument
257 print_ssa_name(struct log_stream *stream, struct ir3_register *reg, bool dst) print_ssa_name() argument
274 print_reg_name(struct log_stream *stream, struct ir3_instruction *instr, struct ir3_register *reg, bool dest) print_reg_name() argument
346 tab(struct log_stream *stream, int lvl) tab() argument
353 print_instr(struct log_stream *stream, struct ir3_instruction *instr, int lvl) print_instr() argument
467 ir3_print_instr_stream(struct log_stream *stream, struct ir3_instruction *instr) ir3_print_instr_stream() argument
475 struct log_stream *stream = mesa_log_streami(); ir3_print_instr() local
483 struct log_stream *stream = mesa_log_streami(); print_block() local
[all...]
/third_party/skia/tools/skdiff/
H A Dskdiff_html.cpp28 static void print_table_header(SkFILEWStream* stream, in print_table_header() argument
35 stream->writeText("<table>\n"); in print_table_header()
36 stream->writeText("<tr><th>"); in print_table_header()
37 stream->writeText("select image</th>\n<th>"); in print_table_header()
41 stream->writeText("SkDiff run at "); in print_table_header()
42 stream->writeDecAsText(dt.fHour); in print_table_header()
43 stream->writeText(":"); in print_table_header()
45 stream->writeText("0"); in print_table_header()
47 stream->writeDecAsText(dt.fMinute); in print_table_header()
48 stream in print_table_header()
79 print_pixel_count(SkFILEWStream* stream, const DiffRecord& diff) print_pixel_count() argument
93 print_checkbox_cell(SkFILEWStream* stream, const DiffRecord& diff) print_checkbox_cell() argument
99 print_label_cell(SkFILEWStream* stream, const DiffRecord& diff) print_label_cell() argument
163 print_image_cell(SkFILEWStream* stream, const SkString& path, int height) print_image_cell() argument
173 print_link_cell(SkFILEWStream* stream, const SkString& path, const char* text) print_link_cell() argument
181 print_diff_resource_cell(SkFILEWStream* stream, const DiffResource& resource, const SkString& relativePath, bool local) print_diff_resource_cell() argument
213 print_diff_row(SkFILEWStream* stream, const DiffRecord& diff, const SkString& relativePath) print_diff_row() argument
[all...]
/third_party/node/deps/uv/src/unix/
H A Dstream.c47 uv_stream_t* stream; member
64 static void uv__write(uv_stream_t* stream);
65 static void uv__read(uv_stream_t* stream);
67 static void uv__write_callbacks(uv_stream_t* stream);
69 static void uv__drain(uv_stream_t* stream);
73 uv_stream_t* stream, in uv__stream_init()
77 uv__handle_init(loop, (uv_handle_t*)stream, type); in uv__stream_init()
78 stream->read_cb = NULL; in uv__stream_init()
79 stream->alloc_cb = NULL; in uv__stream_init()
80 stream in uv__stream_init()
72 uv__stream_init(uv_loop_t* loop, uv_stream_t* stream, uv_handle_type type) uv__stream_init() argument
110 uv__stream_osx_interrupt_select(uv_stream_t* stream) uv__stream_osx_interrupt_select() argument
137 uv_stream_t* stream; uv__stream_osx_select() local
226 uv_stream_t* stream; uv__stream_osx_select_cb() local
264 uv__stream_try_select(uv_stream_t* stream, int* fd) uv__stream_try_select() argument
393 uv__stream_open(uv_stream_t* stream, int fd, int flags) uv__stream_open() argument
430 uv__stream_flush_write_queue(uv_stream_t* stream, int error) uv__stream_flush_write_queue() argument
445 uv__stream_destroy(uv_stream_t* stream) uv__stream_destroy() argument
506 uv_stream_t* stream; uv__server_io() local
633 uv_listen(uv_stream_t* stream, int backlog, uv_connection_cb cb) uv_listen() argument
658 uv__drain(uv_stream_t* stream) uv__drain() argument
721 uv__write_req_update(uv_stream_t* stream, uv_write_t* req, size_t n) uv__write_req_update() argument
747 uv_stream_t* stream = req->handle; uv__write_req_finish() local
786 uv__try_write(uv_stream_t* stream, const uv_buf_t bufs[], unsigned int nbufs, uv_stream_t* send_handle) uv__try_write() argument
883 uv__write(uv_stream_t* stream) uv__write() argument
933 uv__write_callbacks(uv_stream_t* stream) uv__write_callbacks() argument
964 uv__stream_eof(uv_stream_t* stream, const uv_buf_t* buf) uv__stream_eof() argument
974 uv__stream_queue_fd(uv_stream_t* stream, int fd) uv__stream_queue_fd() argument
1022 uv__stream_recv_cmsg(uv_stream_t* stream, struct msghdr* msg) uv__stream_recv_cmsg() argument
1078 uv__read(uv_stream_t* stream) uv__read() argument
1221 uv_shutdown(uv_shutdown_t* req, uv_stream_t* stream, uv_shutdown_cb cb) uv_shutdown() argument
1252 uv_stream_t* stream; uv__stream_io() local
1308 uv__stream_connect(uv_stream_t* stream) uv__stream_connect() argument
1357 uv__check_before_write(uv_stream_t* stream, unsigned int nbufs, uv_stream_t* send_handle) uv__check_before_write() argument
1395 uv_write2(uv_write_t* req, uv_stream_t* stream, const uv_buf_t bufs[], unsigned int nbufs, uv_stream_t* send_handle, uv_write_cb cb) uv_write2() argument
1476 uv_try_write(uv_stream_t* stream, const uv_buf_t bufs[], unsigned int nbufs) uv_try_write() argument
1483 uv_try_write2(uv_stream_t* stream, const uv_buf_t bufs[], unsigned int nbufs, uv_stream_t* send_handle) uv_try_write2() argument
1501 uv__read_start(uv_stream_t* stream, uv_alloc_cb alloc_cb, uv_read_cb read_cb) uv__read_start() argument
1527 uv_read_stop(uv_stream_t* stream) uv_read_stop() argument
1542 uv_is_readable(const uv_stream_t* stream) uv_is_readable() argument
1547 uv_is_writable(const uv_stream_t* stream) uv_is_writable() argument
[all...]
/third_party/libuv/src/unix/
H A Dstream.c47 uv_stream_t* stream; member
74 static void uv__write(uv_stream_t* stream);
75 static void uv__read(uv_stream_t* stream);
77 static void uv__write_callbacks(uv_stream_t* stream);
79 static void uv__drain(uv_stream_t* stream);
83 uv_stream_t* stream, in uv__stream_init()
87 uv__handle_init(loop, (uv_handle_t*)stream, type); in uv__stream_init()
88 stream->read_cb = NULL; in uv__stream_init()
89 stream->alloc_cb = NULL; in uv__stream_init()
90 stream in uv__stream_init()
82 uv__stream_init(uv_loop_t* loop, uv_stream_t* stream, uv_handle_type type) uv__stream_init() argument
120 uv__stream_osx_interrupt_select(uv_stream_t* stream) uv__stream_osx_interrupt_select() argument
147 uv_stream_t* stream; uv__stream_osx_select() local
236 uv_stream_t* stream; uv__stream_osx_select_cb() local
274 uv__stream_try_select(uv_stream_t* stream, int* fd) uv__stream_try_select() argument
403 uv__stream_open(uv_stream_t* stream, int fd, int flags) uv__stream_open() argument
440 uv__stream_flush_write_queue(uv_stream_t* stream, int error) uv__stream_flush_write_queue() argument
455 uv__stream_destroy(uv_stream_t* stream) uv__stream_destroy() argument
509 uv_stream_t* stream; uv__server_io() local
601 uv_listen(uv_stream_t* stream, int backlog, uv_connection_cb cb) uv_listen() argument
626 uv__drain(uv_stream_t* stream) uv__drain() argument
688 uv__write_req_update(uv_stream_t* stream, uv_write_t* req, size_t n) uv__write_req_update() argument
714 uv_stream_t* stream = req->handle; uv__write_req_finish() local
753 uv__try_write(uv_stream_t* stream, const uv_buf_t bufs[], unsigned int nbufs, uv_stream_t* send_handle) uv__try_write() argument
839 uv__write(uv_stream_t* stream) uv__write() argument
900 uv__write_callbacks(uv_stream_t* stream) uv__write_callbacks() argument
931 uv__stream_eof(uv_stream_t* stream, const uv_buf_t* buf) uv__stream_eof() argument
941 uv__stream_queue_fd(uv_stream_t* stream, int fd) uv__stream_queue_fd() argument
980 uv__stream_recv_cmsg(uv_stream_t* stream, struct msghdr* msg) uv__stream_recv_cmsg() argument
1020 uv__read(uv_stream_t* stream) uv__read() argument
1155 uv_shutdown(uv_shutdown_t* req, uv_stream_t* stream, uv_shutdown_cb cb) uv_shutdown() argument
1185 uv_stream_t* stream; uv__stream_io() local
1241 uv__stream_connect(uv_stream_t* stream) uv__stream_connect() argument
1290 uv__check_before_write(uv_stream_t* stream, unsigned int nbufs, uv_stream_t* send_handle) uv__check_before_write() argument
1328 uv_write2(uv_write_t* req, uv_stream_t* stream, const uv_buf_t bufs[], unsigned int nbufs, uv_stream_t* send_handle, uv_write_cb cb) uv_write2() argument
1409 uv_try_write(uv_stream_t* stream, const uv_buf_t bufs[], unsigned int nbufs) uv_try_write() argument
1416 uv_try_write2(uv_stream_t* stream, const uv_buf_t bufs[], unsigned int nbufs, uv_stream_t* send_handle) uv_try_write2() argument
1434 uv__read_start(uv_stream_t* stream, uv_alloc_cb alloc_cb, uv_read_cb read_cb) uv__read_start() argument
1460 uv_read_stop(uv_stream_t* stream) uv_read_stop() argument
1475 uv_is_readable(const uv_stream_t* stream) uv_is_readable() argument
1480 uv_is_writable(const uv_stream_t* stream) uv_is_writable() argument
[all...]
/kernel/linux/linux-5.10/drivers/media/usb/dvb-usb-v2/
H A Dusb_urb.c16 int usb_urb_reconfig(struct usb_data_stream *stream,
21 struct usb_data_stream *stream = urb->context; in usb_urb_complete() local
26 dev_dbg_ratelimited(&stream->udev->dev, in usb_urb_complete()
42 dev_dbg_ratelimited(&stream->udev->dev, in usb_urb_complete()
53 dev_dbg(&stream->udev->dev, in usb_urb_complete()
58 stream->complete(stream, in usb_urb_complete()
68 stream->complete(stream, b, urb->actual_length); in usb_urb_complete()
71 dev_err(&stream in usb_urb_complete()
79 usb_urb_killv2(struct usb_data_stream *stream) usb_urb_killv2() argument
91 usb_urb_submitv2(struct usb_data_stream *stream, struct usb_data_stream_properties *props) usb_urb_submitv2() argument
117 usb_urb_free_urbs(struct usb_data_stream *stream) usb_urb_free_urbs() argument
136 usb_urb_alloc_bulk_urbs(struct usb_data_stream *stream) usb_urb_alloc_bulk_urbs() argument
163 usb_urb_alloc_isoc_urbs(struct usb_data_stream *stream) usb_urb_alloc_isoc_urbs() argument
207 usb_free_stream_buffers(struct usb_data_stream *stream) usb_free_stream_buffers() argument
221 usb_alloc_stream_buffers(struct usb_data_stream *stream, int num, unsigned long size) usb_alloc_stream_buffers() argument
250 usb_urb_reconfig(struct usb_data_stream *stream, struct usb_data_stream_properties *props) usb_urb_reconfig() argument
306 usb_urb_initv2(struct usb_data_stream *stream, const struct usb_data_stream_properties *props) usb_urb_initv2() argument
347 usb_urb_exitv2(struct usb_data_stream *stream) usb_urb_exitv2() argument
[all...]
/kernel/linux/linux-6.6/drivers/media/usb/dvb-usb-v2/
H A Dusb_urb.c16 int usb_urb_reconfig(struct usb_data_stream *stream,
21 struct usb_data_stream *stream = urb->context; in usb_urb_complete() local
26 dev_dbg_ratelimited(&stream->udev->dev, in usb_urb_complete()
42 dev_dbg_ratelimited(&stream->udev->dev, in usb_urb_complete()
53 dev_dbg(&stream->udev->dev, in usb_urb_complete()
58 stream->complete(stream, in usb_urb_complete()
68 stream->complete(stream, b, urb->actual_length); in usb_urb_complete()
71 dev_err(&stream in usb_urb_complete()
79 usb_urb_killv2(struct usb_data_stream *stream) usb_urb_killv2() argument
91 usb_urb_submitv2(struct usb_data_stream *stream, struct usb_data_stream_properties *props) usb_urb_submitv2() argument
117 usb_urb_free_urbs(struct usb_data_stream *stream) usb_urb_free_urbs() argument
136 usb_urb_alloc_bulk_urbs(struct usb_data_stream *stream) usb_urb_alloc_bulk_urbs() argument
163 usb_urb_alloc_isoc_urbs(struct usb_data_stream *stream) usb_urb_alloc_isoc_urbs() argument
207 usb_free_stream_buffers(struct usb_data_stream *stream) usb_free_stream_buffers() argument
221 usb_alloc_stream_buffers(struct usb_data_stream *stream, int num, unsigned long size) usb_alloc_stream_buffers() argument
250 usb_urb_reconfig(struct usb_data_stream *stream, struct usb_data_stream_properties *props) usb_urb_reconfig() argument
306 usb_urb_initv2(struct usb_data_stream *stream, const struct usb_data_stream_properties *props) usb_urb_initv2() argument
347 usb_urb_exitv2(struct usb_data_stream *stream) usb_urb_exitv2() argument
[all...]
/kernel/linux/linux-6.6/drivers/media/usb/uvc/
H A Duvc_video.c137 static void uvc_fixup_video_ctrl(struct uvc_streaming *stream, in uvc_fixup_video_ctrl() argument
156 if (usb_match_one_id(stream->dev->intf, &elgato_cam_link_4k) && in uvc_fixup_video_ctrl()
160 uvc_dbg(stream->dev, VIDEO, in uvc_fixup_video_ctrl()
168 for (i = 0; i < stream->nformats; ++i) { in uvc_fixup_video_ctrl()
169 if (stream->formats[i].index == ctrl->bFormatIndex) { in uvc_fixup_video_ctrl()
170 format = &stream->formats[i]; in uvc_fixup_video_ctrl()
190 stream->dev->uvc_version < 0x0110)) in uvc_fixup_video_ctrl()
204 stream->dev->quirks & UVC_QUIRK_FIX_BANDWIDTH && in uvc_fixup_video_ctrl()
205 stream->intf->num_altsetting > 1) { in uvc_fixup_video_ctrl()
223 if (stream in uvc_fixup_video_ctrl()
241 uvc_video_ctrl_size(struct uvc_streaming *stream) uvc_video_ctrl_size() argument
255 uvc_get_video_ctrl(struct uvc_streaming *stream, struct uvc_streaming_control *ctrl, int probe, u8 query) uvc_get_video_ctrl() argument
345 uvc_set_video_ctrl(struct uvc_streaming *stream, struct uvc_streaming_control *ctrl, int probe) uvc_set_video_ctrl() argument
390 uvc_probe_video(struct uvc_streaming *stream, struct uvc_streaming_control *probe) uvc_probe_video() argument
451 uvc_commit_video(struct uvc_streaming *stream, struct uvc_streaming_control *probe) uvc_commit_video() argument
470 uvc_video_clock_decode(struct uvc_streaming *stream, struct uvc_buffer *buf, const u8 *data, int len) uvc_video_clock_decode() argument
581 uvc_video_clock_reset(struct uvc_streaming *stream) uvc_video_clock_reset() argument
591 uvc_video_clock_init(struct uvc_streaming *stream) uvc_video_clock_init() argument
608 uvc_video_clock_cleanup(struct uvc_streaming *stream) uvc_video_clock_cleanup() argument
702 uvc_video_clock_update(struct uvc_streaming *stream, struct vb2_v4l2_buffer *vbuf, struct uvc_buffer *buf) uvc_video_clock_update() argument
810 uvc_video_stats_decode(struct uvc_streaming *stream, const u8 *data, int len) uvc_video_stats_decode() argument
923 uvc_video_stats_update(struct uvc_streaming *stream) uvc_video_stats_update() argument
957 uvc_video_stats_dump(struct uvc_streaming *stream, char *buf, size_t size) uvc_video_stats_dump() argument
1002 uvc_video_stats_start(struct uvc_streaming *stream) uvc_video_stats_start() argument
1008 uvc_video_stats_stop(struct uvc_streaming *stream) uvc_video_stats_stop() argument
1053 uvc_video_decode_start(struct uvc_streaming *stream, struct uvc_buffer *buf, const u8 *data, int len) uvc_video_decode_start() argument
1155 uvc_stream_dir( struct uvc_streaming *stream) uvc_stream_dir() argument
1164 uvc_stream_to_dmadev(struct uvc_streaming *stream) uvc_stream_to_dmadev() argument
1238 uvc_video_decode_end(struct uvc_streaming *stream, struct uvc_buffer *buf, const u8 *data, int len) uvc_video_decode_end() argument
1264 uvc_video_encode_header(struct uvc_streaming *stream, struct uvc_buffer *buf, u8 *data, int len) uvc_video_encode_header() argument
1273 uvc_video_encode_data(struct uvc_streaming *stream, struct uvc_buffer *buf, u8 *data, int len) uvc_video_encode_data() argument
1307 uvc_video_decode_meta(struct uvc_streaming *stream, struct uvc_buffer *meta_buf, const u8 *mem, unsigned int length) uvc_video_decode_meta() argument
1380 uvc_video_validate_buffer(const struct uvc_streaming *stream, struct uvc_buffer *buf) uvc_video_validate_buffer() argument
1392 uvc_video_next_buffers(struct uvc_streaming *stream, struct uvc_buffer **video_buf, struct uvc_buffer **meta_buf) uvc_video_next_buffers() argument
1418 struct uvc_streaming *stream = uvc_urb->stream; uvc_video_decode_isoc() local
1464 struct uvc_streaming *stream = uvc_urb->stream; uvc_video_decode_bulk() local
1537 struct uvc_streaming *stream = uvc_urb->stream; uvc_video_encode_bulk() local
1582 struct uvc_streaming *stream = uvc_urb->stream; uvc_video_complete() local
1652 uvc_free_urb_buffers(struct uvc_streaming *stream) uvc_free_urb_buffers() argument
1672 uvc_alloc_urb_buffer(struct uvc_streaming *stream, struct uvc_urb *uvc_urb, gfp_t gfp_flags) uvc_alloc_urb_buffer() argument
1708 uvc_alloc_urb_buffers(struct uvc_streaming *stream, unsigned int size, unsigned int psize, gfp_t gfp_flags) uvc_alloc_urb_buffers() argument
1758 uvc_video_stop_transfer(struct uvc_streaming *stream, int free_buffers) uvc_video_stop_transfer() argument
1806 uvc_init_video_isoc(struct uvc_streaming *stream, struct usb_host_endpoint *ep, gfp_t gfp_flags) uvc_init_video_isoc() argument
1858 uvc_init_video_bulk(struct uvc_streaming *stream, struct usb_host_endpoint *ep, gfp_t gfp_flags) uvc_init_video_bulk() argument
1908 uvc_video_start_transfer(struct uvc_streaming *stream, gfp_t gfp_flags) uvc_video_start_transfer() argument
2040 uvc_video_suspend(struct uvc_streaming *stream) uvc_video_suspend() argument
2059 uvc_video_resume(struct uvc_streaming *stream, int reset) uvc_video_resume() argument
2100 uvc_video_init(struct uvc_streaming *stream) uvc_video_init() argument
2219 uvc_video_start_streaming(struct uvc_streaming *stream) uvc_video_start_streaming() argument
2246 uvc_video_stop_streaming(struct uvc_streaming *stream) uvc_video_stop_streaming() argument
[all...]
/kernel/linux/linux-5.10/sound/soc/au1x/
H A Ddma.c42 struct audio_stream stream[2]; /* playback & capture */ member
45 static void au1000_release_dma_link(struct audio_stream *stream) in au1000_release_dma_link() argument
50 stream->period_size = 0; in au1000_release_dma_link()
51 stream->periods = 0; in au1000_release_dma_link()
52 pointer = stream->buffer; in au1000_release_dma_link()
59 } while (pointer != stream->buffer); in au1000_release_dma_link()
60 stream->buffer = NULL; in au1000_release_dma_link()
63 static int au1000_setup_dma_link(struct audio_stream *stream, in au1000_setup_dma_link() argument
67 struct snd_pcm_substream *substream = stream->substream; in au1000_setup_dma_link()
75 if (stream in au1000_setup_dma_link()
105 au1000_dma_stop(struct audio_stream *stream) au1000_dma_stop() argument
111 au1000_dma_start(struct audio_stream *stream) au1000_dma_start() argument
136 struct audio_stream *stream = (struct audio_stream *)ptr; au1000_dma_interrupt() local
233 struct audio_stream *stream = ss_to_as(substream, component); alchemy_pcm_hw_params() local
243 struct audio_stream *stream = ss_to_as(substream, component); alchemy_pcm_hw_free() local
251 struct audio_stream *stream = ss_to_as(substream, component); alchemy_pcm_trigger() local
271 struct audio_stream *stream = ss_to_as(ss, component); alchemy_pcm_pointer() local
[all...]
/kernel/linux/linux-6.6/sound/soc/au1x/
H A Ddma.c42 struct audio_stream stream[2]; /* playback & capture */ member
45 static void au1000_release_dma_link(struct audio_stream *stream) in au1000_release_dma_link() argument
50 stream->period_size = 0; in au1000_release_dma_link()
51 stream->periods = 0; in au1000_release_dma_link()
52 pointer = stream->buffer; in au1000_release_dma_link()
59 } while (pointer != stream->buffer); in au1000_release_dma_link()
60 stream->buffer = NULL; in au1000_release_dma_link()
63 static int au1000_setup_dma_link(struct audio_stream *stream, in au1000_setup_dma_link() argument
67 struct snd_pcm_substream *substream = stream->substream; in au1000_setup_dma_link()
75 if (stream in au1000_setup_dma_link()
105 au1000_dma_stop(struct audio_stream *stream) au1000_dma_stop() argument
111 au1000_dma_start(struct audio_stream *stream) au1000_dma_start() argument
136 struct audio_stream *stream = (struct audio_stream *)ptr; au1000_dma_interrupt() local
233 struct audio_stream *stream = ss_to_as(substream, component); alchemy_pcm_hw_params() local
243 struct audio_stream *stream = ss_to_as(substream, component); alchemy_pcm_hw_free() local
251 struct audio_stream *stream = ss_to_as(substream, component); alchemy_pcm_trigger() local
271 struct audio_stream *stream = ss_to_as(ss, component); alchemy_pcm_pointer() local
[all...]
/third_party/skia/third_party/externals/angle2/src/tests/egl_tests/
H A DEGLPrintEGLinfoTest.cpp151 #define QUERY_HELPER(enumValue, enumString, stream) \
156 stream << enumString + std::string(",") + std::to_string(result) << std::endl; \
159 #define QUERY_ARRAY_HELPER(enumValue, enumString, size, stream) \
167 stream << enumString + std::string(",") + results.str() << std::endl; \
170 #define QUERY_INDEXED_HELPER(enumValue, enumString, index, stream) \
175 stream << enumString + std::string(",") + std::to_string(result) << std::endl; \
178 #define QUERY_AND_LOG_CAPABILITY(enum, stream) QUERY_HELPER(enum, #enum, stream)
180 #define QUERY_AND_LOG_CAPABILITY_ARRAY(enum, size, stream) \
181 QUERY_ARRAY_HELPER(enum, #enum, size, stream)
186 LogGles2Capabilities(std::ostream &stream) LogGles2Capabilities() argument
204 LogGles3Capabilities(std::ostream &stream) LogGles3Capabilities() argument
238 LogGles31Capabilities(std::ostream &stream) LogGles31Capabilities() argument
292 LogGles32Capabilities(std::ostream &stream) LogGles32Capabilities() argument
355 std::ostream &stream = std::cout; TEST_P() local
[all...]
/third_party/mesa3d/src/gallium/drivers/etnaviv/
H A Detnaviv_emit.h43 etna_emit_load_state(struct etna_cmd_stream *stream, const uint16_t offset, in etna_emit_load_state() argument
54 etna_cmd_stream_emit(stream, v); in etna_emit_load_state()
58 etna_set_state(struct etna_cmd_stream *stream, uint32_t address, uint32_t value) in etna_set_state() argument
60 etna_cmd_stream_reserve(stream, 2); in etna_set_state()
61 etna_emit_load_state(stream, address >> 2, 1, 0); in etna_set_state()
62 etna_cmd_stream_emit(stream, value); in etna_set_state()
66 etna_set_state_reloc(struct etna_cmd_stream *stream, uint32_t address, in etna_set_state_reloc() argument
69 etna_cmd_stream_reserve(stream, 2); in etna_set_state_reloc()
70 etna_emit_load_state(stream, address >> 2, 1, 0); in etna_set_state_reloc()
71 etna_cmd_stream_reloc(stream, relo in etna_set_state_reloc()
75 etna_set_state_multi(struct etna_cmd_stream *stream, uint32_t base, uint32_t num, const uint32_t *values) etna_set_state_multi() argument
96 etna_draw_primitives(struct etna_cmd_stream *stream, uint32_t primitive_type, uint32_t start, uint32_t count) etna_draw_primitives() argument
108 etna_draw_indexed_primitives(struct etna_cmd_stream *stream, uint32_t primitive_type, uint32_t start, uint32_t count, uint32_t offset) etna_draw_indexed_primitives() argument
124 etna_draw_instanced(struct etna_cmd_stream *stream, uint32_t indexed, uint32_t primitive_type, uint32_t instance_count, uint32_t vertex_count, uint32_t offset) etna_draw_instanced() argument
144 etna_coalesce_start(struct etna_cmd_stream *stream, struct etna_coalesce *coalesce) etna_coalesce_start() argument
153 etna_coalesce_end(struct etna_cmd_stream *stream, struct etna_coalesce *coalesce) etna_coalesce_end() argument
173 check_coalsence(struct etna_cmd_stream *stream, struct etna_coalesce *coalesce, uint32_t reg, uint32_t fixp) check_coalsence() argument
192 etna_coalsence_emit(struct etna_cmd_stream *stream, struct etna_coalesce *coalesce, uint32_t reg, uint32_t value) etna_coalsence_emit() argument
201 etna_coalsence_emit_fixp(struct etna_cmd_stream *stream, struct etna_coalesce *coalesce, uint32_t reg, uint32_t value) etna_coalsence_emit_fixp() argument
210 etna_coalsence_emit_reloc(struct etna_cmd_stream *stream, struct etna_coalesce *coalesce, uint32_t reg, const struct etna_reloc *r) etna_coalsence_emit_reloc() argument
[all...]
/third_party/mesa3d/src/etnaviv/drm/tests/
H A Detnaviv_cmd_stream_test.c36 struct etna_cmd_stream *stream; in test_avail() local
41 stream = etna_cmd_stream_new(NULL, 0, NULL, NULL); in test_avail()
42 assert(stream == NULL); in test_avail()
44 stream = etna_cmd_stream_new(NULL, 4, NULL, NULL); in test_avail()
45 assert(stream); in test_avail()
46 assert(etna_cmd_stream_avail(stream) == 2); in test_avail()
47 etna_cmd_stream_del(stream); in test_avail()
49 stream = etna_cmd_stream_new(NULL, 20, NULL, NULL); in test_avail()
50 assert(stream); in test_avail()
51 assert(etna_cmd_stream_avail(stream) in test_avail()
70 struct etna_cmd_stream *stream; test_emit() local
94 struct etna_cmd_stream *stream; test_offset() local
[all...]
/third_party/libdrm/tests/etnaviv/
H A Detnaviv_cmd_stream_test.c36 struct etna_cmd_stream *stream; in test_avail() local
41 stream = etna_cmd_stream_new(NULL, 0, NULL, NULL); in test_avail()
42 assert(stream == NULL); in test_avail()
44 stream = etna_cmd_stream_new(NULL, 4, NULL, NULL); in test_avail()
45 assert(stream); in test_avail()
46 assert(etna_cmd_stream_avail(stream) == 2); in test_avail()
47 etna_cmd_stream_del(stream); in test_avail()
49 stream = etna_cmd_stream_new(NULL, 20, NULL, NULL); in test_avail()
50 assert(stream); in test_avail()
51 assert(etna_cmd_stream_avail(stream) in test_avail()
70 struct etna_cmd_stream *stream; test_emit() local
94 struct etna_cmd_stream *stream; test_offset() local
[all...]
/third_party/vk-gl-cts/framework/delibs/destream/
H A DdeIOStream.h23 * \brief Input-output stream abstraction.
30 /* Result of operation on stream */
48 /* Type for pointer to internal stream psecifig data */
52 typedef deStreamResult (*deIOStreamReadFunc) (deStreamData* stream, void* buf, deInt32 bufSize, deInt32* numRead);
53 typedef deStreamResult (*deIOStreamWriteFunc) (deStreamData* stream, const void* buf, deInt32 bufSize, deInt32* numWritten);
54 typedef const char* (*deIOStreamGetErrorFunc) (deStreamData* stream);
55 typedef deStreamResult (*deIOStreamFlushFunc) (deStreamData* stream);
56 typedef deStreamResult (*deIOStreamDeinitFunc) (deStreamData* stream);
57 typedef deStreamStatus (*deIOStreamStatusFunc) (deStreamData* stream);
59 /* Virtual table type for specifying stream specifi
86 deIOStream_write(deIOStream* stream, const void* buf, deInt32 bufSize, deInt32* numWritten) deIOStream_write() argument
95 deIOStream_read(deIOStream* stream, void* buf, deInt32 bufSize, deInt32* numRead) deIOStream_read() argument
104 deIOStream_getError(deIOStream* stream) deIOStream_getError() argument
113 deIOStream_flush(deIOStream* stream) deIOStream_flush() argument
122 deIOStream_deinit(deIOStream* stream) deIOStream_deinit() argument
137 deIOStream_getStatus(deIOStream* stream) deIOStream_getStatus() argument
[all...]

Completed in 17 milliseconds

12345678910>>...175