Home
last modified time | relevance | path

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

/system/update_engine/payload_generator/
Dmapfile_filesystem.cc101 uint64_t block_start, block_end; in GetFiles() local
102 if (dash == string::npos && base::StringToUint64(blocks, &block_start)) { in GetFiles()
103 mapped_file.extents.push_back(ExtentForRange(block_start, 1)); in GetFiles()
105 base::StringToUint64(blocks.substr(0, dash), &block_start) && in GetFiles()
107 if (block_end < block_start) { in GetFiles()
109 << " is smaller than start block " << block_start in GetFiles()
122 ExtentForRange(block_start, block_end - block_start + 1)); in GetFiles()
/system/keymaster/km_openssl/
Diso18033kdf.cpp71 size_t block_start = digest_size_ * block; in GenerateKey() local
72 size_t block_length = min(digest_size_, output_len - block_start); in GenerateKey()
73 memcpy(output + block_start, digest_result.get(), block_length); in GenerateKey()