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:kTopValue
(Results
1 - 10
of
10
) sorted by relevance
/third_party/lzma/CS/7zip/Compress/RangeCoder/
H
A
D
RangeCoder.cs
7
public const uint
kTopValue
= (1 << 24);
field in SevenZip.Compression.RangeCoder.Encoder
58
while (Range <
kTopValue
)
in Encode()
89
if (Range <
kTopValue
)
in EncodeDirectBits()
107
while (Range <
kTopValue
)
in EncodeBit()
124
public const uint
kTopValue
= (1 << 24);
field in SevenZip.Compression.RangeCoder.Decoder
154
while (Range <
kTopValue
)
in Normalize()
163
if (Range <
kTopValue
)
in Normalize2()
202
if (range <
kTopValue
)
in DecodeDirectBits()
H
A
D
RangeCoderBit.cs
41
if (encoder.Range < Encoder.
kTopValue
)
in Encode()
96
if (rangeDecoder.Range < Decoder.
kTopValue
)
in Decode()
108
if (rangeDecoder.Range < Decoder.
kTopValue
)
in Decode()
/third_party/lzma/C/
H
A
D
Bcj2.c
9
#define
kTopValue
((UInt32)1 << 24)
macro
98
if (p->range <
kTopValue
)
in Bcj2Dec_Decode()
276
if (p->range <
kTopValue
&& p->bufs[BCJ2_STREAM_RC] != p->lims[BCJ2_STREAM_RC])
in Bcj2Dec_Decode()
287
#undef
kTopValue
macro
H
A
D
Ppmd7Enc.c
11
#define
kTopValue
((UInt32)1 << 24)
macro
41
#define RC_NORM_BASE(p) if (R->Range <
kTopValue
) { R->Range <<= 8; Ppmd7z_RangeEnc_ShiftLow(p);
325
#undef
kTopValue
macro
H
A
D
Bcj2Enc.c
17
#define
kTopValue
((UInt32)1 << 24)
macro
183
if (p->range <
kTopValue
)
in Bcj2Enc_Encode_2()
503
#undef
kTopValue
macro
H
A
D
Ppmd7Dec.c
11
#define
kTopValue
((UInt32)1 << 24)
macro
28
#define RC_NORM_BASE(p) if ((p)->Range <
kTopValue
) \
299
#undef
kTopValue
macro
H
A
D
LzmaDec.c
12
#define
kTopValue
((UInt32)1 << 24)
macro
22
#define NORMALIZE if (range <
kTopValue
) { range <<= 8; code = (code << 8) | (*buf++); }
70
#define NORMALIZE_CHECK if (range <
kTopValue
) { if (buf >= bufLimit) return DUMMY_INPUT_EOF; range <<= 8; code = (code << 8) | (*buf++); }
H
A
D
LzmaEnc.c
44
#define
kTopValue
((UInt32)1 << 24)
macro
724
#define RC_NORM(p) if (range <
kTopValue
) { range <<= 8; RangeEnc_ShiftLow(p); }
/third_party/lzma/CPP/7zip/Bundles/LzmaSpec/
H
A
D
LzmaSpec.cpp
167
#define
kTopValue
((UInt32)1 << 24)
macro
171
if (Range <
kTopValue
)
in Normalize()
/third_party/lzma/Asm/x86/
H
A
D
LzmaDecOpt.asm
149
kTopValue
equ (1 SHL 24)
define
162
cmp range,
kTopValue
849
; cmp range,
kTopValue
875
cmp range,
kTopValue
Completed in 12 milliseconds