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_Decoders
(Results
1 - 2
of
2
) sorted by relevance
/third_party/lzma/Java/SevenZip/Compression/LZMA/
H
A
D
Decoder.java
55
short[]
m_Decoders
= new short[0x300];
field in Decoder.LiteralDecoder.Decoder2
59
SevenZip.Compression.RangeCoder.Decoder.InitBitModels(
m_Decoders
);
in Init()
66
symbol = (symbol << 1) | rangeDecoder.DecodeBit(
m_Decoders
, symbol);
in DecodeNormal()
78
int bit = rangeDecoder.DecodeBit(
m_Decoders
, ((1 + matchBit) << 8) + symbol);
in DecodeWithMatchByte()
83
symbol = (symbol << 1) | rangeDecoder.DecodeBit(
m_Decoders
, symbol);
in DecodeWithMatchByte()
/third_party/lzma/CS/7zip/Compress/LZMA/
H
A
D
LzmaDecoder.cs
65
BitDecoder[]
m_Decoders
;
field
66
public void Create() {
m_Decoders
= new BitDecoder[0x300]; }
in Create()
67
public void Init() { for (int i = 0; i < 0x300; i++)
m_Decoders
[i].Init(); }
in Init()
73
symbol = (symbol << 1) |
m_Decoders
[symbol].Decode(rangeDecoder);
in DecodeNormal()
85
uint bit =
m_Decoders
[((1 + matchBit) << 8) + symbol].Decode(rangeDecoder);
in DecodeWithMatchByte()
90
symbol = (symbol << 1) |
m_Decoders
[symbol].Decode(rangeDecoder);
in DecodeWithMatchByte()
Completed in 3 milliseconds