OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:chunk_blocks
(Results
1 - 6
of
6
) sorted by null
/system/update_engine/payload_generator/
full_update_generator.cc
141
size_t
chunk_blocks
= full_chunk_size / config.block_size;
local
145
<<
chunk_blocks
<< " blocks (" << config.block_size
155
size_t num_chunks = (partition_blocks +
chunk_blocks
- 1) /
chunk_blocks
;
162
size_t start_block = i *
chunk_blocks
;
164
size_t num_blocks = std::min(
chunk_blocks
,
165
partition_blocks - i *
chunk_blocks
);
delta_diff_utils.h
56
// |
chunk_blocks
| blocks, or unlimited if |
chunk_blocks
| is -1. The blobs of the
67
ssize_t
chunk_blocks
,
74
// |new_part|. The file will be split in chunks of |
chunk_blocks
| blocks each
75
// or treated as a single chunk if |
chunk_blocks
| is -1. The file data is
86
ssize_t
chunk_blocks
,
ab_generator.h
104
// - Their combined blocks do not exceed |
chunk_blocks
| blocks.
106
// |
chunk_blocks
|.
109
size_t
chunk_blocks
,
delta_diff_utils.cc
285
ssize_t
chunk_blocks
,
377
chunk_blocks
,
386
if (
chunk_blocks
== -1)
387
chunk_blocks
= new_num_blocks;
393
//
chunk_blocks
.
395
op_block_offset +=
chunk_blocks
) {
405
static_cast<uint64_t>(
chunk_blocks
));
437
ssize_t
chunk_blocks
,
444
if (
chunk_blocks
== -1)
445
chunk_blocks
= total_blocks
[
all
...]
ab_generator.cc
195
size_t
chunk_blocks
,
226
combined_block_count <=
chunk_blocks
) {
delta_diff_utils_unittest.cc
129
bool RunDeltaMovedAndZeroBlocks(ssize_t
chunk_blocks
,
139
chunk_blocks
,
483
EXPECT_TRUE(RunDeltaMovedAndZeroBlocks(-1, //
chunk_blocks
506
EXPECT_TRUE(RunDeltaMovedAndZeroBlocks(-1, //
chunk_blocks
536
EXPECT_TRUE(RunDeltaMovedAndZeroBlocks(10, //
chunk_blocks
589
EXPECT_TRUE(RunDeltaMovedAndZeroBlocks(-1, //
chunk_blocks
631
EXPECT_TRUE(RunDeltaMovedAndZeroBlocks(5, //
chunk_blocks
686
EXPECT_TRUE(RunDeltaMovedAndZeroBlocks(-1, //
chunk_blocks
Completed in 210 milliseconds