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:litLengthSum
(Results
1 - 7
of
7
) sorted by relevance
/kernel/linux/linux-6.6/lib/zstd/compress/
H
A
D
zstd_compress_superblock.c
134
size_t
litLengthSum
= 0;
in ZSTD_seqDecompressedSize()
local
135
(void)(
litLengthSum
); /* suppress unused variable warning on some environments */
in ZSTD_seqDecompressedSize()
138
litLengthSum
+= seqLen.litLength;
in ZSTD_seqDecompressedSize()
142
assert(
litLengthSum
<= litSize);
in ZSTD_seqDecompressedSize()
144
assert(
litLengthSum
== litSize);
in ZSTD_seqDecompressedSize()
H
A
D
zstd_opt.c
75
optPtr->litLengthSumBasePrice = WEIGHT(optPtr->
litLengthSum
, optLevel);
in ZSTD_setBasePrices()
117
* if first block (detected by optPtr->
litLengthSum
== 0) : init statistics
132
if (optPtr->
litLengthSum
== 0) { /* first block : init */
in ZSTD_rescaleFreqs()
158
optPtr->
litLengthSum
= 0;
in ZSTD_rescaleFreqs()
164
optPtr->
litLengthSum
+= optPtr->litLengthFreq[ll];
in ZSTD_rescaleFreqs()
208
optPtr->
litLengthSum
= sum_u32(baseLLfreqs, MaxLL+1);
in ZSTD_rescaleFreqs()
234
optPtr->
litLengthSum
= ZSTD_scaleStats(optPtr->litLengthFreq, MaxLL, 11);
in ZSTD_rescaleFreqs()
344
optPtr->
litLengthSum
++;
in ZSTD_updateStats()
1364
assert(ms->opt.
litLengthSum
== 0); /* first block */
in ZSTD_initStats_ultra()
1404
if ( (ms->opt.
litLengthSum
in ZSTD_compressBlock_btultra2()
[all...]
H
A
D
zstd_compress_internal.h
167
U32
litLengthSum
; /* nb of litLength codes */
member
H
A
D
zstd_compress.c
1609
ms->opt.
litLengthSum
= 0; /* force reset of btopt stats */
in ZSTD_invalidateMatchState()
/kernel/linux/linux-5.10/lib/zstd/
H
A
D
zstd_opt.h
32
ssPtr->log2litLengthSum = ZSTD_highbit32(ssPtr->
litLengthSum
+ 1);
in ZSTD_setLog2Prices()
35
ssPtr->factor = 1 + ((ssPtr->litSum >> 5) / ssPtr->
litLengthSum
) + ((ssPtr->litSum << 1) / (ssPtr->litSum + ssPtr->matchSum));
in ZSTD_setLog2Prices()
46
if (ssPtr->
litLengthSum
== 0) {
in ZSTD_rescaleFreqs()
56
ssPtr->
litLengthSum
= MaxLL + 1;
in ZSTD_rescaleFreqs()
73
ssPtr->
litLengthSum
= 0;
in ZSTD_rescaleFreqs()
84
ssPtr->
litLengthSum
+= ssPtr->litLengthFreq[u];
in ZSTD_rescaleFreqs()
179
seqStorePtr->
litLengthSum
++;
in ZSTD_updatePrice()
H
A
D
zstd_internal.h
207
U32
litLengthSum
;
member
H
A
D
compress.c
233
cctx->seqStore.
litLengthSum
= 0; /* force reset of btopt stats */
in ZSTD_continueCCtx()
316
zc->seqStore.
litLengthSum
= 0;
in ZSTD_resetCCtx_advanced()
Completed in 27 milliseconds