Home
last modified time | relevance | path

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

/external/bsdiff/
Dsplit_patch_writer.cc106 uint64_t missing_bytes = 0; in Close() local
108 missing_bytes += size; in Close()
110 missing_bytes += size; in Close()
111 if (missing_bytes > 0) { in Close()
112 LOG(ERROR) << "Close() called but there are " << missing_bytes in Close()
/external/perfetto/src/trace_processor/
Dfuchsia_trace_tokenizer.cc125 size_t missing_bytes = record_len_bytes - leftover_bytes_.size(); in Parse() local
127 if (missing_bytes <= size) { in Parse()
132 memcpy(&buf[leftover_bytes_.size()], &data[byte_offset], missing_bytes); in Parse()
133 byte_offset += missing_bytes; in Parse()
134 size -= missing_bytes; in Parse()