OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:match_counts_
(Results
1 - 2
of
2
) sorted by null
/external/chromium/sdch/open-vcdiff/src/
encodetable.h
107
const std::vector<int>& match_counts() const { return
match_counts_
; }
113
// It is used to determine the initial size of the vector
match_counts_
.
116
// expanding
match_counts_
to accommodate larger match sizes.
229
// The value of
match_counts_
[n] is equal to the number of matches
231
std::vector<int>
match_counts_
;
member in class:open_vcdiff::VCDiffCodeTableWriter
encodetable.cc
49
match_counts_
(kMaxMatchSize, 0) {
239
if (size >=
match_counts_
.size()) {
240
match_counts_
.resize(size * 2, 0); // Be generous to avoid resizing again
242
++
match_counts_
[size];
Completed in 89 milliseconds