Home
last modified time | relevance | path

Searched refs:workspace (Results 1 – 25 of 181) sorted by relevance

12345678

/OK3568_Linux_fs/kernel/fs/btrfs/
H A Dzlib.c26 struct workspace { struct
39 struct workspace *workspace = list_entry(ws, struct workspace, list); in zlib_get_workspace() local
41 workspace->level = level; in zlib_get_workspace()
48 struct workspace *workspace = list_entry(ws, struct workspace, list); in zlib_free_workspace() local
50 kvfree(workspace->strm.workspace); in zlib_free_workspace()
51 kfree(workspace->buf); in zlib_free_workspace()
52 kfree(workspace); in zlib_free_workspace()
57 struct workspace *workspace; in zlib_alloc_workspace() local
60 workspace = kzalloc(sizeof(*workspace), GFP_KERNEL); in zlib_alloc_workspace()
61 if (!workspace) in zlib_alloc_workspace()
[all …]
H A Dzstd.c42 struct workspace { struct
89 static inline struct workspace *list_to_workspace(struct list_head *list) in list_to_workspace()
91 return container_of(list, struct workspace, list); in list_to_workspace()
116 struct workspace *victim = container_of(pos, struct workspace, in zstd_reclaim_timer_fn()
198 struct workspace *workspace; in zstd_cleanup_workspace_manager() local
204 workspace = container_of(wsm.idle_ws[i].next, in zstd_cleanup_workspace_manager()
205 struct workspace, list); in zstd_cleanup_workspace_manager()
206 list_del(&workspace->list); in zstd_cleanup_workspace_manager()
207 list_del(&workspace->lru_list); in zstd_cleanup_workspace_manager()
208 zstd_free_workspace(&workspace->list); in zstd_cleanup_workspace_manager()
[all …]
H A Dlzo.c57 struct workspace { struct
68 struct workspace *workspace = list_entry(ws, struct workspace, list); in lzo_free_workspace() argument
70 kvfree(workspace->buf); in lzo_free_workspace()
71 kvfree(workspace->cbuf); in lzo_free_workspace()
72 kvfree(workspace->mem); in lzo_free_workspace()
73 kfree(workspace); in lzo_free_workspace()
78 struct workspace *workspace; in lzo_alloc_workspace() local
80 workspace = kzalloc(sizeof(*workspace), GFP_KERNEL); in lzo_alloc_workspace()
81 if (!workspace) in lzo_alloc_workspace()
84 workspace->mem = kvmalloc(LZO1X_MEM_COMPRESS, GFP_KERNEL); in lzo_alloc_workspace()
[all …]
H A Dcompression.c837 struct heuristic_ws *workspace; in free_heuristic_ws() local
839 workspace = list_entry(ws, struct heuristic_ws, list); in free_heuristic_ws()
841 kvfree(workspace->sample); in free_heuristic_ws()
842 kfree(workspace->bucket); in free_heuristic_ws()
843 kfree(workspace->bucket_b); in free_heuristic_ws()
844 kfree(workspace); in free_heuristic_ws()
921 struct list_head *workspace; in btrfs_init_workspace_manager() local
933 workspace = alloc_workspace(type, 0); in btrfs_init_workspace_manager()
934 if (IS_ERR(workspace)) { in btrfs_init_workspace_manager()
940 list_add(workspace, &wsm->idle_ws); in btrfs_init_workspace_manager()
[all …]
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/
H A D10.3-2021.07-x86_64-aarch64-none-linux-gnu-manifest.txt1 gmp_configure=--disable-maintainer-mode --disable-shared --prefix=/data/jenkins/workspace/GNU-toolc…
2 … --prefix=/data/jenkins/workspace/GNU-toolchain/arm-10/build-aarch64-none-linux-gnu/host-tools --w…
3workspace/GNU-toolchain/arm-10/build-aarch64-none-linux-gnu/host-tools --with-gmp=/data/jenkins/wo…
4 …refix=/data/jenkins/workspace/GNU-toolchain/arm-10/build-aarch64-none-linux-gnu/host-tools --with-…
5 …without-python --without-x --prefix= --with-build-sysroot=/data/jenkins/workspace/GNU-toolchain/ar…
6workspace/GNU-toolchain/arm-10/build-aarch64-none-linux-gnu/install//aarch64-none-linux-gnu/libc -…
7workspace/GNU-toolchain/arm-10/build-aarch64-none-linux-gnu/install//aarch64-none-linux-gnu/libc -…
8 …nded --disable-sanity-checks --prefix=/usr --with-headers=/data/jenkins/workspace/GNU-toolchain/ar…
9workspace/GNU-toolchain/arm-10/build-aarch64-none-linux-gnu/install//aarch64-none-linux-gnu/libc -…
10workspace/GNU-toolchain/arm-10/build-aarch64-none-linux-gnu/install//aarch64-none-linux-gnu/libc -…
[all …]
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/
H A D10.3-2021.07-x86_64-arm-none-linux-gnueabihf-manifest.txt1 gmp_configure=--disable-maintainer-mode --disable-shared --prefix=/data/jenkins/workspace/GNU-toolc…
2 …--prefix=/data/jenkins/workspace/GNU-toolchain/arm-10/build-arm-none-linux-gnueabihf/host-tools --…
3workspace/GNU-toolchain/arm-10/build-arm-none-linux-gnueabihf/host-tools --with-gmp=/data/jenkins/
4 …efix=/data/jenkins/workspace/GNU-toolchain/arm-10/build-arm-none-linux-gnueabihf/host-tools --with…
5 …without-python --without-x --prefix= --with-build-sysroot=/data/jenkins/workspace/GNU-toolchain/ar…
6workspace/GNU-toolchain/arm-10/build-arm-none-linux-gnueabihf/install//arm-none-linux-gnueabihf/li…
7workspace/GNU-toolchain/arm-10/build-arm-none-linux-gnueabihf/install//arm-none-linux-gnueabihf/li…
8 …nded --disable-sanity-checks --prefix=/usr --with-headers=/data/jenkins/workspace/GNU-toolchain/ar…
9workspace/GNU-toolchain/arm-10/build-arm-none-linux-gnueabihf/install//arm-none-linux-gnueabihf/li…
10workspace/GNU-toolchain/arm-10/build-arm-none-linux-gnueabihf/install//arm-none-linux-gnueabihf/li…
[all …]
/OK3568_Linux_fs/kernel/lib/zstd/
H A Dzstd_common.c35 ZSTD_customMem ZSTD_initStack(void *workspace, size_t workspaceSize) in ZSTD_initStack() argument
37 ZSTD_customMem stackMem = {ZSTD_stackAlloc, ZSTD_stackFree, workspace}; in ZSTD_initStack()
38 ZSTD_stack *stack = (ZSTD_stack *)workspace; in ZSTD_initStack()
40 if (!workspace || workspaceSize < sizeof(ZSTD_stack) || workspace != ZSTD_PTR_ALIGN(workspace)) { in ZSTD_initStack()
45 stack->ptr = workspace; in ZSTD_initStack()
46 stack->end = (char *)workspace + workspaceSize; in ZSTD_initStack()
H A Dhuf.h104 …tx, void *dst, size_t dstSize, const void *cSrc, size_t cSrcSize, void *workspace, size_t workspac…
105 …sp(HUF_DTable *dctx, void *dst, size_t dstSize, const void *cSrc, size_t cSrcSize, void *workspace,
107 …sp(HUF_DTable *dctx, void *dst, size_t dstSize, const void *cSrc, size_t cSrcSize, void *workspace,
109 …sp(HUF_DTable *dctx, void *dst, size_t dstSize, const void *cSrc, size_t cSrcSize, void *workspace,
130 …onst HUF_CElt *CTable, unsigned maxSymbolValue, unsigned huffLog, void *workspace, size_t workspac…
160 void *workspace, size_t workspaceSize);
164 …CTable, unsigned maxSymbolValue, const void *src, size_t srcSize, void *workspace, size_t workspac…
180 size_t HUF_readDTableX2_wksp(HUF_DTable *DTable, const void *src, size_t srcSize, void *workspace, …
181 size_t HUF_readDTableX4_wksp(HUF_DTable *DTable, const void *src, size_t srcSize, void *workspace, …
201 …tx, void *dst, size_t dstSize, const void *cSrc, size_t cSrcSize, void *workspace, size_t workspac…
[all …]
H A Dhuf_decompress.c90 size_t HUF_readDTableX2_wksp(HUF_DTable *DTable, const void *src, size_t srcSize, void *workspace, … in HUF_readDTableX2_wksp() argument
102 rankVal = (U32 *)workspace + spaceUsed32; in HUF_readDTableX2_wksp()
104 huffWeight = (BYTE *)((U32 *)workspace + spaceUsed32); in HUF_readDTableX2_wksp()
109 workspace = (U32 *)workspace + spaceUsed32; in HUF_readDTableX2_wksp()
115 …, HUF_SYMBOLVALUE_MAX + 1, rankVal, &nbSymbols, &tableLog, src, srcSize, workspace, workspaceSize); in HUF_readDTableX2_wksp()
232 …tx, void *dst, size_t dstSize, const void *cSrc, size_t cSrcSize, void *workspace, size_t workspac… in HUF_decompress1X2_DCtx_wksp() argument
236 size_t const hSize = HUF_readDTableX2_wksp(DCtx, cSrc, cSrcSize, workspace, workspaceSize); in HUF_decompress1X2_DCtx_wksp()
363 …tx, void *dst, size_t dstSize, const void *cSrc, size_t cSrcSize, void *workspace, size_t workspac… in HUF_decompress4X2_DCtx_wksp() argument
367 size_t const hSize = HUF_readDTableX2_wksp(dctx, cSrc, cSrcSize, workspace, workspaceSize); in HUF_decompress4X2_DCtx_wksp()
482 size_t HUF_readDTableX4_wksp(HUF_DTable *DTable, const void *src, size_t srcSize, void *workspace, … in HUF_readDTableX4_wksp() argument
[all …]
H A Dhuf_compress.c82 …oid *dst, size_t dstSize, const void *weightTable, size_t wtSize, void *workspace, size_t workspac… in HUF_compressWeights_wksp() argument
98 CTable = (FSE_CTable *)((U32 *)workspace + spaceUsed32); in HUF_compressWeights_wksp()
100 count = (U32 *)workspace + spaceUsed32; in HUF_compressWeights_wksp()
102 norm = (S16 *)((U32 *)workspace + spaceUsed32); in HUF_compressWeights_wksp()
107 workspace = (U32 *)workspace + spaceUsed32; in HUF_compressWeights_wksp()
133 CHECK_F(FSE_buildCTable_wksp(CTable, norm, maxSymbolValue, tableLog, workspace, workspaceSize)); in HUF_compressWeights_wksp()
152 …DstSize, const HUF_CElt *CTable, U32 maxSymbolValue, U32 huffLog, void *workspace, size_t workspac… in HUF_writeCTable_wksp() argument
161 bitsToWeight = (BYTE *)((U32 *)workspace + spaceUsed32); in HUF_writeCTable_wksp()
163 huffWeight = (BYTE *)((U32 *)workspace + spaceUsed32); in HUF_writeCTable_wksp()
168 workspace = (U32 *)workspace + spaceUsed32; in HUF_writeCTable_wksp()
[all …]
H A Dfse_decompress.c88 …t *normalizedCounter, unsigned maxSymbolValue, unsigned tableLog, void *workspace, size_t workspac… in FSE_buildDTable_wksp() argument
92 U16 *symbolNext = (U16 *)workspace; in FSE_buildDTable_wksp()
287 … dstCapacity, const void *cSrc, size_t cSrcSize, unsigned maxLog, void *workspace, size_t workspac… in FSE_decompress_wksp() argument
301 dt = (FSE_DTable *)((U32 *)workspace + spaceUsed32); in FSE_decompress_wksp()
303 counting = (short *)((U32 *)workspace + spaceUsed32); in FSE_decompress_wksp()
308 workspace = (U32 *)workspace + spaceUsed32; in FSE_decompress_wksp()
322 CHECK_F(FSE_buildDTable_wksp(dt, counting, maxSymbolValue, tableLog, workspace, workspaceSize)); in FSE_decompress_wksp()
/OK3568_Linux_fs/yocto/poky/scripts/lib/devtool/
H A Dexport.py22 def export(args, config, basepath, workspace): argument
29 fd.write(json.dumps((config.workspace_path, workspace)))
51 if not workspace:
57 if recipe not in workspace:
76 if not len(set(workspace.keys()).difference(set(args.exclude))):
84 add_recipe(tar, recipe, workspace[recipe])
87 for recipe, data in workspace.items():
H A Dbuild_image.py22 def _get_packages(tinfoil, workspace, config): argument
25 for recipe in workspace:
35 def build_image(args, config, basepath, workspace): argument
53 result, outputdir = build_image_task(config, basepath, workspace, image, add_packages)
65 def build_image_task(config, basepath, workspace, image, add_packages=None, task=None, extra_append… argument
98 if workspace or add_packages:
102 packages = _get_packages(tinfoil, workspace, config)
106 if not packages and not add_packages and workspace:
H A Dutilcmds.py23 def _find_recipe_path(args, config, basepath, workspace): argument
26 if args.recipename in workspace:
27 recipefile = workspace[args.recipename]['recipefile']
42 def find_recipe(args, config, basepath, workspace): argument
44 recipefile = _find_recipe_path(args, config, basepath, workspace)
49 def edit_recipe(args, config, basepath, workspace): argument
51 return scriptutils.run_editor(_find_recipe_path(args, config, basepath, workspace), logger)
54 def configure_help(args, config, basepath, workspace): argument
58 check_workspace_recipe(workspace, args.recipename)
/OK3568_Linux_fs/yocto/poky/documentation/ref-manual/
H A Ddevtool-reference.rst47 status Show workspace status
51 Working on a recipe in the workspace:
53 rename Rename a recipe file in the workspace
58 reset Remove a recipe from your workspace
59 finish Finish working on a recipe in your workspace
63 build-image Build image including workspace recipe packages
65 create-workspace Set up workspace in an alternative location
69 import Import exported tar archive into workspace
70 export Export workspace into a tar archive
89 …Adds a new recipe to the workspace to build a specified source tree. Can optionally fetch a remote…
[all …]
/OK3568_Linux_fs/kernel/fs/jffs2/
H A Dcompr_zlib.c45 def_strm.workspace = vmalloc(zlib_deflate_workspacesize(MAX_WBITS, in alloc_workspaces()
47 if (!def_strm.workspace) in alloc_workspaces()
52 inf_strm.workspace = vmalloc(zlib_inflate_workspacesize()); in alloc_workspaces()
53 if (!inf_strm.workspace) { in alloc_workspaces()
54 vfree(def_strm.workspace); in alloc_workspaces()
64 vfree(def_strm.workspace); in free_workspaces()
65 vfree(inf_strm.workspace); in free_workspaces()
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/libc/usr/include/misc/
H A D..install.cmd1workspace/GNU-toolchain/arm-10/build-aarch64-none-linux-gnu/stage-include/include/misc/.install :=…
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/libc/usr/include/video/
H A D..install.cmd1workspace/GNU-toolchain/arm-10/build-aarch64-none-linux-gnu/stage-include/include/video/.install :…
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/libc/usr/include/misc/
H A D..install.cmd1workspace/GNU-toolchain/arm-10/build-arm-none-linux-gnueabihf/stage-include/include/misc/.install …
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/libc/usr/include/video/
H A D..install.cmd1workspace/GNU-toolchain/arm-10/build-arm-none-linux-gnueabihf/stage-include/include/video/.install…
/OK3568_Linux_fs/kernel/crypto/
H A Ddeflate.c47 stream->workspace = vzalloc(zlib_deflate_workspacesize( in deflate_comp_init()
49 if (!stream->workspace) { in deflate_comp_init()
67 vfree(stream->workspace); in deflate_comp_init()
76 stream->workspace = vzalloc(zlib_inflate_workspacesize()); in deflate_decomp_init()
77 if (!stream->workspace) { in deflate_decomp_init()
92 vfree(stream->workspace); in deflate_decomp_init()
99 vfree(ctx->comp_stream.workspace); in deflate_comp_exit()
105 vfree(ctx->decomp_stream.workspace); in deflate_decomp_exit()
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/libc/usr/include/linux/genwqe/
H A D..install.cmd1workspace/GNU-toolchain/arm-10/build-arm-none-linux-gnueabihf/stage-include/include/linux/genwqe/.…
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/libc/usr/include/linux/hsi/
H A D..install.cmd1workspace/GNU-toolchain/arm-10/build-arm-none-linux-gnueabihf/stage-include/include/linux/hsi/.ins…
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/libc/usr/include/linux/hsi/
H A D..install.cmd1workspace/GNU-toolchain/arm-10/build-aarch64-none-linux-gnu/stage-include/include/linux/hsi/.insta…
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/libc/usr/include/linux/netfilter_arp/
H A D..install.cmd1workspace/GNU-toolchain/arm-10/build-aarch64-none-linux-gnu/stage-include/include/linux/netfilter_…

12345678