HomeSort by relevance Sort by last modified time
    Searched defs:VCDiffEngine (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/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 VCD_DFATAL << "Init() called twice for same VCDiffEngine object"
77 inline size_t VCDiffEngine::EncodeCopyForBestMatch(
124 inline void VCDiffEngine::AddUnmatchedRemainder(
135 inline void VCDiffEngine::FinishEncoding
    [all...]

Completed in 89 milliseconds