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:offCodeFreq
(Results
1 - 6
of
6
) sorted by relevance
/kernel/linux/linux-5.10/lib/zstd/
H
A
D
zstd_internal.h
204
U32 *
offCodeFreq
;
member
H
A
D
zstd_opt.h
70
ssPtr->
offCodeFreq
[u] = 1;
in ZSTD_rescaleFreqs()
93
ssPtr->
offCodeFreq
[u] = 1 + (ssPtr->
offCodeFreq
[u] >> ZSTD_FREQ_DIV);
in ZSTD_rescaleFreqs()
94
ssPtr->offCodeSum += ssPtr->
offCodeFreq
[u];
in ZSTD_rescaleFreqs()
151
price = offCode + seqStorePtr->log2offCodeSum - ZSTD_highbit32(seqStorePtr->
offCodeFreq
[offCode] + 1);
in ZSTD_getPrice()
186
seqStorePtr->
offCodeFreq
[offCode]++;
in ZSTD_updatePrice()
H
A
D
compress.c
310
zc->seqStore.
offCodeFreq
= zc->seqStore.matchLengthFreq + (MaxML + 1);
in ZSTD_resetCCtx_advanced()
311
ptr = zc->seqStore.
offCodeFreq
+ (MaxOff + 1);
in ZSTD_resetCCtx_advanced()
/kernel/linux/linux-6.6/lib/zstd/compress/
H
A
D
zstd_opt.c
187
optPtr->
offCodeFreq
[of] = bitCost ? 1 << (scaleLog-bitCost) : 1 /*minimum to calculate cost*/;
in ZSTD_rescaleFreqs()
188
optPtr->offCodeSum += optPtr->
offCodeFreq
[of];
in ZSTD_rescaleFreqs()
223
ZSTD_memcpy(optPtr->
offCodeFreq
, baseOFCfreqs, sizeof(baseOFCfreqs));
in ZSTD_rescaleFreqs()
236
optPtr->offCodeSum = ZSTD_scaleStats(optPtr->
offCodeFreq
, MaxOff, 11);
in ZSTD_rescaleFreqs()
312
price = (offCode * BITCOST_MULTIPLIER) + (optPtr->offCodeSumBasePrice - WEIGHT(optPtr->
offCodeFreq
[offCode], optLevel));
in ZSTD_getMatchPrice()
350
optPtr->
offCodeFreq
[offCode]++;
in ZSTD_updateStats()
H
A
D
zstd_compress_internal.h
162
unsigned*
offCodeFreq
; /* table of offCode statistics, of size (MaxOff+1) */
member
H
A
D
zstd_compress.c
1694
ms->opt.
offCodeFreq
= (unsigned*)ZSTD_cwksp_reserve_aligned(ws, (MaxOff+1) * sizeof(unsigned));
in ZSTD_reset_matchState()
Completed in 29 milliseconds