Home
last modified time | relevance | path

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

/external/chromium/sdch/open-vcdiff/src/
Dblockhash.cc354 int bytes_found = 0; in MatchingBytesToLeft() local
355 while (bytes_found < max_bytes) { in MatchingBytesToLeft()
361 ++bytes_found; in MatchingBytesToLeft()
363 return bytes_found; in MatchingBytesToLeft()
375 int bytes_found = 0; in MatchingBytesToRight() local
376 while ((bytes_found < max_bytes) && (*source_ptr == *target_ptr)) { in MatchingBytesToRight()
377 ++bytes_found; in MatchingBytesToRight()
381 return bytes_found; in MatchingBytesToRight()
/external/chromium/net/disk_cache/
Dsparse_control.cc660 int bytes_found = bits_found << 10; in DoGetAvailableRange() local
661 bytes_found += PartialBlockLength(found + bits_found); in DoGetAvailableRange()
664 bytes_found -= block_offset; in DoGetAvailableRange()
669 result_ = std::min(bytes_found, child_len_ - empty_start); in DoGetAvailableRange()