OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:VCDiffEngine
(Results
1 - 2
of
2
) sorted by null
/external/chromium/sdch/open-vcdiff/src/
vcdiffengine.h
29
// The
VCDiffEngine
class is used to find the optimal encoding (in terms of COPY
33
class
VCDiffEngine
{
41
VCDiffEngine
(const char* dictionary, size_t dictionary_size);
43
~
VCDiffEngine
();
46
// This method must be called after constructing a
VCDiffEngine
object,
62
// can call Encode() at once for the same
VCDiffEngine
object.
121
VCDiffEngine
(const
VCDiffEngine
&);
122
void operator=(const
VCDiffEngine
&);
vcdiffengine.cc
17
#include "
vcdiffengine
.h"
27
VCDiffEngine
::
VCDiffEngine
(const char* dictionary, size_t dictionary_size)
38
VCDiffEngine
::~
VCDiffEngine
() {
45
bool
VCDiffEngine
::Init() {
47
LOG(DFATAL) << "Init() called twice for same
VCDiffEngine
object"
80
inline size_t
VCDiffEngine
::EncodeCopyForBestMatch(
127
inline void
VCDiffEngine
::AddUnmatchedRemainder(
138
inline void
VCDiffEngine
::FinishEncoding
[
all
...]
Completed in 22 milliseconds