Home
Sort by
last modified time
|
relevance
|
path
Repository(s)
applications
arkcompiler
base
build
commonlibrary
developtools
device
docs
domains
drivers
foundation
ide
interface
kernel
napi_generator
productdefine
test
third_party
vendor
select all
invert selection
clear
Full Search
Search through all text tokens(words,strings,identifiers,numbers) in index.
Definition
Only finds symbol definitions(where e.g a variable(function,...) is defined).
Symbol
Only finds symbol(e.g. methods classes,function,variables).
File Path
Path of the source file(use "/").If you want just exact path,enclose it in "".Source files end with: .jar/.bz2/.a/.h/.java...
History
History log comments.
Type
Any
Bzip(2)
C
Clojure
C#
C++
ELF
Erlang
Image file
Fortran
Golang
GZIP
Haskell
Jar
Java
Java class
JavaScript
Lisp
Lua
Pascal
Perl
PHP
Plain Text
PL/SQL
Python
Rust
Scala
Shell script
SQL
Tar
Tcl
Troff
UUEncoded
Visual Basic
XML
Zip
Type of analyzer used to filter file types include with selected(e.g. just C sources).
Help
Searched
refs:maxNbSeq
(Results
1 - 4
of
4
) sorted by relevance
/kernel/linux/linux-6.6/lib/zstd/common/
H
A
D
zstd_internal.h
297
size_t
maxNbSeq
;
member
/kernel/linux/linux-6.6/lib/zstd/compress/
H
A
D
zstd_compress.c
1401
size_t const
maxNbSeq
= blockSize / divider;
in ZSTD_estimateCCtxSize_usingCCtxParams_internal()
local
1403
+ ZSTD_cwksp_aligned_alloc_size(
maxNbSeq
* sizeof(seqDef))
in ZSTD_estimateCCtxSize_usingCCtxParams_internal()
1404
+ 3 * ZSTD_cwksp_alloc_size(
maxNbSeq
* sizeof(BYTE));
in ZSTD_estimateCCtxSize_usingCCtxParams_internal()
1781
size_t const
maxNbSeq
= blockSize / divider;
in ZSTD_resetCCtx_internal()
local
1882
zc->seqStore.
maxNbSeq
=
maxNbSeq
;
in ZSTD_resetCCtx_internal()
1883
zc->seqStore.llCode = ZSTD_cwksp_reserve_buffer(ws,
maxNbSeq
* sizeof(BYTE));
in ZSTD_resetCCtx_internal()
1884
zc->seqStore.mlCode = ZSTD_cwksp_reserve_buffer(ws,
maxNbSeq
* sizeof(BYTE));
in ZSTD_resetCCtx_internal()
1885
zc->seqStore.ofCode = ZSTD_cwksp_reserve_buffer(ws,
maxNbSeq
* sizeof(BYTE));
in ZSTD_resetCCtx_internal()
1886
zc->seqStore.sequencesStart = (seqDef*)ZSTD_cwksp_reserve_aligned(ws,
maxNbSeq
* sizeo
in ZSTD_resetCCtx_internal()
[all...]
H
A
D
zstd_compress_internal.h
603
assert((size_t)(seqStorePtr->sequences - seqStorePtr->sequencesStart) < seqStorePtr->
maxNbSeq
);
in ZSTD_storeSeq()
/kernel/linux/linux-5.10/lib/zstd/
H
A
D
compress.c
94
size_t const
maxNbSeq
= blockSize / divider;
in ZSTD_CCtxWorkspaceBound()
local
95
size_t const tokenSpace = blockSize + 11 *
maxNbSeq
;
in ZSTD_CCtxWorkspaceBound()
254
size_t const
maxNbSeq
= blockSize / divider;
in ZSTD_resetCCtx_advanced()
local
255
size_t const tokenSpace = blockSize + 11 *
maxNbSeq
;
in ZSTD_resetCCtx_advanced()
319
ptr = zc->seqStore.sequencesStart +
maxNbSeq
;
in ZSTD_resetCCtx_advanced()
321
zc->seqStore.mlCode = zc->seqStore.llCode +
maxNbSeq
;
in ZSTD_resetCCtx_advanced()
322
zc->seqStore.ofCode = zc->seqStore.mlCode +
maxNbSeq
;
in ZSTD_resetCCtx_advanced()
323
zc->seqStore.litStart = zc->seqStore.ofCode +
maxNbSeq
;
in ZSTD_resetCCtx_advanced()
Completed in 16 milliseconds