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:matchPrice
(Results
1 - 3
of
3
) sorted by relevance
/third_party/lzma/Java/SevenZip/Compression/LZMA/
H
A
D
Encoder.java
612
int
matchPrice
= SevenZip.Compression.RangeCoder.Encoder.GetPrice1(_isMatch[(_state << Base.kNumPosStatesBitsMax) + posState]);
in GetOptimum()
613
int repMatchPrice =
matchPrice
+ SevenZip.Compression.RangeCoder.Encoder.GetPrice1(_isRep[_state]);
in GetOptimum()
666
int normalMatchPrice =
matchPrice
+ SevenZip.Compression.RangeCoder.Encoder.GetPrice0(_isRep[_state]);
in GetOptimum()
823
matchPrice
= curPrice + SevenZip.Compression.RangeCoder.Encoder.GetPrice1(_isMatch[(state << Base.kNumPosStatesBitsMax) + posState]);
in GetOptimum()
824
repMatchPrice =
matchPrice
+ SevenZip.Compression.RangeCoder.Encoder.GetPrice1(_isRep[state]);
in GetOptimum()
960
normalMatchPrice =
matchPrice
+ SevenZip.Compression.RangeCoder.Encoder.GetPrice0(_isRep[state]);
in GetOptimum()
/third_party/lzma/CS/7zip/Compress/LZMA/
H
A
D
LzmaEncoder.cs
612
UInt32
matchPrice
= _isMatch[(_state.Index << Base.kNumPosStatesBitsMax) + posState].GetPrice1();
in GetOptimum()
613
UInt32 repMatchPrice =
matchPrice
+ _isRep[_state.Index].GetPrice1();
in GetOptimum()
666
UInt32 normalMatchPrice =
matchPrice
+ _isRep[_state.Index].GetPrice0();
in GetOptimum()
823
matchPrice
= curPrice + _isMatch[(state.Index << Base.kNumPosStatesBitsMax) + posState].GetPrice1();
in GetOptimum()
824
repMatchPrice =
matchPrice
+ _isRep[state.Index].GetPrice1();
in GetOptimum()
960
normalMatchPrice =
matchPrice
+ _isRep[state.Index].GetPrice0();
in GetOptimum()
/third_party/lzma/C/
H
A
D
LzmaEnc.c
1229
UInt32
matchPrice
, repMatchPrice;
in GetOptimum()
local
1322
matchPrice
= GET_PRICE_1(p->isMatch[p->state][posState]);
in GetOptimum()
1323
repMatchPrice =
matchPrice
+ GET_PRICE_1(p->isRep[p->state]);
in GetOptimum()
1379
UInt32 normalMatchPrice =
matchPrice
+ GET_PRICE_0(p->isRep[p->state]);
in GetOptimum()
1447
UInt32 litPrice,
matchPrice
, repMatchPrice;
in GetOptimum()
local
1596
matchPrice
= curPrice + GET_PRICE_1(prob);
in GetOptimum()
1627
repMatchPrice =
matchPrice
+ GET_PRICE_1(p->isRep[state]);
in GetOptimum()
1844
UInt32 normalMatchPrice =
matchPrice
+ GET_PRICE_0(p->isRep[state]);
in GetOptimum()
Completed in 9 milliseconds