/kernel/linux/linux-5.10/fs/squashfs/ |
H A D | decompressor.c | 132 void *stream, *comp_opts = get_comp_opts(sb, flags); in squashfs_decompressor_setup() local 137 stream = squashfs_decompressor_create(msblk, comp_opts); in squashfs_decompressor_setup() 138 if (IS_ERR(stream)) in squashfs_decompressor_setup() 141 return stream; in squashfs_decompressor_setup()
|
/kernel/linux/linux-6.6/fs/squashfs/ |
H A D | decompressor.c | 131 void *stream, *comp_opts = get_comp_opts(sb, flags); in squashfs_decompressor_setup() local 136 stream = msblk->thread_ops->create(msblk, comp_opts); in squashfs_decompressor_setup() 137 if (IS_ERR(stream)) in squashfs_decompressor_setup() 140 return stream; in squashfs_decompressor_setup()
|
H A D | zstd_wrapper.c | 66 zstd_dstream *stream; in zstd_uncompress() local 74 stream = zstd_init_dstream(wksp->window_size, wksp->mem, wksp->mem_size); in zstd_uncompress() 76 if (!stream) { in zstd_uncompress() 116 * before stream is done. in zstd_uncompress() 126 zstd_err = zstd_decompress_stream(stream, &out_buf, &in_buf); in zstd_uncompress()
|
/third_party/lzma/CS/7zip/Compress/RangeCoder/ |
H A D | RangeCoder.cs | 18 public void SetStream(System.IO.Stream stream)
in SetStream() argument 20 Stream = stream;
in SetStream() 130 public void Init(System.IO.Stream stream)
in Init() argument 132 // Stream.Init(stream);
in Init() 133 Stream = stream;
in Init()
|
/third_party/json/include/nlohmann/detail/output/ |
H A D | output_adapters.hpp | 78 : stream(s) in stream() function in detail::output_stream_adapter 83 stream.put(c); 89 stream.write(s, static_cast<std::streamsize>(length)); 93 std::basic_ostream<CharType>& stream; member in detail::output_stream_adapter
|
/third_party/ltp/testcases/kernel/device-drivers/zram/ |
H A D | zram01.sh | 39 local fs limit size stream=-1 57 stream=$((stream+3)) 62 zram_max_streams="$zram_max_streams $stream"
|
/third_party/node/deps/npm/node_modules/chalk/source/vendor/supports-color/ |
H A D | index.js | 168 export function createSupportsColor(stream, options = {}) { 169 const level = _supportsColor(stream, { 170 streamIsTTY: stream && stream.isTTY,
|
/third_party/node/deps/npm/node_modules/agent-base/dist/ |
H A D | helpers.js | 29 async function toBuffer(stream) { 32 for await (const chunk of stream) { 40 async function json(stream) { 41 const buf = await toBuffer(stream);
|
/third_party/node/deps/npm/node_modules/supports-color/ |
H A D | index.js | 168 export function createSupportsColor(stream, options = {}) { 169 const level = _supportsColor(stream, { 170 streamIsTTY: stream && stream.isTTY,
|
/third_party/ltp/tools/sparse/sparse-src/ |
H A D | token.h | 37 * the input stream. 51 struct stream { struct 67 extern struct stream *input_streams; 211 * Last token in the stream - points to itself. 219 extern int stream_prev(int stream); 220 extern const char *stream_name(int stream);
|
/third_party/node/deps/v8/src/parsing/ |
H A D | parsing.cc | 48 // Create a character stream for the parser. in ParseProgram() 51 std::unique_ptr<Utf16CharacterStream> stream( in ParseProgram() 53 info->set_character_stream(std::move(stream)); in ParseProgram() 77 // Create a character stream for the parser. in ParseFunction() 81 std::unique_ptr<Utf16CharacterStream> stream( in ParseFunction() 84 info->set_character_stream(std::move(stream)); in ParseFunction()
|
/third_party/libphonenumber/metadata/src/main/java/com/google/i18n/phonenumbers/metadata/table/ |
H A D | CsvTableCollector.java | 19 import static java.util.stream.Collectors.joining; 29 import java.util.stream.IntStream; 30 import java.util.stream.Stream; 84 return row.stream().limit(length); in getRow()
|
/third_party/skia/third_party/externals/spirv-tools/utils/vscode/src/lsp/protocol/ |
H A D | protocol.go | 64 func NewClient(ctx context.Context, stream jsonrpc2.Stream, client Client) (context.Context, *jsonrpc2.Conn, Server) { 66 conn := jsonrpc2.NewConn(stream) 71 func NewServer(ctx context.Context, stream jsonrpc2.Stream, server Server) (context.Context, *jsonrpc2.Conn, Client) { 72 conn := jsonrpc2.NewConn(stream)
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/utils/vscode/src/lsp/protocol/ |
H A D | protocol.go | 64 func NewClient(ctx context.Context, stream jsonrpc2.Stream, client Client) (context.Context, *jsonrpc2.Conn, Server) { 66 conn := jsonrpc2.NewConn(stream) 71 func NewServer(ctx context.Context, stream jsonrpc2.Stream, server Server) (context.Context, *jsonrpc2.Conn, Client) { 72 conn := jsonrpc2.NewConn(stream)
|
/third_party/skia/src/ports/ |
H A D | SkFontMgr_custom_directory.cpp | 54 std::unique_ptr<SkStreamAsset> stream = SkStream::MakeFromFile(filename.c_str()); in load_directory_fonts() local 55 if (!stream) { in load_directory_fonts() 61 if (!scanner.recognizedFont(stream.get(), &numFaces)) { in load_directory_fonts() 70 if (!scanner.scanFont(stream.get(), faceIndex, in load_directory_fonts()
|
/third_party/skia/third_party/externals/freetype/src/base/ |
H A D | ftsnames.c | 65 FT_Stream stream = face->stream; in FT_EXPORT_DEF() local 121 FT_Stream stream = face->stream; in FT_EXPORT_DEF() local
|
/third_party/skia/experimental/skrive/src/reader/ |
H A D | BinaryReader.cpp | 20 explicit BinaryReader(std::unique_ptr<SkStreamAsset> stream) in BinaryReader() argument 21 : fStream(std::move(stream)) {} in BinaryReader() 149 std::unique_ptr<StreamReader> MakeBinaryStreamReader(std::unique_ptr<SkStreamAsset> stream) { in MakeBinaryStreamReader() argument 150 return std::make_unique<BinaryReader>(std::move(stream)); in MakeBinaryStreamReader()
|
/third_party/rust/crates/rust-openssl/openssl/src/ssl/ |
H A D | bio.rs | 18 pub stream: S, 36 pub fn new<S: Read + Write>(stream: S) -> Result<(*mut BIO, BioMethod), ErrorStack> { in new() 40 stream, in new() 67 &state.stream 71 &mut state(bio).stream in get_mut() 94 match catch_unwind(AssertUnwindSafe(|| state.stream.write(buf))) { in state() 116 match catch_unwind(AssertUnwindSafe(|| state.stream.read(buf))) { 153 match catch_unwind(AssertUnwindSafe(|| state.stream.flush())) {
|
/third_party/spirv-tools/utils/vscode/src/lsp/protocol/ |
H A D | protocol.go | 64 func NewClient(ctx context.Context, stream jsonrpc2.Stream, client Client) (context.Context, *jsonrpc2.Conn, Server) { 66 conn := jsonrpc2.NewConn(stream) 71 func NewServer(ctx context.Context, stream jsonrpc2.Stream, server Server) (context.Context, *jsonrpc2.Conn, Client) { 72 conn := jsonrpc2.NewConn(stream)
|
/kernel/linux/linux-5.10/sound/soc/codecs/ |
H A D | rt715.c | 531 struct sdw_stream_data *stream; in rt715_set_sdw_stream() local 536 stream = kzalloc(sizeof(*stream), GFP_KERNEL); in rt715_set_sdw_stream() 537 if (!stream) in rt715_set_sdw_stream() 540 stream->sdw_stream = (struct sdw_stream_runtime *)sdw_stream; in rt715_set_sdw_stream() 542 /* Use tx_mask or rx_mask to configure stream tag and set dma_data */ in rt715_set_sdw_stream() 544 dai->playback_dma_data = stream; in rt715_set_sdw_stream() 546 dai->capture_dma_data = stream; in rt715_set_sdw_stream() 555 struct sdw_stream_data *stream; in rt715_shutdown() local 557 stream in rt715_shutdown() 571 struct sdw_stream_data *stream; rt715_pcm_hw_params() local 672 struct sdw_stream_data *stream = rt715_pcm_hw_free() local [all...] |
/kernel/linux/linux-5.10/drivers/media/usb/uvc/ |
H A D | uvcvideo.h | 496 unsigned int scr_sof_count; /* STC.SOF counter accumulated since stream start */ 523 * @stream: UVC streaming context 532 struct uvc_streaming *stream; member 601 struct uvc_stats_stream stream; member 633 return uvc_urb - &uvc_urb->stream->uvc_urb[0]; in uvc_urb_index() 695 struct uvc_streaming *stream; member 801 int uvc_video_init(struct uvc_streaming *stream); 802 int uvc_video_suspend(struct uvc_streaming *stream); 803 int uvc_video_resume(struct uvc_streaming *stream, int reset); 804 int uvc_video_start_streaming(struct uvc_streaming *stream); [all...] |
/kernel/linux/linux-6.6/sound/soc/sof/ |
H A D | ipc3.c | 10 #include <sound/sof/stream.h> 715 elem->size, "stream", in ipc3_get_windows() 759 dev_dbg(sdev->dev, " stream region 0x%x - size 0x%x\n", in ipc3_get_windows() 869 /* IPC stream position. */ 873 struct snd_sof_pcm_stream *stream; in ipc3_period_elapsed() local 880 dev_err(sdev->dev, "period elapsed for unknown stream, msg_id %d\n", in ipc3_period_elapsed() 885 stream = &spcm->stream[direction]; in ipc3_period_elapsed() 886 ret = snd_sof_ipc_msg_data(sdev, stream, &posn, sizeof(posn)); in ipc3_period_elapsed() 888 dev_warn(sdev->dev, "failed to read stream positio in ipc3_period_elapsed() 908 struct snd_sof_pcm_stream *stream; ipc3_xrun() local [all...] |
/third_party/skia/third_party/externals/freetype/src/truetype/ |
H A D | ttobjs.c | 252 tt_synth_sfnt_checksum( FT_Stream stream, in tt_synth_sfnt_checksum() argument 291 face->root.stream, in tt_get_sfnt_checksum() 295 return (FT_ULong)tt_synth_sfnt_checksum( face->root.stream, in tt_get_sfnt_checksum() 634 * stream :: 635 * The source font stream. 657 tt_face_init( FT_Stream stream, in FT_LOCAL_DEF() 681 /* create input stream from resource */ in FT_LOCAL_DEF() 687 error = sfnt->init_face( stream, face, face_index, num_params, params ); in FT_LOCAL_DEF() 690 stream = face->root.stream; in FT_LOCAL_DEF() 826 FT_Stream stream; tt_face_done() local [all...] |
/third_party/skia/third_party/externals/freetype/builds/mac/ |
H A D | ftmac.c | 35 - Check whether the offered stream points to a Mac suitcase file. This 37 stream that gets passed to our init_face() routine is a stdio stream, 39 resource fork. So we just grab the stream->pathname field. 46 it into a memory stream, load the Type 1 driver and delegate the rest 54 wrap it into a memory stream, load the TrueType driver and delegate 440 #define STREAM_FILE( stream ) ( (FT_FILE*)stream->descriptor.pointer ) 444 ft_FSp_stream_close( FT_Stream stream ) in ft_FSp_stream_close() 446 ft_fclose( STREAM_FILE( stream ) ); in ft_FSp_stream_close() 455 ft_FSp_stream_io( FT_Stream stream, unsigned long offset, unsigned char* buffer, unsigned long count ) ft_FSp_stream_io() argument 1146 FT_Stream stream; FT_New_Face_From_SFNT() local [all...] |
/third_party/vk-gl-cts/modules/egl/ |
H A D | teglCreateContextExtTests.cpp | 92 std::ostringstream stream; in eglContextFlagsToString() local 95 stream << "<None>"; in eglContextFlagsToString() 103 stream << "|"; in eglContextFlagsToString() 107 stream << "EGL_CONTEXT_OPENGL_DEBUG_BIT_KHR"; in eglContextFlagsToString() 113 stream << "|"; in eglContextFlagsToString() 117 stream << "EGL_CONTEXT_OPENGL_FORWARD_COMPATIBLE_BIT_KHR"; in eglContextFlagsToString() 123 stream << "|"; in eglContextFlagsToString() 125 stream << "EGL_CONTEXT_OPENGL_ROBUST_ACCESS_BIT_KHR"; in eglContextFlagsToString() 129 return stream.str(); in eglContextFlagsToString() 134 std::ostringstream stream; in eglProfileMaskToString() local [all...] |