Home
last modified time | relevance | path

Searched refs:deflate (Results 1 – 20 of 20) sorted by relevance

/ohos5.0/docs/zh-cn/application-dev/reference/apis-basic-services-kit/
H A Derrorcode-zlib.md96 当调用deflate或inflate等接口时,压缩流或解压流发生错误。
100 1. 当调用deflate或inflate等接口时,未先使用deflateInit或inflateInit接口对压缩或解压流进行初始化。
105 1. 当调用deflate或inflate等接口前,先使用deflateInit或inflateInit接口对压缩或解压流进行初始化。
H A Djs-apis-zlib.md1525 console.info('deflate success')
1530 console.info('deflate success')
1687 console.info('deflate success')
2718 console.info('deflate success')
2871 ### deflate<sup>12+</sup>
2873 deflate(strm: ZStream, flush: CompressFlushMode): Promise&lt;ReturnStatus&gt;
2930 console.info('deflate success')
2994 console.info('deflate success')
3339 微调deflate的内部压缩参数,使用Promise异步返回。成功时返回结果状态。
3471 重置初始化的deflate压缩流,但保留其设置的压缩参数和字典,使用Promise异步返回。成功时返回结果状态。
[all …]
/ohos5.0/base/update/updater/services/diffpatch/bzip2/
H A Dzip_adapter.cpp81 ret = deflate(&zstream_, Z_NO_FLUSH); in WriteData()
118 ret = deflate(&zstream_, Z_FINISH); in FlushData()
/ohos5.0/build/lite/config/component/zlib/
H A DBUILD.gn27 "//third_party/zlib/deflate.c",
28 "//third_party/zlib/deflate.h",
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/box/
H A Drender_box_base.cpp508 Size deflate; in SetChildLayoutParam() local
510 deflate += padding_.GetLayoutSize(); in SetChildLayoutParam()
511 deflate += GetBorderSize(); in SetChildLayoutParam()
513 deflate += margin_.GetLayoutSize(); in SetChildLayoutParam()
516 double minWidth = std::max(selfLayoutParam_.GetMinSize().Width() - deflate.Width(), 0.0); in SetChildLayoutParam()
517 double minHeight = std::max(selfLayoutParam_.GetMinSize().Height() - deflate.Height(), 0.0); in SetChildLayoutParam()
523 double maxWidth = std::max(selfLayoutParam_.GetMaxSize().Width() - deflate.Width(), 0.0); in SetChildLayoutParam()
524 double maxHeight = std::max(selfLayoutParam_.GetMaxSize().Height() - deflate.Height(), 0.0); in SetChildLayoutParam()
/ohos5.0/foundation/arkui/ui_lite/tools/qt/simulator/third_party/zlib/
H A Dzlib.pro24 ../../../../../../../../third_party/zlib/deflate.c \
/ohos5.0/docs/en/application-dev/reference/apis-basic-services-kit/
H A Derrorcode-zlib.md96 …d when an error occurs in compression or decompression stream when the **deflate** or **inflate** …
100 1. When the **deflate** or **inflate** API is called, the **deflateInit** or **inflateInit** API is…
105 1. Before calling the **deflate** or **inflate** API, use the **deflateInit** or **inflateInit** AP…
H A Djs-apis-zlib.md1525 console.info('deflate success')
1529 await zip.deflate({ availableIn: 11 }, zlib.CompressFlushMode.FINISH).then((data) => {
1530 console.info('deflate success')
1687 console.info('deflate success')
2686 await zip.deflate({ availableOut: 8 }, zlib.CompressFlushMode.FINISH).then((data) => {
2687 console.info('deflate success')
2840 ### deflate<sup>12+</sup>
2842 deflate(strm: ZStream, flush: CompressFlushMode): Promise&lt;ReturnStatus&gt;
2898 await zip.deflate({ availableOut: 8 }, zlib.CompressFlushMode.FINISH).then((data) => {
2899 console.info('deflate success')
[all …]
/ohos5.0/base/hiviewdfx/hidumper/frameworks/native/src/util/
H A Ddump_compressor.cpp125 if (deflate(&zStream_, flush) == Z_STREAM_ERROR) { in DeflateBuffer()
/ohos5.0/foundation/communication/dsoftbus/core/bus_center/utils/src/
H A Dlnn_compress.c64 ret = deflate(&strm, Z_FINISH); in DataCompress()
/ohos5.0/docs/en/application-dev/reference/native-lib/
H A Dzlib.md9 The zlib library provides in-momery data compression and decompression. By employing the deflate al…
/ohos5.0/base/hiviewdfx/hilog/services/hilogd/
H A Dlog_compress.cpp95 if (deflate(&cStream, flush) == Z_STREAM_ERROR) { in Compress()
/ohos5.0/base/update/updater/services/package/pkg_algorithm/
H A Dpkg_algo_deflate.cpp33 ret = deflate(&zstream, flush); in DeflateData()
/ohos5.0/foundation/distributedhardware/distributed_hardware_fwk/utils/src/
H A Ddh_utils_tool.cpp241 deflate(&strm, Z_FINISH); in Compress()
/ohos5.0/docs/en/release-notes/api-diff/v3.1-Release/
H A Dnative-apidiff-v3.1-release.md118 | zlib | ZEXTERN int ZEXPORT deflate OF((z_streamp strm, int flush)); | Added | Added the AP…
122 … | Added the API for obtaining the sliding dictionary maintained by **deflate**. …
123 …onst char *version, int stream_size)); | Added | Added the APIs for **deflate** initialization.…
126 …ts, int value)); | Added | Added the APIs for inserting bits in the **deflate** output stream. …
130 …| Added the API for fine-tuning the internal compression parameters of **deflate**. …
/ohos5.0/docs/zh-cn/release-notes/api-diff/v3.1-Release/
H A Dnative-apidiff-v3.1-release.md118 | zlib | ZEXTERN int ZEXPORT deflate OF((z_streamp strm, int flush)); | 新增 | 压缩函数 …
122 …F((z_streamp strm, Bytef *dictionary, uInt *dictLength)); | 新增 | 返回由deflate维护的滑动字典 …
/ohos5.0/base/startup/init/services/modules/trace/
H A Dinit_trace.c363 ret = deflate(&zs, flush); in DumpCompressedTrace()
/ohos5.0/base/hiviewdfx/hitrace/cmd/src/
H A Dhitrace_cmd.cpp540 ret = deflate(&zs, flush); in DumpCompressedTrace()
/ohos5.0/foundation/bundlemanager/bundle_framework/interfaces/kits/js/zip/napi/class_zip/
H A Dzip_n_exporter.cpp614 arg->errCode = deflate(zipEntity->zs.get(), flush); in Deflate()
/ohos5.0/base/web/webview/ohos_nweb/prebuilts/
H A DNOTICE131092 third_party_software_for_chromium: Puffin deterministic deflate recompressor