OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:EncodeInt64
(Results
1 - 3
of
3
) sorted by null
/external/bsdiff/
patch_writer.cc
17
void
EncodeInt64
(int64_t x, uint8_t* buf) {
76
EncodeInt64
(entry.diff_size, buf);
77
EncodeInt64
(entry.extra_size, buf + 8);
78
EncodeInt64
(entry.offset_increment, buf + 16);
157
EncodeInt64
(ctrl_size, header + 8);
158
EncodeInt64
(diff_size, header + 16);
159
EncodeInt64
(written_output_, header + 24);
endsley_patch_writer.cc
19
void
EncodeInt64
(int64_t x, uint8_t* buf) {
63
EncodeInt64
(new_size, header + 16);
152
EncodeInt64
(entry.diff_size, buf);
153
EncodeInt64
(entry.extra_size, buf + 8);
154
EncodeInt64
(entry.offset_increment, buf + 16);
patch_reader_unittest.cc
21
void
EncodeInt64
(int64_t x, uint8_t* buf) {
38
EncodeInt64
(diff_data_[i].size(), buf);
39
EncodeInt64
(extra_data_[i].size(), buf + 8);
40
EncodeInt64
(offset_increment_[i], buf + 16);
58
EncodeInt64
(ctrl_stream_->GetCompressedData().size(), buf);
59
EncodeInt64
(diff_stream_->GetCompressedData().size(), buf + 8);
60
EncodeInt64
(new_file_size_, buf + 16);
Completed in 157 milliseconds