Home
last modified time | relevance | path

Searched refs:block_start (Results 1 – 3 of 3) sorted by relevance

/system/update_engine/payload_generator/
Dmapfile_filesystem.cc102 uint64_t block_start, block_end; in GetFiles() local
103 if (dash == string::npos && base::StringToUint64(blocks, &block_start)) { in GetFiles()
104 mapped_file.extents.push_back(ExtentForRange(block_start, 1)); in GetFiles()
106 base::StringToUint64(blocks.substr(0, dash), &block_start) && in GetFiles()
108 if (block_end < block_start) { in GetFiles()
110 << " is smaller than start block " << block_start in GetFiles()
123 ExtentForRange(block_start, block_end - block_start + 1)); in GetFiles()
/system/keymaster/
Diso18033kdf.cpp78 size_t block_start = digest_size_ * block; in GenerateKey() local
79 size_t block_length = min(digest_size_, output_len - block_start); in GenerateKey()
80 memcpy(output + block_start, digest_result.get(), block_length); in GenerateKey()
/system/extras/ext4_utils/
Dcontents.c372 void *block_start, in xattr_addto_range() argument
400 size_t e_value_offs = val - (char *) block_start; in xattr_addto_range()