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

  /external/bsdiff/
bspatch.cc 70 size_t bytes_to_output = std::min(size, buf_size); local
71 if (!read_func(buf, bytes_to_output)) {
76 if (!WriteAll(file, buf, bytes_to_output)) {
80 size -= bytes_to_output;
  /external/v8/src/snapshot/
serializer.cc 418 int bytes_to_output = allocation_size - HeapObject::kHeaderSize; local
422 sink_->PutInt(bytes_to_output, "length");
440 sink_->PutInt(bytes_to_output, "SkipDistance");
767 int bytes_to_output = to_skip; local
776 bytes_to_output = object_->Size() + to_skip - bytes_processed_so_far_;
780 if (bytes_to_output != 0 && (!is_code_object || outputting_code)) {
781 if (!outputting_code && bytes_to_output == to_skip &&
782 IsAligned(bytes_to_output, kPointerAlignment) &&
783 bytes_to_output <= kNumberOfFixedRawData * kPointerSize) {
784 int size_in_words = bytes_to_output >> kPointerSizeLog2
    [all...]

Completed in 71 milliseconds