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:litLengthFreq
(Results
1 - 6
of
6
) sorted by relevance
/kernel/linux/linux-5.10/lib/zstd/
H
A
D
zstd_opt.h
66
ssPtr->
litLengthFreq
[u] = 1;
in ZSTD_rescaleFreqs()
83
ssPtr->
litLengthFreq
[u] = 1 + (ssPtr->
litLengthFreq
[u] >> (ZSTD_FREQ_DIV + 1));
in ZSTD_rescaleFreqs()
84
ssPtr->litLengthSum += ssPtr->
litLengthFreq
[u];
in ZSTD_rescaleFreqs()
109
return ssPtr->log2litLengthSum - ZSTD_highbit32(ssPtr->
litLengthFreq
[0] + 1);
in ZSTD_getLiteralPrice()
136
price += LL_bits[llCode] + ssPtr->log2litLengthSum - ZSTD_highbit32(ssPtr->
litLengthFreq
[llCode] + 1);
in ZSTD_getLiteralPrice()
178
seqStorePtr->
litLengthFreq
[llCode]++;
in ZSTD_updatePrice()
H
A
D
zstd_internal.h
202
U32 *
litLengthFreq
;
member
H
A
D
compress.c
308
zc->seqStore.
litLengthFreq
= zc->seqStore.litFreq + (1 << Litbits);
in ZSTD_resetCCtx_advanced()
309
zc->seqStore.matchLengthFreq = zc->seqStore.
litLengthFreq
+ (MaxLL + 1);
in ZSTD_resetCCtx_advanced()
/kernel/linux/linux-6.6/lib/zstd/compress/
H
A
D
zstd_opt.c
163
optPtr->
litLengthFreq
[ll] = bitCost ? 1 << (scaleLog-bitCost) : 1 /*minimum to calculate cost*/;
in ZSTD_rescaleFreqs()
164
optPtr->litLengthSum += optPtr->
litLengthFreq
[ll];
in ZSTD_rescaleFreqs()
207
ZSTD_memcpy(optPtr->
litLengthFreq
, baseLLfreqs, sizeof(baseLLfreqs));
in ZSTD_rescaleFreqs()
234
optPtr->litLengthSum = ZSTD_scaleStats(optPtr->
litLengthFreq
, MaxLL, 11);
in ZSTD_rescaleFreqs()
287
- WEIGHT(optPtr->
litLengthFreq
[llCode], optLevel);
in ZSTD_litLengthPrice()
343
optPtr->
litLengthFreq
[llCode]++;
in ZSTD_updateStats()
H
A
D
zstd_compress_internal.h
160
unsigned*
litLengthFreq
; /* table of litLength statistics, of size (MaxLL+1) */
member
H
A
D
zstd_compress.c
1692
ms->opt.
litLengthFreq
= (unsigned*)ZSTD_cwksp_reserve_aligned(ws, (MaxLL+1) * sizeof(unsigned));
in ZSTD_reset_matchState()
Completed in 25 milliseconds