Searched refs:VCD_MAX_MODES (Results 1 - 4 of 4) sorted by relevance

/external/chromium/sdch/open-vcdiff/src/
H A Dvcdiff_defs.h191 VCD_MAX_MODES = UCHAR_MAX + 1 // 256 enumerator in enum:open_vcdiff::VCDiffModes
H A Daddrcache.cc78 if ((near_cache_size_ > (VCD_MAX_MODES - 2)) || (near_cache_size_ < 0)) {
83 if ((same_cache_size_ > (VCD_MAX_MODES - 2)) || (same_cache_size_ < 0)) {
88 if ((near_cache_size_ + same_cache_size_) > VCD_MAX_MODES - 2) {
92 << VCD_MAX_MODES << ")" << LOG_ENDL;
H A Daddrcache_test.cc165 // VCD_MAX_MODES is the maximum number of modes, including SAME and HERE modes.
167 // (VCD_MAX_MODES - 2).
169 VCDiffAddressCache negative_cache(VCD_MAX_MODES - 1, 0);
174 VCDiffAddressCache negative_cache(0, VCD_MAX_MODES - 1);
179 VCDiffAddressCache negative_cache((VCD_MAX_MODES / 2),
180 (VCD_MAX_MODES / 2) - 1);
185 VCDiffAddressCache negative_cache(VCD_MAX_MODES - 2, 0);
190 VCDiffAddressCache negative_cache(0, VCD_MAX_MODES - 2);
195 VCDiffAddressCache negative_cache((VCD_MAX_MODES / 2) - 1,
196 (VCD_MAX_MODES /
[all...]
H A Dcodetable.cc26 #include "vcdiff_defs.h" // VCD_MAX_MODES
235 bool hasOpcodeForTypeAndMode[VCD_LAST_INSTRUCTION_TYPE + VCD_MAX_MODES];

Completed in 210 milliseconds