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:matchLengthFreq
(Results
1 - 6
of
6
) sorted by relevance
/kernel/linux/linux-5.10/lib/zstd/
H
A
D
zstd_opt.h
68
ssPtr->
matchLengthFreq
[u] = 1;
in ZSTD_rescaleFreqs()
87
ssPtr->
matchLengthFreq
[u] = 1 + (ssPtr->
matchLengthFreq
[u] >> ZSTD_FREQ_DIV);
in ZSTD_rescaleFreqs()
88
ssPtr->matchLengthSum += ssPtr->
matchLengthFreq
[u];
in ZSTD_rescaleFreqs()
89
ssPtr->matchSum += ssPtr->
matchLengthFreq
[u] * (u + 3);
in ZSTD_rescaleFreqs()
159
price += ML_bits[mlCode] + seqStorePtr->log2matchLengthSum - ZSTD_highbit32(seqStorePtr->
matchLengthFreq
[mlCode] + 1);
in ZSTD_getPrice()
193
seqStorePtr->
matchLengthFreq
[mlCode]++;
in ZSTD_updatePrice()
H
A
D
zstd_internal.h
201
U32 *
matchLengthFreq
;
member
H
A
D
compress.c
309
zc->seqStore.
matchLengthFreq
= zc->seqStore.litLengthFreq + (MaxLL + 1);
in ZSTD_resetCCtx_advanced()
310
zc->seqStore.offCodeFreq = zc->seqStore.
matchLengthFreq
+ (MaxML + 1);
in ZSTD_resetCCtx_advanced()
/kernel/linux/linux-6.6/lib/zstd/compress/
H
A
D
zstd_opt.c
175
optPtr->
matchLengthFreq
[ml] = bitCost ? 1 << (scaleLog-bitCost) : 1 /*minimum to calculate cost*/;
in ZSTD_rescaleFreqs()
176
optPtr->matchLengthSum += optPtr->
matchLengthFreq
[ml];
in ZSTD_rescaleFreqs()
213
optPtr->
matchLengthFreq
[ml] = 1;
in ZSTD_rescaleFreqs()
235
optPtr->matchLengthSum = ZSTD_scaleStats(optPtr->
matchLengthFreq
, MaxML, 11);
in ZSTD_rescaleFreqs()
318
price += (ML_bits[mlCode] * BITCOST_MULTIPLIER) + (optPtr->matchLengthSumBasePrice - WEIGHT(optPtr->
matchLengthFreq
[mlCode], optLevel));
in ZSTD_getMatchPrice()
357
optPtr->
matchLengthFreq
[mlCode]++;
in ZSTD_updateStats()
H
A
D
zstd_compress_internal.h
161
unsigned*
matchLengthFreq
; /* table of matchLength statistics, of size (MaxML+1) */
member
H
A
D
zstd_compress.c
1693
ms->opt.
matchLengthFreq
= (unsigned*)ZSTD_cwksp_reserve_aligned(ws, (MaxML+1) * sizeof(unsigned));
in ZSTD_reset_matchState()
Completed in 27 milliseconds