OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:kClusterSize
(Results
1 - 2
of
2
) sorted by null
/external/lzma/CPP/Windows/
FileIO.cpp
159
// maybe we must decrease
kClusterSize
to 1 << 12, if we want correct size at tail
160
static const UInt32
kClusterSize
= 1 << 14;
161
UInt64 pos = Size & ~(UInt64)(
kClusterSize
- 1);
165
Byte *buf = (Byte *)MidAlloc(
kClusterSize
);
174
if (!Read1(buf,
kClusterSize
, processed))
180
if (processed !=
kClusterSize
)
182
pos +=
kClusterSize
;
187
pos -=
kClusterSize
;
195
buf = (Byte *)MidAlloc(
kClusterSize
);
201
if (!Read1(buf,
kClusterSize
, processed))
[
all
...]
/external/lzma/CPP/7zip/Common/
FileStreams.cpp
34
static const UInt32
kClusterSize
= 1 << 18;
74
const UInt32 mask =
kClusterSize
- 1;
117
UInt32 readSize =
kClusterSize
;
119
readSize = (UInt32)MyMin(File.Size - PhyPos, (UInt64)
kClusterSize
);
123
Buf = (Byte *)MidAlloc(
kClusterSize
);
Completed in 276 milliseconds