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/importers/fuchsia/
Dfuchsia_trace_tokenizer.cc126 size_t missing_bytes = record_len_bytes - leftover_bytes_.size(); in Parse() local
128 if (missing_bytes <= size) { in Parse()
133 memcpy(&buf[leftover_bytes_.size()], &data[byte_offset], missing_bytes); in Parse()
134 byte_offset += missing_bytes; in Parse()
135 size -= missing_bytes; in Parse()