HomeSort by relevance Sort by last modified time
    Searched refs:candidate_pos (Results 1 - 2 of 2) sorted by null

  /external/chromium/sdch/open-vcdiff/src/
vcdiffengine.cc 188 // candidate_pos points to the start of the kBlockSize-byte block that may
190 const char* candidate_pos = target_data; local
191 uint32_t hash_value = hasher.Hash(candidate_pos);
196 candidate_pos,
203 candidate_pos = next_encode;
204 if (candidate_pos > start_of_last_block) {
207 // candidate_pos has jumped ahead by bytes_encoded bytes, so UpdateHash
209 hash_value = hasher.Hash(candidate_pos);
218 if ((candidate_pos + 1) > start_of_last_block) {
223 static_cast<int>(candidate_pos - target_data)
    [all...]
  /external/open-vcdiff/src/
vcdiffengine.cc 185 // candidate_pos points to the start of the kBlockSize-byte block that may
187 const char* candidate_pos = target_data; local
188 uint32_t hash_value = hasher.Hash(candidate_pos);
193 candidate_pos,
200 candidate_pos = next_encode;
201 if (candidate_pos > start_of_last_block) {
204 // candidate_pos has jumped ahead by bytes_encoded bytes, so UpdateHash
206 hash_value = hasher.Hash(candidate_pos);
215 if ((candidate_pos + 1) > start_of_last_block) {
220 static_cast<int>(candidate_pos - target_data)
    [all...]

Completed in 411 milliseconds