/third_party/node/deps/openssl/openssl/providers/implementations/ciphers/ |
H A D | cipher_camellia_hw.c | 35 dat->stream.cbc = mode == EVP_CIPH_CBC_MODE ? in cipher_hw_camellia_initkey() 39 dat->stream.cbc = mode == EVP_CIPH_CBC_MODE ? in cipher_hw_camellia_initkey()
|
/third_party/protobuf/csharp/src/AddressBook/ |
H A D | ListPeople.cs | 91 using (Stream stream = File.OpenRead(args[0]))
in Main() 93 AddressBook addressBook = AddressBook.Parser.ParseFrom(stream);
in Main()
|
/third_party/skia/src/codec/ |
H A D | SkBmpStandardCodec.h | 30 * @param stream the stream of encoded image data 33 * @param bytesPerColor the number of bytes in the stream used to represent 42 SkBmpStandardCodec(SkEncodedInfo&& info, std::unique_ptr<SkStream> stream, 74 * @param stream This may be a pointer to the stream owned by the parent SkCodec 75 * or a sub-stream of the stream owned by the parent SkCodec. 76 * Either way, this stream is unowned. 78 void decodeIcoMask(SkStream* stream, cons [all...] |
H A D | SkCodec.cpp | 87 std::unique_ptr<SkStream> stream, Result* outResult, in MakeFromStream() 94 if (!stream) { in MakeFromStream() 108 size_t bytesRead = stream->peek(buffer, bytesToRead); in MakeFromStream() 112 // Assume that if bytesRead < bytesToRead, but > 0, the stream is shorter in MakeFromStream() 114 // It also is possible the stream uses too small a buffer for peeking, but in MakeFromStream() 122 // It is possible the stream does not support peeking, but does support in MakeFromStream() 125 bytesRead = stream->read(buffer, bytesToRead); in MakeFromStream() 126 if (!stream->rewind()) { in MakeFromStream() 137 return SkPngCodec::MakeFromStream(std::move(stream), outResult, chunkReader); in MakeFromStream() 143 return proc.MakeFromStream(std::move(stream), outResul in MakeFromStream() 86 MakeFromStream( std::unique_ptr<SkStream> stream, Result* outResult, SkPngChunkReader* chunkReader, SelectionPolicy selectionPolicy) MakeFromStream() argument 177 SkCodec(SkEncodedInfo&& info, XformFormat srcFormat, std::unique_ptr<SkStream> stream, SkEncodedOrigin origin) SkCodec() argument [all...] |
/third_party/skia/src/core/ |
H A D | SkDocument.cpp | 12 SkDocument::SkDocument(SkWStream* stream) : fStream(stream), fState(kBetweenPages_State) {} in SkDocument() argument 57 // we don't own the stream, but we mark it nullptr since we can in close() 75 // we don't own the stream, but we mark it nullptr since we can in abort()
|
/third_party/skia/src/images/ |
H A D | SkJPEGWriteUtility.cpp | 48 skjpeg_destination_mgr::skjpeg_destination_mgr(SkWStream* stream) in skjpeg_destination_mgr() argument 49 : fStream(stream) { in skjpeg_destination_mgr()
|
/third_party/openssl/providers/implementations/ciphers/ |
H A D | cipher_camellia_hw.c | 35 dat->stream.cbc = mode == EVP_CIPH_CBC_MODE ? in cipher_hw_camellia_initkey() 39 dat->stream.cbc = mode == EVP_CIPH_CBC_MODE ? in cipher_hw_camellia_initkey()
|
/third_party/skia/src/ports/ |
H A D | SkImageEncoder_NDK.cpp | 13 bool SkEncodeImageWithNDK(SkWStream* stream, const SkPixmap& pmap, SkEncodedImageFormat format, in SkEncodeImageWithNDK() argument 69 reinterpret_cast<void*>(stream), write_to_stream); in SkEncodeImageWithNDK()
|
H A D | SkFontHost_FreeType.cpp | 184 FaceRec(std::unique_ptr<SkStreamAsset> stream); 224 SkStreamAsset* stream = static_cast<SkStreamAsset*>(ftStream->descriptor.pointer); in sk_ft_stream_io() local 227 if (!stream->seek(offset)) { in sk_ft_stream_io() 230 count = stream->read(buffer, count); in sk_ft_stream_io() 238 SkTypeface_FreeType::FaceRec::FaceRec(std::unique_ptr<SkStreamAsset> stream) in FaceRec() argument 239 : fSkStream(std::move(stream)) in FaceRec() 316 args.stream = &rec->fFTStream; in Make() 654 std::unique_ptr<SkStreamAsset> stream = this->openStream(&ttcIndex); 655 return std::make_unique<SkFontData>(std::move(stream), ttcIndex, axisValues.get(), axisCount); 1798 FT_Face SkTypeface_FreeType::Scanner::openFace(SkStreamAsset* stream, in [all...] |
/third_party/skia/third_party/externals/angle2/third_party/logdog/logdog/ |
H A D | bootstrap.py | 8 from . import stream, streamname namespace 24 LogDog Butler adds variables describing the LogDog stream parameters to the 70 """Returns: (StreamClient) stream client for the bootstrap streamserver URI. 72 If the Butler accepts external stream connections, it will export a 77 reg (stream.StreamProtocolRegistry or None): The stream protocol registry 78 to use to create the stream. If None, the default global registry will 84 reg = reg or stream._default_registry
|
/third_party/skia/tools/skiaserve/urlhandlers/ |
H A D | PostHandler.cpp | 65 std::unique_ptr<SkStreamAsset> stream(request->fUploadContext->fStream.detachAsStream()); in handle() 66 if (!request->initPictureFromStream(stream.get())) { in handle() 67 fprintf(stderr, "Could not create picture from stream.\n"); in handle()
|
/third_party/skia/tools/viewer/ |
H A D | SKPSlide.cpp | 18 SKPSlide::SKPSlide(const SkString& name, std::unique_ptr<SkStream> stream) in SKPSlide() argument 19 : fStream(std::move(stream)) { in SKPSlide() 43 SkDebugf("No skp stream for slide %s.\n", fName.c_str()); in load() 49 SkDebugf("Could parse SkPicture from skp stream for slide %s.\n", fName.c_str()); in load()
|
/third_party/skia/third_party/externals/dng_sdk/source/ |
H A D | dng_opcode_list.h | 137 /// Write a fingerprint of this opcode list to the specified stream. 139 void FingerprintToStream (dng_stream &stream) const; 141 /// Read an opcode list from the specified stream, starting at the 144 /// will be thrown if the length of the opcode stream does not exactly 148 dng_stream &stream,
|
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/ |
H A D | cord_test_helpers.h | 83 inline std::ostream& operator<<(std::ostream& stream, TestCordSize size) { in operator <<() argument 84 return stream << ToString(size); in operator <<()
|
/third_party/skia/experimental/skrive/src/ |
H A D | SkRive.cpp | 68 sk_sp<SkRive> SkRive::Builder::make(std::unique_ptr<SkStreamAsset> stream) { in make() argument 69 auto reader = internal::StreamReader::Make(std::move(stream)); in make()
|
/third_party/skia/dm/ |
H A D | DMSrcSink.cpp | 1092 std::unique_ptr<SkStream> stream = SkStream::MakeFromFile(fPath.c_str()); in draw() local 1093 if (!stream) { in draw() 1096 sk_sp<SkPicture> pic(SkPicture::MakeFromStream(stream.get())); in draw() 1100 stream = nullptr; // Might as well drop this when we're done with it. in draw() 1107 std::unique_ptr<SkStream> stream = SkStream::MakeFromFile(path); in get_cull_rect_for_skp() local 1108 if (!stream) { in get_cull_rect_for_skp() 1112 if (!SkPicture_StreamIsSKP(stream.get(), &info)) { in get_cull_rect_for_skp() 1328 auto stream = SkStream::MakeFromFile(path.c_str()); in SVGSrc() local 1329 if (!stream) { in SVGSrc() 1338 .make(*stream); in SVGSrc() 1390 std::unique_ptr<SkStreamAsset> stream = SkStream::MakeFromFile(fPath.c_str()); MSKPSrc() local 1417 std::unique_ptr<SkStreamAsset> stream = SkStream::MakeFromFile(fPath.c_str()); draw() local 2204 draw_to_canvas(Sink* sink, SkBitmap* bitmap, SkWStream* stream, SkString* log, SkISize size, const DrawToCanvasFn& draw) draw_to_canvas() argument 2255 draw(const Src& src, SkBitmap* bitmap, SkWStream* stream, SkString* log) const draw() argument 2269 draw(const Src& src, SkBitmap* bitmap, SkWStream* stream, SkString* log) const draw() argument 2301 draw( const Src& src, SkBitmap* bitmap, SkWStream* stream, SkString* log) const draw() argument 2330 draw(const Src& src, SkBitmap* bitmap, SkWStream* stream, SkString* log) const draw() argument 2354 draw(const Src& src, SkBitmap* bitmap, SkWStream* stream, SkString* log) const draw() argument [all...] |
/kernel/linux/linux-6.6/drivers/gpu/drm/amd/display/dc/dml/dcn20/ |
H A D | dcn20_fpu.c | 996 struct dc_writeback_info *wb_info = &res_ctx->pipe_ctx[i].stream->writeback_info[0]; in dcn20_populate_dml_writeback_from_context() 998 if (!res_ctx->pipe_ctx[i].stream) in dcn20_populate_dml_writeback_from_context() 1040 wb_arb_params->time_per_pixel = 16.0 * 1000 / (context->res_ctx.pipe_ctx[i].stream->phy_pix_clk / 1000); /* 4 bit fraction, ms */ in dcn20_fpu_set_wb_arb_params() 1047 if (!context->res_ctx.pipe_ctx[i].stream) in is_dtbclk_required() 1174 if (!context->res_ctx.pipe_ctx[i].stream) in dcn20_calculate_dlg_params() 1183 if (context->res_ctx.pipe_ctx[i].stream->mall_stream_config.type == SUBVP_PHANTOM) { in dcn20_calculate_dlg_params() 1198 context->res_ctx.pipe_ctx[i].stream->adaptive_sync_infopacket.valid) in dcn20_calculate_dlg_params() 1200 &context->res_ctx.pipe_ctx[i].stream->timing, in dcn20_calculate_dlg_params() 1221 if (!context->res_ctx.pipe_ctx[i].stream) in dcn20_calculate_dlg_params() 1320 if (!res_ctx->pipe_ctx[i].stream) in dcn20_populate_dml_pipes_from_context() 2484 struct dc_stream_state *stream = res_ctx->pipe_ctx[i].stream; dcn201_populate_dml_writeback_from_context_fpu() local [all...] |
/kernel/linux/linux-6.6/sound/soc/ |
H A D | soc-dapm.c | 1280 * @stream: stream direction. 1281 * @list: list of active widgets for this stream. 1285 * Queries DAPM graph as to whether a valid audio stream path exists for 1286 * the initial stream specified by name. This takes into account 1296 int snd_soc_dapm_dai_get_connected_widgets(struct snd_soc_dai *dai, int stream, in snd_soc_dapm_dai_get_connected_widgets() argument 1302 struct snd_soc_dapm_widget *w = snd_soc_dai_get_widget(dai, stream); in snd_soc_dapm_dai_get_connected_widgets() 1309 if (stream == SNDRV_PCM_STREAM_PLAYBACK) { in snd_soc_dapm_dai_get_connected_widgets() 1326 trace_snd_soc_dapm_connected(paths, stream); in snd_soc_dapm_dai_get_connected_widgets() 2128 ret += scnprintf(buf + ret, PAGE_SIZE - ret, " stream in dapm_widget_power_read_file() 4367 int stream; dapm_connect_dai_pair() local 4400 soc_dapm_dai_stream_event(struct snd_soc_dai *dai, int stream, int event) soc_dapm_dai_stream_event() argument 4490 soc_dapm_stream_event(struct snd_soc_pcm_runtime *rtd, int stream, int event) soc_dapm_stream_event() argument 4513 snd_soc_dapm_stream_event(struct snd_soc_pcm_runtime *rtd, int stream, int event) snd_soc_dapm_stream_event() argument 4523 snd_soc_dapm_stream_stop(struct snd_soc_pcm_runtime *rtd, int stream) snd_soc_dapm_stream_stop() argument [all...] |
/kernel/linux/linux-5.10/drivers/gpu/drm/amd/display/dc/dcn10/ |
H A D | dcn10_link_encoder.c | 392 /* disable video stream */ in set_dp_phy_pattern_hbr2_compliance_cp2520_2() 786 const struct dc_stream_state *stream) in dcn10_link_encoder_validate_output_with_stream() 792 if (stream->sink->edid_caps.panel_patch.skip_scdc_overwrite && in dcn10_link_encoder_validate_output_with_stream() 796 switch (stream->signal) { in dcn10_link_encoder_validate_output_with_stream() 801 stream->link->connector_signal, in dcn10_link_encoder_validate_output_with_stream() 802 stream->signal, in dcn10_link_encoder_validate_output_with_stream() 803 &stream->timing); in dcn10_link_encoder_validate_output_with_stream() 808 &stream->timing, in dcn10_link_encoder_validate_output_with_stream() 809 &stream->sink->edid_caps, in dcn10_link_encoder_validate_output_with_stream() 810 stream in dcn10_link_encoder_validate_output_with_stream() 784 dcn10_link_encoder_validate_output_with_stream( struct link_encoder *enc, const struct dc_stream_state *stream) dcn10_link_encoder_validate_output_with_stream() argument [all...] |
/kernel/linux/linux-5.10/drivers/net/wireless/realtek/rtlwifi/rtl8192de/ |
H A D | trx.c | 301 int stream; in rtl92d_loop_over_streams() local 303 for (stream = 0; stream < 2; stream++) { in rtl92d_loop_over_streams() 304 if (pstats->rx_mimo_sig_qual[stream] != -1) { in rtl92d_loop_over_streams() 305 if (rtlpriv->stats.rx_evm_percentage[stream] == 0) { in rtl92d_loop_over_streams() 306 rtlpriv->stats.rx_evm_percentage[stream] = in rtl92d_loop_over_streams() 307 pstats->rx_mimo_sig_qual[stream]; in rtl92d_loop_over_streams() 309 rtlpriv->stats.rx_evm_percentage[stream] = in rtl92d_loop_over_streams() 310 ((rtlpriv->stats.rx_evm_percentage[stream] in rtl92d_loop_over_streams() [all...] |
/kernel/linux/linux-6.6/drivers/gpu/drm/amd/display/dc/dcn10/ |
H A D | dcn10_link_encoder.c | 388 /* disable video stream */ in set_dp_phy_pattern_hbr2_compliance_cp2520_2() 783 const struct dc_stream_state *stream) in dcn10_link_encoder_validate_output_with_stream() 789 if (stream->sink->edid_caps.panel_patch.skip_scdc_overwrite && in dcn10_link_encoder_validate_output_with_stream() 793 switch (stream->signal) { in dcn10_link_encoder_validate_output_with_stream() 798 stream->link->connector_signal, in dcn10_link_encoder_validate_output_with_stream() 799 stream->signal, in dcn10_link_encoder_validate_output_with_stream() 800 &stream->timing); in dcn10_link_encoder_validate_output_with_stream() 805 &stream->timing, in dcn10_link_encoder_validate_output_with_stream() 806 &stream->sink->edid_caps, in dcn10_link_encoder_validate_output_with_stream() 807 stream in dcn10_link_encoder_validate_output_with_stream() 781 dcn10_link_encoder_validate_output_with_stream( struct link_encoder *enc, const struct dc_stream_state *stream) dcn10_link_encoder_validate_output_with_stream() argument [all...] |
/kernel/linux/linux-6.6/drivers/gpu/drm/amd/display/dc/clk_mgr/dcn315/ |
H A D | dcn315_clk_mgr.c | 66 const struct dc_stream_state *stream = context->streams[i]; in dcn315_get_active_display_cnt_wa() local 68 if (stream->signal == SIGNAL_TYPE_HDMI_TYPE_A || in dcn315_get_active_display_cnt_wa() 69 stream->signal == SIGNAL_TYPE_DVI_SINGLE_LINK || in dcn315_get_active_display_cnt_wa() 70 stream->signal == SIGNAL_TYPE_DVI_DUAL_LINK) in dcn315_get_active_display_cnt_wa() 94 if (pipe->stream->link->link_enc && pipe->stream->link->link_enc->funcs->is_dig_enabled && in should_disable_otg() 95 pipe->stream->link->link_enc->funcs->is_dig_enabled(pipe->stream->link->link_enc)) in should_disable_otg() 110 if (pipe->stream && (pipe->stream in dcn315_disable_otg_wa() [all...] |
/kernel/linux/linux-6.6/drivers/net/wireless/realtek/rtlwifi/rtl8192de/ |
H A D | trx.c | 301 int stream; in rtl92d_loop_over_streams() local 303 for (stream = 0; stream < 2; stream++) { in rtl92d_loop_over_streams() 304 if (pstats->rx_mimo_sig_qual[stream] != -1) { in rtl92d_loop_over_streams() 305 if (rtlpriv->stats.rx_evm_percentage[stream] == 0) { in rtl92d_loop_over_streams() 306 rtlpriv->stats.rx_evm_percentage[stream] = in rtl92d_loop_over_streams() 307 pstats->rx_mimo_sig_qual[stream]; in rtl92d_loop_over_streams() 309 rtlpriv->stats.rx_evm_percentage[stream] = in rtl92d_loop_over_streams() 310 ((rtlpriv->stats.rx_evm_percentage[stream] in rtl92d_loop_over_streams() [all...] |
/third_party/ffmpeg/libavcodec/ |
H A D | libopenjpegenc.c | 563 opj_stream_t *stream = NULL; in libopenjpeg_encode_frame() local 688 stream = opj_stream_default_create(OPJ_STREAM_WRITE); in libopenjpeg_encode_frame() 690 if (!stream) { in libopenjpeg_encode_frame() 691 av_log(avctx, AV_LOG_ERROR, "Error creating the cio stream\n"); in libopenjpeg_encode_frame() 697 opj_stream_set_write_function(stream, stream_write); in libopenjpeg_encode_frame() 698 opj_stream_set_skip_function(stream, stream_skip); in libopenjpeg_encode_frame() 699 opj_stream_set_seek_function(stream, stream_seek); in libopenjpeg_encode_frame() 700 opj_stream_set_user_data(stream, &writer, NULL); in libopenjpeg_encode_frame() 702 if (!opj_start_compress(compress, image, stream) || in libopenjpeg_encode_frame() 703 !opj_encode(compress, stream) || in libopenjpeg_encode_frame() [all...] |
/third_party/skia/third_party/externals/angle2/src/libANGLE/ |
H A D | Program.h | 105 void WriteBlockMemberInfo(BinaryOutputStream *stream, const sh::BlockMemberInfo &var); 106 void LoadBlockMemberInfo(BinaryInputStream *stream, sh::BlockMemberInfo *var); 108 void WriteShaderVar(BinaryOutputStream *stream, const sh::ShaderVariable &var); 109 void LoadShaderVar(BinaryInputStream *stream, sh::ShaderVariable *var); 111 void WriteInterfaceBlock(BinaryOutputStream *stream, const InterfaceBlock &block); 112 void LoadInterfaceBlock(BinaryInputStream *stream, InterfaceBlock *block); 114 void WriteShInterfaceBlock(BinaryOutputStream *stream, const sh::InterfaceBlock &block); 115 void LoadShInterfaceBlock(BinaryInputStream *stream, sh::InterfaceBlock *block); 117 void WriteShaderVariableBuffer(BinaryOutputStream *stream, const ShaderVariableBuffer &var); 118 void LoadShaderVariableBuffer(BinaryInputStream *stream, ShaderVariableBuffe [all...] |