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:m_Encoders
(Results
1 - 2
of
2
) sorted by relevance
/third_party/lzma/CS/7zip/Compress/LZMA/
H
A
D
LzmaEncoder.cs
72
BitEncoder[]
m_Encoders
;
field
74
public void Create() {
m_Encoders
= new BitEncoder[0x300]; }
in Create()
76
public void Init() { for (int i = 0; i < 0x300; i++)
m_Encoders
[i].Init(); }
in Init()
84
m_Encoders
[context].Encode(rangeEncoder, bit);
in Encode()
103
m_Encoders
[state].Encode(rangeEncoder, bit);
in EncodeMatched()
119
price +=
m_Encoders
[((1 + matchBit) << 8) + context].GetPrice(bit);
in GetPrice()
131
price +=
m_Encoders
[context].GetPrice(bit);
in GetPrice()
/third_party/lzma/Java/SevenZip/Compression/LZMA/
H
A
D
Encoder.java
72
short[]
m_Encoders
= new short[0x300];
field in Encoder.LiteralEncoder.Encoder2
74
public void Init() { SevenZip.Compression.RangeCoder.Encoder.InitBitModels(
m_Encoders
); }
in Init()
84
rangeEncoder.Encode(
m_Encoders
, context, bit);
in Encode()
103
rangeEncoder.Encode(
m_Encoders
, state, bit);
in EncodeMatched()
119
price += SevenZip.Compression.RangeCoder.Encoder.GetPrice(
m_Encoders
[((1 + matchBit) << 8) + context], bit);
in GetPrice()
131
price += SevenZip.Compression.RangeCoder.Encoder.GetPrice(
m_Encoders
[context], bit);
in GetPrice()
Completed in 4 milliseconds