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

  /external/chromium/sdch/open-vcdiff/src/gtest/
gtest-port.cc 145 size_t bytes_last_read = 0; // # of bytes read in the last fread() local
153 bytes_last_read = fread(buffer+bytes_read, 1, file_size-bytes_read, file);
154 bytes_read += bytes_last_read;
155 } while (bytes_last_read > 0 && bytes_read < file_size);
  /external/gtest/src/
gtest-port.cc 485 size_t bytes_last_read = 0; // # of bytes read in the last fread() local
493 bytes_last_read = fread(buffer+bytes_read, 1, file_size-bytes_read, file);
494 bytes_read += bytes_last_read;
495 } while (bytes_last_read > 0 && bytes_read < file_size);
  /external/protobuf/gtest/src/
gtest-port.cc 520 size_t bytes_last_read = 0; // # of bytes read in the last fread()
528 bytes_last_read = fread(buffer+bytes_read, 1, file_size-bytes_read, file);
529 bytes_read += bytes_last_read;
530 } while (bytes_last_read > 0 && bytes_read < file_size);

Completed in 119 milliseconds