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:BCJ2_STREAM_MAIN
(Results
1 - 4
of
4
) sorted by relevance
/third_party/lzma/C/
H
A
D
Bcj2.c
89
// src = p->bufs[
BCJ2_STREAM_MAIN
];
in Bcj2Dec_Decode()
110
const Byte *src = p->bufs[
BCJ2_STREAM_MAIN
];
in Bcj2Dec_Decode()
114
const SizeT rem = (SizeT)(p->lims[
BCJ2_STREAM_MAIN
] - src);
in Bcj2Dec_Decode()
176
if (src == p->lims[
BCJ2_STREAM_MAIN
] || dest == p->destLim)
in Bcj2Dec_Decode()
179
const SizeT num = (SizeT)(src - p->bufs[
BCJ2_STREAM_MAIN
]);
in Bcj2Dec_Decode()
180
p->bufs[
BCJ2_STREAM_MAIN
] = src;
in Bcj2Dec_Decode()
183
/* state
BCJ2_STREAM_MAIN
has more priority than BCJ2_STATE_ORIG */
in Bcj2Dec_Decode()
185
src == p->lims[
BCJ2_STREAM_MAIN
] ?
in Bcj2Dec_Decode()
186
(unsigned)
BCJ2_STREAM_MAIN
:
in Bcj2Dec_Decode()
200
p->bufs[
BCJ2_STREAM_MAIN
]
in Bcj2Dec_Decode()
[all...]
H
A
D
Bcj2Enc.c
198
Byte *dest = p->bufs[
BCJ2_STREAM_MAIN
];
in Bcj2Enc_Encode_2()
201
SizeT rem = (SizeT)(p->lims[
BCJ2_STREAM_MAIN
] - dest);
in Bcj2Enc_Encode_2()
232
ip = p->ip64 + (CBcj2Enc_ip_unsigned)(SizeT)(dest - p->bufs[
BCJ2_STREAM_MAIN
]);
in Bcj2Enc_Encode_2()
233
p->bufs[
BCJ2_STREAM_MAIN
] = dest;
in Bcj2Enc_Encode_2()
241
p->state =
BCJ2_STREAM_MAIN
;
in Bcj2Enc_Encode_2()
299
p->bufs[
BCJ2_STREAM_MAIN
]--;
in Bcj2Enc_Encode_2()
H
A
D
Bcj2.h
15
BCJ2_STREAM_MAIN
,
enumerator
68
(dest) is allowed to overlap with bufs[
BCJ2_STREAM_MAIN
], with the following conditions:
69
bufs[
BCJ2_STREAM_MAIN
] >= dest &&
70
bufs[
BCJ2_STREAM_MAIN
] - dest >=
73
reserve = bufs[
BCJ2_STREAM_MAIN
] - dest -
100
unsigned state; /*
BCJ2_STREAM_MAIN
has more priority than BCJ2_STATE_ORIG */
137
/* (state ==
BCJ2_STREAM_MAIN
) means that decoder is ready for
138
additional input data in
BCJ2_STREAM_MAIN
stream.
139
Note that (state ==
BCJ2_STREAM_MAIN
) is allowed for non-finished decoding.
141
#define Bcj2Dec_IsMaybeFinished_state_MAIN(_p_) ((_p_)->state ==
BCJ2_STREAM_MAIN
)
[all...]
/third_party/lzma/CPP/7zip/Compress/
H
A
D
Bcj2Coder.cpp
629
Currently 7-Zip/7z code ends with (state ==
BCJ2_STREAM_MAIN
),
in Code()
632
And Bcj2Dec_Decode() exits with (state ==
BCJ2_STREAM_MAIN
),
in Code()
640
if (dec.state !=
BCJ2_STREAM_MAIN
)
in Code()
764
if (dec.state !=
BCJ2_STREAM_MAIN
)
in Read()
Completed in 4 milliseconds