OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:compRemaining
(Results
1 - 2
of
2
) sorted by null
/frameworks/base/libs/utils/
ZipUtils.cpp
50
unsigned long
compRemaining
;
58
compRemaining
= compressedLen;
96
getSize = (
compRemaining
> kReadBufSize) ?
97
kReadBufSize :
compRemaining
;
99
getSize,
compRemaining
);
108
compRemaining
-= getSize;
162
unsigned long
compRemaining
;
170
compRemaining
= compressedLen;
208
getSize = (
compRemaining
> kReadBufSize) ?
209
kReadBufSize :
compRemaining
;
[
all
...]
/bootable/recovery/minzip/
Zip.c
565
long
compRemaining
;
567
compRemaining
= pEntry->compLen;
603
long getSize = (
compRemaining
> (long)sizeof(readBuf)) ?
604
(long)sizeof(readBuf) :
compRemaining
;
606
getSize,
compRemaining
);
614
compRemaining
-= getSize;
[
all
...]
Completed in 284 milliseconds