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:ZSTD_OPT_NUM
(Results
1 - 6
of
6
) sorted by relevance
/kernel/linux/linux-5.10/lib/zstd/
H
A
D
zstd_opt.h
285
if (currMl >
ZSTD_OPT_NUM
)
in ZSTD_insertBtAndGetAllMatches()
319
if (matchLength >
ZSTD_OPT_NUM
)
in ZSTD_insertBtAndGetAllMatches()
454
if (mlen > sufficient_len || mlen >=
ZSTD_OPT_NUM
) {
in ZSTD_compressBlock_opt_generic()
479
if (match_num && (matches[match_num - 1].len > sufficient_len || matches[match_num - 1].len >=
ZSTD_OPT_NUM
)) {
in ZSTD_compressBlock_opt_generic()
559
if (mlen > sufficient_len || cur + mlen >=
ZSTD_OPT_NUM
) {
in ZSTD_compressBlock_opt_generic()
593
if (match_num > 0 && (matches[match_num - 1].len > sufficient_len || cur + matches[match_num - 1].len >=
ZSTD_OPT_NUM
)) {
in ZSTD_compressBlock_opt_generic()
760
if (mlen > sufficient_len || mlen >=
ZSTD_OPT_NUM
) {
in ZSTD_compressBlock_opt_extDict_generic()
794
if (match_num && (matches[match_num - 1].len > sufficient_len || matches[match_num - 1].len >=
ZSTD_OPT_NUM
)) {
in ZSTD_compressBlock_opt_extDict_generic()
873
if (mlen > sufficient_len || cur + mlen >=
ZSTD_OPT_NUM
) {
in ZSTD_compressBlock_opt_extDict_generic()
907
if (match_num > 0 && (matches[match_num - 1].len > sufficient_len || cur + matches[match_num - 1].len >=
ZSTD_OPT_NUM
)) {
in ZSTD_compressBlock_opt_extDict_generic()
[all...]
H
A
D
zstd_internal.h
61
#define
ZSTD_OPT_NUM
(1 << 12)
macro
H
A
D
compress.c
102
((MaxML + 1) + (MaxLL + 1) + (MaxOff + 1) + (1 << Litbits)) * sizeof(U32) + (
ZSTD_OPT_NUM
+ 1) * (sizeof(ZSTD_match_t) + sizeof(ZSTD_optimal_t));
in ZSTD_CCtxWorkspaceBound()
266
(
ZSTD_OPT_NUM
+ 1) * (sizeof(ZSTD_match_t) + sizeof(ZSTD_optimal_t));
in ZSTD_resetCCtx_advanced()
313
ptr = zc->seqStore.matchTable +
ZSTD_OPT_NUM
+ 1;
in ZSTD_resetCCtx_advanced()
315
ptr = zc->seqStore.priceTable +
ZSTD_OPT_NUM
+ 1;
in ZSTD_resetCCtx_advanced()
/kernel/linux/linux-6.6/lib/zstd/compress/
H
A
D
zstd_opt.c
567
U32 const sufficient_len = MIN(cParams->targetLength,
ZSTD_OPT_NUM
-1);
in ZSTD_insertBtAndGetAllMatches()
718
if ( (matchLength >
ZSTD_OPT_NUM
)
in ZSTD_insertBtAndGetAllMatches()
765
if ( (matchLength >
ZSTD_OPT_NUM
)
in ZSTD_insertBtAndGetAllMatches()
973
if (*nbMatches == 0 || ((candidateMatchLength > matches[*nbMatches-1].len) && *nbMatches <
ZSTD_OPT_NUM
)) {
in ZSTD_optLdm_maybeAddMatch()
1056
U32 const sufficient_len = MIN(cParams->targetLength,
ZSTD_OPT_NUM
-1);
in ZSTD_compressBlock_opt_generic()
1144
assert(cur <
ZSTD_OPT_NUM
);
in ZSTD_compressBlock_opt_generic()
1216
|| (cur + maxML >=
ZSTD_OPT_NUM
) ) {
in ZSTD_compressBlock_opt_generic()
1222
if (cur >
ZSTD_OPT_NUM
) cur = 0; /* underflow => first match */
in ZSTD_compressBlock_opt_generic()
1258
assert(cur <
ZSTD_OPT_NUM
); /* control overflow*/
in ZSTD_compressBlock_opt_generic()
1280
assert(storeEnd <
ZSTD_OPT_NUM
);
in ZSTD_compressBlock_opt_generic()
[all...]
H
A
D
zstd_compress.c
1370
+ ZSTD_cwksp_aligned_alloc_size((
ZSTD_OPT_NUM
+1) * sizeof(ZSTD_match_t))
in ZSTD_sizeof_matchState()
1371
+ ZSTD_cwksp_aligned_alloc_size((
ZSTD_OPT_NUM
+1) * sizeof(ZSTD_optimal_t));
in ZSTD_sizeof_matchState()
1695
ms->opt.matchTable = (ZSTD_match_t*)ZSTD_cwksp_reserve_aligned(ws, (
ZSTD_OPT_NUM
+1) * sizeof(ZSTD_match_t));
in ZSTD_reset_matchState()
1696
ms->opt.priceTable = (ZSTD_optimal_t*)ZSTD_cwksp_reserve_aligned(ws, (
ZSTD_OPT_NUM
+1) * sizeof(ZSTD_optimal_t));
in ZSTD_reset_matchState()
/kernel/linux/linux-6.6/lib/zstd/common/
H
A
D
zstd_internal.h
57
#define
ZSTD_OPT_NUM
(1<<12)
macro
Completed in 30 milliseconds