Home
last modified time | relevance | path

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

/external/chromium/net/disk_cache/
Dentry_impl.cc233 int clean_bytes = 0; in Read() local
236 clean_bytes = std::min(offset_ - offset, len); in Read()
237 memset(buf->data(), 0, clean_bytes); in Read()
238 if (len == clean_bytes) in Read()
241 len -= clean_bytes; in Read()
249 memcpy(buf->data() + clean_bytes, &buffer_[start], len); in Read()
250 return len + clean_bytes; in Read()