OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:uncompSize
(Results
1 - 3
of
3
) sorted by null
/external/lzma/Java/Tukaani/src/org/tukaani/xz/
LZMAInputStream.java
231
long
uncompSize
= 0;
233
uncompSize
|= (long)inData.readUnsignedByte() << (8 * i);
240
initialize(in,
uncompSize
, propsByte, dictSize, null);
269
* @param
uncompSize
uncompressed size of the LZMA stream or -1
289
public LZMAInputStream(InputStream in, long
uncompSize
, byte propsByte,
291
initialize(in,
uncompSize
, propsByte, dictSize, null);
301
* @param
uncompSize
uncompressed size of the LZMA stream or -1
326
public LZMAInputStream(InputStream in, long
uncompSize
, byte propsByte,
329
initialize(in,
uncompSize
, propsByte, dictSize, presetDict);
339
* @param
uncompSize
uncompressed size of the LZMA stream or -
[
all
...]
/frameworks/base/include/androidfw/
StreamingZipInflater.h
34
StreamingZipInflater(int fd, off64_t compDataStart, size_t
uncompSize
, size_t compSize);
37
StreamingZipInflater(class FileMap* dataMap, size_t
uncompSize
);
/frameworks/base/libs/androidfw/
StreamingZipInflater.cpp
54
size_t
uncompSize
, size_t compSize) {
58
mOutTotalSize =
uncompSize
;
73
StreamingZipInflater::StreamingZipInflater(FileMap* dataMap, size_t
uncompSize
) {
76
mOutTotalSize =
uncompSize
;
Completed in 92 milliseconds