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:kAlignTableSize
(Results
1 - 8
of
8
) sorted by relevance
/third_party/lzma/Java/SevenZip/Compression/LZMA/
H
A
D
Base.java
63
public static final int
kAlignTableSize
= 1 << kNumAlignBits;
field in Base
64
public static final int kAlignMask = (
kAlignTableSize
- 1);
H
A
D
Encoder.java
339
int[] _alignPrices = new int[Base.
kAlignTableSize
];
1209
if (_alignPriceCount >= Base.
kAlignTableSize
)
in CodeOneBlock()
1348
for (int i = 0; i < Base.
kAlignTableSize
; i++)
in FillAlignPrices()
/third_party/lzma/CS/7zip/Compress/LZMA/
H
A
D
LzmaBase.cs
50
public const uint
kAlignTableSize
= 1 << kNumAlignBits;
field in SevenZip.Compression.LZMA.Base
51
public const uint kAlignMask = (
kAlignTableSize
- 1);
H
A
D
LzmaEncoder.cs
339
UInt32[] _alignPrices = new UInt32[Base.
kAlignTableSize
];
1211
if (_alignPriceCount >= Base.
kAlignTableSize
)
in CodeOneBlock()
1348
for (UInt32 i = 0; i < Base.
kAlignTableSize
; i++)
in FillAlignPrices()
/third_party/lzma/Asm/arm64/
H
A
D
LzmaDecOpt.S
629
.equ
kAlignTableSize
, (1 << kNumAlignBits)
642
.equ IsRep , (kAlign +
kAlignTableSize
)
/third_party/lzma/C/
H
A
D
LzmaDec.c
115
#define
kAlignTableSize
(1 << kNumAlignBits)
macro
145
#define IsRep (Align +
kAlignTableSize
)
H
A
D
LzmaEnc.c
289
#define
kAlignTableSize
(1 << kNumAlignBits)
macro
290
#define kAlignMask (
kAlignTableSize
- 1)
454
UInt32 alignPrices[
kAlignTableSize
];
2155
while (m <
kAlignTableSize
);
in WriteEndMarker()
2208
for (i = 0; i <
kAlignTableSize
/ 2; i++)
in FillAlignPrices()
2638
if (p->alignPriceCount >= 16) //
kAlignTableSize
in LzmaEnc_CodeOneBlock()
/third_party/lzma/Asm/x86/
H
A
D
LzmaDecOpt.asm
478
kAlignTableSize
equ (1 SHL kNumAlignBits)
define
490
IsRep equ (kAlign +
kAlignTableSize
)
Completed in 14 milliseconds