OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:match_counts
(Results
1 - 5
of
5
) sorted by null
/external/chromium/sdch/open-vcdiff/src/
encodetable_test.cc
122
const std::vector<int>&
match_counts
= writer.
match_counts
();
local
123
EXPECT_TRUE(find_if(
match_counts
.begin(),
match_counts
.end(), AnyMatch)
124
==
match_counts
.end());
318
EXPECT_LE(9U, standard_writer.
match_counts
().size());
319
EXPECT_EQ(0, standard_writer.
match_counts
()[0]);
320
EXPECT_EQ(0, standard_writer.
match_counts
()[1]);
321
EXPECT_EQ(0, standard_writer.
match_counts
()[2]);
322
EXPECT_EQ(0, standard_writer.
match_counts
()[3])
[
all
...]
vcencoder.cc
65
const std::vector<int>&
match_counts
() const {
function in class:open_vcdiff::VCDiffStreamingEncoderImpl
66
return coder_.
match_counts
();
199
std::vector<int>*
match_counts
) const {
200
if (!
match_counts
) {
204
*
match_counts
= impl_->
match_counts
();
encodetable.h
107
const std::vector<int>&
match_counts
() const { return match_counts_; }
function in class:open_vcdiff::VCDiffCodeTableWriter
vcdiffengine_test.cc
345
actual_match_counts_ = coder.
match_counts
();
358
actual_match_counts_ = coder.
match_counts
();
647
actual_match_counts_ = coder.
match_counts
();
[
all
...]
/external/chromium/sdch/open-vcdiff/src/google/
vcencoder.h
227
// Replaces the contents of
match_counts
with a vector of integers,
228
// one for each possible match length. The value of
match_counts
[n]
231
void GetMatchCounts(std::vector<int>*
match_counts
) const;
Completed in 42 milliseconds