/src/sys/external/isc/libsodium/dist/src/libsodium/crypto_stream/salsa20/ |
stream_salsa20.h | 8 int (*stream)(unsigned char *c, unsigned long long clen, member in struct:crypto_stream_salsa20_implementation
|
stream_salsa20.h | 8 int (*stream)(unsigned char *c, unsigned long long clen, member in struct:crypto_stream_salsa20_implementation
|
/src/sys/external/isc/libsodium/dist/src/libsodium/crypto_stream/chacha20/ |
stream_chacha20.h | 8 int (*stream)(unsigned char *c, unsigned long long clen, member in struct:crypto_stream_chacha20_implementation
|
stream_chacha20.h | 8 int (*stream)(unsigned char *c, unsigned long long clen, member in struct:crypto_stream_chacha20_implementation
|
/src/common/dist/zlib/ |
compress.c | 26 z_stream stream; local in function:compress2 34 stream.zalloc = (alloc_func)0; 35 stream.zfree = (free_func)0; 36 stream.opaque = (voidpf)0; 38 err = deflateInit(&stream, level); 41 stream.next_out = dest; 42 stream.avail_out = 0; 43 stream.next_in = __UNCONST(source); 44 stream.avail_in = 0; 47 if (stream.avail_out == 0) [all...] |
uncompr.c | 27 an incomplete zlib stream. 31 z_stream stream; local in function:uncompress2 35 Byte buf[1]; /* for detection of incomplete stream when *destLen == 0 */ 47 stream.next_in = __UNCONST(source); 48 stream.avail_in = 0; 49 stream.zalloc = (alloc_func)0; 50 stream.zfree = (free_func)0; 51 stream.opaque = (voidpf)0; 53 err = inflateInit(&stream); 56 stream.next_out = dest [all...] |
compress.c | 26 z_stream stream; local in function:compress2 34 stream.zalloc = (alloc_func)0; 35 stream.zfree = (free_func)0; 36 stream.opaque = (voidpf)0; 38 err = deflateInit(&stream, level); 41 stream.next_out = dest; 42 stream.avail_out = 0; 43 stream.next_in = __UNCONST(source); 44 stream.avail_in = 0; 47 if (stream.avail_out == 0) [all...] |
uncompr.c | 27 an incomplete zlib stream. 31 z_stream stream; local in function:uncompress2 35 Byte buf[1]; /* for detection of incomplete stream when *destLen == 0 */ 47 stream.next_in = __UNCONST(source); 48 stream.avail_in = 0; 49 stream.zalloc = (alloc_func)0; 50 stream.zfree = (free_func)0; 51 stream.opaque = (voidpf)0; 53 err = inflateInit(&stream); 56 stream.next_out = dest [all...] |
/src/sys/external/bsd/drm2/dist/drm/amd/display/dc/clk_mgr/ |
amdgpu_clk_mgr.c | 56 const struct dc_stream_state *stream = context->streams[i]; local in function:clk_mgr_helper_get_active_display_cnt 59 * Only notify active stream or virtual stream. 60 * Need to notify virtual stream to work around 64 if (!stream->dpms_off || stream->signal == SIGNAL_TYPE_VIRTUAL)
|
amdgpu_clk_mgr.c | 56 const struct dc_stream_state *stream = context->streams[i]; local in function:clk_mgr_helper_get_active_display_cnt 59 * Only notify active stream or virtual stream. 60 * Need to notify virtual stream to work around 64 if (!stream->dpms_off || stream->signal == SIGNAL_TYPE_VIRTUAL)
|
/src/sys/external/bsd/drm2/dist/drm/vmwgfx/ |
vmwgfx_va.c | 37 * struct vmw_stream - Overlay stream simple resource. 39 * @stream_id: The overlay stream id. 64 struct vmw_stream *stream = vmw_stream(res); local in function:vmw_stream_hw_destroy 67 ret = vmw_overlay_unref(dev_priv, stream->stream_id); 73 struct vmw_stream *stream = vmw_stream(res); local in function:vmw_stream_init 75 return vmw_overlay_claim(res->dev_priv, &stream->stream_id); 90 .type_name = "overlay stream", 149 * @inout_id: In: The user-space handle. Out: The stream id. 161 struct vmw_stream *stream; local in function:vmw_user_stream_lookup 168 stream = vmw_stream(res) [all...] |
vmwgfx_va.c | 37 * struct vmw_stream - Overlay stream simple resource. 39 * @stream_id: The overlay stream id. 64 struct vmw_stream *stream = vmw_stream(res); local in function:vmw_stream_hw_destroy 67 ret = vmw_overlay_unref(dev_priv, stream->stream_id); 73 struct vmw_stream *stream = vmw_stream(res); local in function:vmw_stream_init 75 return vmw_overlay_claim(res->dev_priv, &stream->stream_id); 90 .type_name = "overlay stream", 149 * @inout_id: In: The user-space handle. Out: The stream id. 161 struct vmw_stream *stream; local in function:vmw_user_stream_lookup 168 stream = vmw_stream(res) [all...] |
/src/sys/external/bsd/drm2/dist/drm/i915/selftests/ |
i915_perf.c | 35 struct i915_perf_stream *stream; local in function:test_stream 37 stream = kzalloc(sizeof(*stream), GFP_KERNEL); 38 if (!stream) 41 stream->perf = perf; 44 if (i915_oa_stream_init(stream, ¶m, &props)) { 45 kfree(stream); 46 stream = NULL; 50 return stream; 53 static void stream_destroy(struct i915_perf_stream *stream) 65 struct i915_perf_stream *stream; local in function:live_sanitycheck 116 struct i915_perf_stream *stream; local in function:live_noa_delay [all...] |
i915_perf.c | 35 struct i915_perf_stream *stream; local in function:test_stream 37 stream = kzalloc(sizeof(*stream), GFP_KERNEL); 38 if (!stream) 41 stream->perf = perf; 44 if (i915_oa_stream_init(stream, ¶m, &props)) { 45 kfree(stream); 46 stream = NULL; 50 return stream; 53 static void stream_destroy(struct i915_perf_stream *stream) 65 struct i915_perf_stream *stream; local in function:live_sanitycheck 116 struct i915_perf_stream *stream; local in function:live_noa_delay [all...] |
/src/sys/arch/evbarm/stand/gzboot/ |
gzboot.c | 91 z_stream stream; member in struct:state 92 int z_err; /* error code for last stream operation */ 201 s->stream.next_out = buf; 202 s->stream.avail_out = len; 204 while (s->stream.avail_out != 0) { 205 if (s->stream.avail_in == 0 && s->z_eof == 0) { 210 s->stream.avail_in = got; 211 s->stream.next_in = s->inbuf; 214 s->z_err = inflate(&s->stream, Z_NO_FLUSH); 219 (s->stream.next_out - start)) [all...] |
gzboot.c | 91 z_stream stream; member in struct:state 92 int z_err; /* error code for last stream operation */ 201 s->stream.next_out = buf; 202 s->stream.avail_out = len; 204 while (s->stream.avail_out != 0) { 205 if (s->stream.avail_in == 0 && s->z_eof == 0) { 210 s->stream.avail_in = got; 211 s->stream.next_in = s->inbuf; 214 s->z_err = inflate(&s->stream, Z_NO_FLUSH); 219 (s->stream.next_out - start)) [all...] |
/src/sys/external/bsd/drm2/dist/drm/amd/display/amdgpu_dm/ |
amdgpu_dm_color.c | 286 * amdgpu_dm_update_crtc_color_mgmt: Maps DRM color management to DC stream. 308 struct dc_stream_state *stream = crtc->stream; local in function:amdgpu_dm_update_crtc_color_mgmt 354 stream->out_transfer_func->type = TF_TYPE_DISTRIBUTED_POINTS; 355 stream->out_transfer_func->tf = TRANSFER_FUNCTION_SRGB; 357 r = __set_legacy_tf(stream->out_transfer_func, regamma_lut, 363 stream->out_transfer_func->type = TF_TYPE_DISTRIBUTED_POINTS; 364 stream->out_transfer_func->tf = TRANSFER_FUNCTION_LINEAR; 366 r = __set_output_tf(stream->out_transfer_func, regamma_lut, 375 stream->out_transfer_func->type = TF_TYPE_BYPASS [all...] |
amdgpu_dm_color.c | 286 * amdgpu_dm_update_crtc_color_mgmt: Maps DRM color management to DC stream. 308 struct dc_stream_state *stream = crtc->stream; local in function:amdgpu_dm_update_crtc_color_mgmt 354 stream->out_transfer_func->type = TF_TYPE_DISTRIBUTED_POINTS; 355 stream->out_transfer_func->tf = TRANSFER_FUNCTION_SRGB; 357 r = __set_legacy_tf(stream->out_transfer_func, regamma_lut, 363 stream->out_transfer_func->type = TF_TYPE_DISTRIBUTED_POINTS; 364 stream->out_transfer_func->tf = TRANSFER_FUNCTION_LINEAR; 366 r = __set_output_tf(stream->out_transfer_func, regamma_lut, 375 stream->out_transfer_func->type = TF_TYPE_BYPASS [all...] |
/src/sys/external/bsd/drm2/dist/drm/amd/display/dc/clk_mgr/dce110/ |
amdgpu_dce110_clk_mgr.c | 103 struct dc_stream_state *stream = context->streams[j]; local in function:dce110_get_min_vblank_time_us 106 uint32_t vertical_total_min = stream->timing.v_total; 107 struct dc_crtc_timing_adjust adjust = stream->adjust; 111 vertical_blank_in_pixels = stream->timing.h_total * 113 - stream->timing.v_addressable); 115 * 10000 / stream->timing.pix_clk_100hz; 134 const struct dc_stream_state *stream = context->streams[j]; local in function:dce110_fill_display_configs 140 if (stream == context->res_ctx.pipe_ctx[k].stream) { 147 /* only notify active stream */ [all...] |
amdgpu_dce110_clk_mgr.c | 103 struct dc_stream_state *stream = context->streams[j]; local in function:dce110_get_min_vblank_time_us 106 uint32_t vertical_total_min = stream->timing.v_total; 107 struct dc_crtc_timing_adjust adjust = stream->adjust; 111 vertical_blank_in_pixels = stream->timing.h_total * 113 - stream->timing.v_addressable); 115 * 10000 / stream->timing.pix_clk_100hz; 134 const struct dc_stream_state *stream = context->streams[j]; local in function:dce110_fill_display_configs 140 if (stream == context->res_ctx.pipe_ctx[k].stream) { 147 /* only notify active stream */ [all...] |
/src/sys/external/isc/libsodium/dist/src/libsodium/randombytes/sysrandom/ |
randombytes_sysrandom.c | 99 static SysRandom stream = { variable in typeref:typename:SysRandom 257 stream.getrandom_available = 1; 261 stream.getrandom_available = 0; 265 if ((stream.random_data_source_fd = 283 if (stream.initialized == 0) { 285 stream.initialized = 1; 292 if (stream.initialized == 0) { 303 if (stream.random_data_source_fd != -1 && 304 close(stream.random_data_source_fd) == 0) { 305 stream.random_data_source_fd = -1 [all...] |
randombytes_sysrandom.c | 99 static SysRandom stream = { variable in typeref:typename:SysRandom 257 stream.getrandom_available = 1; 261 stream.getrandom_available = 0; 265 if ((stream.random_data_source_fd = 283 if (stream.initialized == 0) { 285 stream.initialized = 1; 292 if (stream.initialized == 0) { 303 if (stream.random_data_source_fd != -1 && 304 close(stream.random_data_source_fd) == 0) { 305 stream.random_data_source_fd = -1 [all...] |
/src/usr.bin/dc/ |
bcode.h | 77 FILE *stream; member in union:source::__anonba4a7606020a
|
bcode.h | 77 FILE *stream; member in union:source::__anonba4a7606020a
|
/src/usr.sbin/npf/npftest/ |
npftest.c | 51 "\t-s <file>: pcap stream\n" 198 char *benchmark, *config, *interface, *stream, *testname; local in function:main 210 stream = NULL; 233 stream = optarg; 260 * Either benchmark or test. If stream analysis, then the 264 if ((benchmark != NULL) == test && (stream && !interface)) { 357 if (stream) { 358 process_stream(stream, NULL, ifp);
|