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:dicSize
(Results
1 - 10
of
10
) sorted by relevance
/third_party/lzma/CPP/7zip/Archive/7z/
H
A
D
7zHandlerOut.cpp
142
UInt64
dicSize
;
in SetMainMethod()
local
146
case k_LZMA2:
dicSize
= oneMethodInfo.Get_Lzma_DicSize(); break;
in SetMainMethod()
147
case k_PPMD:
dicSize
= oneMethodInfo.Get_Ppmd_MemSize(); break;
in SetMainMethod()
148
case k_Deflate:
dicSize
= (UInt32)1 << 15; break;
in SetMainMethod()
149
case k_Deflate64:
dicSize
= (UInt32)1 << 16; break;
in SetMainMethod()
150
case k_BZip2:
dicSize
= oneMethodInfo.Get_BZip2_BlockSize(); break;
in SetMainMethod()
151
// case k_ZSTD:
dicSize
= 1 << 23; break;
in SetMainMethod()
201
UInt64 cs = (UInt64)
dicSize
<< 2;
in SetMainMethod()
206
if (cs <
dicSize
) cs =
dicSize
;
in SetMainMethod()
[all...]
H
A
D
7zHandler.cpp
446
const UInt32
dicSize
= GetUi32((const Byte *)props + 1);
in SetMethodToProp()
local
447
char *dest = GetStringForSizeValue(s,
dicSize
);
in SetMethodToProp()
H
A
D
7zIn.cpp
805
const UInt32
dicSize
= GetUi32(_inByteBack->GetPtr() + 1);
in ReadUnpackInfo()
local
806
if (folders.ParsedMethods.LzmaDic <
dicSize
)
in ReadUnpackInfo()
807
folders.ParsedMethods.LzmaDic =
dicSize
;
in ReadUnpackInfo()
/third_party/lzma/C/
H
A
D
Lzma2Dec.c
59
UInt32
dicSize
;
in Lzma2Dec_GetOldProps()
local
62
dicSize
= (prop == 40) ? 0xFFFFFFFF : LZMA2_DIC_SIZE_FROM_PROP(prop);
in Lzma2Dec_GetOldProps()
64
props[1] = (Byte)(
dicSize
);
in Lzma2Dec_GetOldProps()
65
props[2] = (Byte)(
dicSize
>> 8);
in Lzma2Dec_GetOldProps()
66
props[3] = (Byte)(
dicSize
>> 16);
in Lzma2Dec_GetOldProps()
67
props[4] = (Byte)(
dicSize
>> 24);
in Lzma2Dec_GetOldProps()
168
if (p->checkDicSize == 0 && p->prop.
dicSize
- p->processedPos <= size)
in LzmaDec_UpdateWithUncompressed()
169
p->checkDicSize = p->prop.
dicSize
;
in LzmaDec_UpdateWithUncompressed()
H
A
D
LzmaDec.c
636
if (p->checkDicSize == 0 && p->prop.
dicSize
- p->processedPos <= len)
in LzmaDec_WriteRem()
637
p->checkDicSize = p->prop.
dicSize
;
in LzmaDec_WriteRem()
677
if (total_processed < p->prop.
dicSize
) then
683
(p->checkDicSize == p->prop.
dicSize
)
690
UInt32 rem = p->prop.
dicSize
- p->processedPos;
in LzmaDec_DecodeReal2()
696
if (p->checkDicSize == 0 && p->processedPos >= p->prop.
dicSize
)
in LzmaDec_DecodeReal2()
697
p->checkDicSize = p->prop.
dicSize
;
in LzmaDec_DecodeReal2()
1260
UInt32
dicSize
;
in LzmaProps_Decode()
local
1266
dicSize
= data[1] | ((UInt32)data[2] << 8) | ((UInt32)data[3] << 16) | ((UInt32)data[4] << 24);
in LzmaProps_Decode()
1268
if (
dicSize
< LZMA_DIC_MI
in LzmaProps_Decode()
[all...]
H
A
D
LzmaDec.h
34
UInt32
dicSize
;
member
H
A
D
Lzma2Enc.c
489
UInt32
dicSize
= LzmaEncProps_GetDictSize(&p->props.lzmaProps);
in Lzma2Enc_WriteProperties()
local
491
if (
dicSize
<= LZMA2_DIC_SIZE_FROM_PROP(i))
in Lzma2Enc_WriteProperties()
/third_party/lzma/CPP/7zip/Archive/
H
A
D
LzmaHandler.cpp
29
UInt32
dicSize
= GetUi32(p);
in CheckDicSize()
local
30
if (
dicSize
== 1)
in CheckDicSize()
33
if (
dicSize
== ((UInt32)2 << i) ||
dicSize
== ((UInt32)3 << i))
in CheckDicSize()
35
return (
dicSize
== 0xFFFFFFFF);
in CheckDicSize()
/third_party/lzma/CPP/7zip/Common/
H
A
D
MethodProps.cpp
687
const UInt64
dicSize
= Get_Lzma_DicSize();
in Get_Lzma_MemUsage()
local
689
const UInt32 dict32 = (
dicSize
>= kLzmaMaxDictSize ? kLzmaMaxDictSize : (UInt32)
dicSize
);
in Get_Lzma_MemUsage()
/third_party/lzma/Asm/x86/
H
A
D
LzmaDecOpt.asm
514
dicSize
dd ?
define
Completed in 13 milliseconds