OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:bytes_found
(Results
1 - 2
of
2
) sorted by null
/external/chromium/sdch/open-vcdiff/src/
blockhash.cc
354
int
bytes_found
= 0;
local
355
while (
bytes_found
< max_bytes) {
361
++
bytes_found
;
363
return
bytes_found
;
375
int
bytes_found
= 0;
local
376
while ((
bytes_found
< max_bytes) && (*source_ptr == *target_ptr)) {
377
++
bytes_found
;
381
return
bytes_found
;
/external/chromium/net/disk_cache/
sparse_control.cc
766
int
bytes_found
= bits_found << 10;
local
767
bytes_found
+= PartialBlockLength(found + bits_found);
770
bytes_found
-= block_offset;
775
result_ = std::min(
bytes_found
, child_len_ - empty_start);
Completed in 529 milliseconds