| /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
|
| /src/external/gpl3/gdb/dist/gdb/cli/ |
| cli-cmds.h | 171 gdb_file_up stream; member in struct:open_script 176 : stream (std::move (stream_)),
|
| /src/external/gpl3/gdb.old/dist/gdb/cli/ |
| cli-cmds.h | 171 gdb_file_up stream; member in struct:open_script 176 : stream (std::move (stream_)),
|
| /src/external/ibm-public/postfix/dist/src/global/ |
| mail_command_client.c | 37 /* attr_print(3), send attributes over byte stream 77 VSTREAM *stream; local 87 if ((stream = mail_connect(class, name, BLOCKING)) == 0) { 91 if (attr_scan(stream, ATTR_FLAG_STRICT, 94 msg_warn("read %s: %m", VSTREAM_PATH(stream)); 97 (status = attr_vprint(stream, ATTR_FLAG_NONE, ap)), 100 msg_warn("write %s: %m", VSTREAM_PATH(stream)); 102 } else if (attr_scan(stream, ATTR_FLAG_STRICT, 105 msg_warn("write/read %s: %m", VSTREAM_PATH(stream)); 108 (void) vstream_fclose(stream); [all...] |
| mail_connect.c | 84 VSTREAM *stream; local 92 stream = 0; 96 stream = vstream_fdopen(fd, O_RDWR); 97 timed_ipc_setup(stream); 99 vstream_control(stream, 105 return (stream); 112 VSTREAM *stream; local 118 while ((stream = mail_connect(class, name, BLOCKING)) == 0) { 128 return (stream);
|
| /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
|
| /src/crypto/external/bsd/openssl.old/dist/crypto/evp/ |
| e_camellia.c | 33 } stream; member in struct:__anon2032 93 dat->stream.cbc = mode == EVP_CIPH_CBC_MODE ? 98 dat->stream.cbc = mode == EVP_CIPH_CBC_MODE ? 110 dat->stream.cbc = (cbc128_f) cmll128_t4_cbc_encrypt; 112 dat->stream.ctr = (ctr128_f) cmll128_t4_ctr32_encrypt; 114 dat->stream.cbc = NULL; 119 dat->stream.cbc = (cbc128_f) cmll256_t4_cbc_encrypt; 121 dat->stream.ctr = (ctr128_f) cmll256_t4_ctr32_encrypt; 123 dat->stream.cbc = NULL; 229 dat->stream.cbc = mode == EVP_CIPH_CBC_MODE [all...] |
| /src/external/gpl3/binutils/dist/binutils/ |
| bin2c.c | 34 FILE *stream; local 44 stream = ishelp ? stdout : stderr; 45 fprintf (stream, "Usage: %s < input_file > output_file\n", argv[0]); 46 fprintf (stream, "Prints bytes from stdin in hex format.\n");
|
| /src/external/gpl3/binutils.old/dist/binutils/ |
| bin2c.c | 34 FILE *stream; local 44 stream = ishelp ? stdout : stderr; 45 fprintf (stream, "Usage: %s < input_file > output_file\n", argv[0]); 46 fprintf (stream, "Prints bytes from stdin in hex format.\n");
|
| /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.perf/ |
| gm-std.h | 31 std::ostream *stream; member in class:gm_std::basic_ostream 38 (*out.stream) << s;
|
| /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.perf/ |
| gm-std.h | 31 std::ostream *stream; member in class:gm_std::basic_ostream 38 (*out.stream) << s;
|
| /src/common/dist/zlib/ |
| compress.c | 26 z_stream stream; local 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 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/crypto/external/apache2/openssl/dist/providers/implementations/ciphers/ |
| cipher_sm4_xts_hw.c | 29 xctx->stream = fn_stream; \ 38 OSSL_xts_stream_fn stream = NULL; local 43 HWSM4_encrypt, HWSM4_decrypt, stream, stream_gb); 49 stream = vpsm4_ex_xts_encrypt; 52 vpsm4_ex_encrypt, vpsm4_ex_decrypt, stream, stream_gb); 58 stream = vpsm4_xts_encrypt; 61 vpsm4_encrypt, vpsm4_decrypt, stream, stream_gb); 70 ossl_sm4_decrypt, stream, stream_gb);
|
| /src/crypto/external/bsd/openssl/dist/providers/implementations/ciphers/ |
| cipher_aes_xts.h | 32 OSSL_xts_stream_fn stream; member in struct:prov_aes_xts_ctx_st
|
| /src/external/gpl3/binutils/dist/zlib/ |
| compress.c | 24 z_stream stream; local 32 stream.zalloc = (alloc_func)0; 33 stream.zfree = (free_func)0; 34 stream.opaque = (voidpf)0; 36 err = deflateInit(&stream, level); 39 stream.next_out = dest; 40 stream.avail_out = 0; 41 stream.next_in = (z_const Bytef *)source; 42 stream.avail_in = 0; 45 if (stream.avail_out == 0) [all...] |
| uncompr.c | 25 an incomplete zlib stream. 29 z_stream stream; local 33 Byte buf[1]; /* for detection of incomplete stream when *destLen == 0 */ 45 stream.next_in = (z_const Bytef *)source; 46 stream.avail_in = 0; 47 stream.zalloc = (alloc_func)0; 48 stream.zfree = (free_func)0; 49 stream.opaque = (voidpf)0; 51 err = inflateInit(&stream); 54 stream.next_out = dest [all...] |
| /src/external/gpl3/binutils.old/dist/zlib/ |
| compress.c | 29 z_stream stream; local 37 stream.zalloc = (alloc_func)0; 38 stream.zfree = (free_func)0; 39 stream.opaque = (voidpf)0; 41 err = deflateInit(&stream, level); 44 stream.next_out = dest; 45 stream.avail_out = 0; 46 stream.next_in = (z_const Bytef *)source; 47 stream.avail_in = 0; 50 if (stream.avail_out == 0) [all...] |
| uncompr.c | 25 an incomplete zlib stream. 33 z_stream stream; local 37 Byte buf[1]; /* for detection of incomplete stream when *destLen == 0 */ 49 stream.next_in = (z_const Bytef *)source; 50 stream.avail_in = 0; 51 stream.zalloc = (alloc_func)0; 52 stream.zfree = (free_func)0; 53 stream.opaque = (voidpf)0; 55 err = inflateInit(&stream); 58 stream.next_out = dest [all...] |
| /src/external/gpl3/gdb/dist/zlib/ |
| compress.c | 29 z_stream stream; local 37 stream.zalloc = (alloc_func)0; 38 stream.zfree = (free_func)0; 39 stream.opaque = (voidpf)0; 41 err = deflateInit(&stream, level); 44 stream.next_out = dest; 45 stream.avail_out = 0; 46 stream.next_in = (z_const Bytef *)source; 47 stream.avail_in = 0; 50 if (stream.avail_out == 0) [all...] |
| uncompr.c | 25 an incomplete zlib stream. 33 z_stream stream; local 37 Byte buf[1]; /* for detection of incomplete stream when *destLen == 0 */ 49 stream.next_in = (z_const Bytef *)source; 50 stream.avail_in = 0; 51 stream.zalloc = (alloc_func)0; 52 stream.zfree = (free_func)0; 53 stream.opaque = (voidpf)0; 55 err = inflateInit(&stream); 58 stream.next_out = dest [all...] |
| /src/external/gpl3/gdb.old/dist/zlib/ |
| compress.c | 29 z_stream stream; local 37 stream.zalloc = (alloc_func)0; 38 stream.zfree = (free_func)0; 39 stream.opaque = (voidpf)0; 41 err = deflateInit(&stream, level); 44 stream.next_out = dest; 45 stream.avail_out = 0; 46 stream.next_in = (z_const Bytef *)source; 47 stream.avail_in = 0; 50 if (stream.avail_out == 0) [all...] |
| uncompr.c | 25 an incomplete zlib stream. 33 z_stream stream; local 37 Byte buf[1]; /* for detection of incomplete stream when *destLen == 0 */ 49 stream.next_in = (z_const Bytef *)source; 50 stream.avail_in = 0; 51 stream.zalloc = (alloc_func)0; 52 stream.zfree = (free_func)0; 53 stream.opaque = (voidpf)0; 55 err = inflateInit(&stream); 58 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 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 67 ret = vmw_overlay_unref(dev_priv, stream->stream_id); 73 struct vmw_stream *stream = vmw_stream(res); local 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 168 stream = vmw_stream(res) [all...] |