/external/chromium_org/sdch/open-vcdiff/src/ |
D | addrcache.cc | 47 VCDiffAddressCache::VCDiffAddressCache(int near_cache_size, in VCDiffAddressCache() function in open_vcdiff::VCDiffAddressCache 53 VCDiffAddressCache::VCDiffAddressCache() in VCDiffAddressCache() function in open_vcdiff::VCDiffAddressCache 72 bool VCDiffAddressCache::Init() { in Init() 118 void VCDiffAddressCache::UpdateCache(VCDAddress address) { in UpdateCache() 154 unsigned char VCDiffAddressCache::EncodeAddress(VCDAddress address, in EncodeAddress() 277 VCDAddress VCDiffAddressCache::DecodeAddress(VCDAddress here_address, in DecodeAddress()
|
D | addrcache.h | 38 class VCDiffAddressCache { 44 VCDiffAddressCache(int near_cache_size, int same_cache_size); 48 VCDiffAddressCache(); 211 VCDiffAddressCache(const VCDiffAddressCache&); // NOLINT 212 void operator=(const VCDiffAddressCache&);
|
D | addrcache_test.cc | 118 VCDiffAddressCache cache_; 139 VCDiffAddressCache zero_cache(0, 0); in TEST_F() 144 VCDiffAddressCache negative_cache(-1, -1); // The constructor must not fail in TEST_F() 149 VCDiffAddressCache negative_cache(0, -1); // The constructor must not fail in TEST_F() 155 VCDiffAddressCache int_max_cache(INT_MAX, INT_MAX); in TEST_F() 161 VCDiffAddressCache int_min_cache(INT_MIN, INT_MIN); in TEST_F() 169 VCDiffAddressCache negative_cache(VCD_MAX_MODES - 1, 0); in TEST_F() 174 VCDiffAddressCache negative_cache(0, VCD_MAX_MODES - 1); in TEST_F() 179 VCDiffAddressCache negative_cache((VCD_MAX_MODES / 2), in TEST_F() 185 VCDiffAddressCache negative_cache(VCD_MAX_MODES - 2, 0); in TEST_F() [all …]
|
D | codetable_test.cc | 163 code_table_data_.mode1[131] = VCDiffAddressCache::DefaultLastMode() + 1; in TEST_F() 213 code_table_data_.mode2[20] = VCDiffAddressCache::DefaultLastMode() + 1; in TEST_F()
|
D | encodetable.h | 183 VCDiffAddressCache address_cache_;
|
D | vcdecoder.cc | 463 VCDiffAddressCache* addr_cache() { return addr_cache_.get(); } in addr_cache() 552 std::auto_ptr<VCDiffAddressCache> addr_cache_; 739 addr_cache_.reset(new VCDiffAddressCache); in ReadDeltaFileHeader() 762 addr_cache_.reset(new VCDiffAddressCache(near_cache_size, same_cache_size)); in InitCustomCodeTable()
|
D | encodetable_test.cc | 41 VCDiffAddressCache::kDefaultNearCacheSize, in CodeTableWriterTest() 42 VCDiffAddressCache::kDefaultSameCacheSize, in CodeTableWriterTest()
|
D | instruction_map.cc | 32 VCDiffAddressCache::DefaultLastMode()); in GetDefaultInstructionMap()
|
/external/open-vcdiff/src/ |
D | addrcache.cc | 47 VCDiffAddressCache::VCDiffAddressCache(int near_cache_size, in VCDiffAddressCache() function in open_vcdiff::VCDiffAddressCache 53 VCDiffAddressCache::VCDiffAddressCache() in VCDiffAddressCache() function in open_vcdiff::VCDiffAddressCache 72 bool VCDiffAddressCache::Init() { in Init() 118 void VCDiffAddressCache::UpdateCache(VCDAddress address) { in UpdateCache() 154 unsigned char VCDiffAddressCache::EncodeAddress(VCDAddress address, in EncodeAddress() 277 VCDAddress VCDiffAddressCache::DecodeAddress(VCDAddress here_address, in DecodeAddress()
|
D | addrcache.h | 38 class VCDiffAddressCache { 44 VCDiffAddressCache(int near_cache_size, int same_cache_size); 48 VCDiffAddressCache(); 211 VCDiffAddressCache(const VCDiffAddressCache&); // NOLINT 212 void operator=(const VCDiffAddressCache&);
|
D | addrcache_test.cc | 118 VCDiffAddressCache cache_; 139 VCDiffAddressCache zero_cache(0, 0); in TEST_F() 144 VCDiffAddressCache negative_cache(-1, -1); // The constructor must not fail in TEST_F() 149 VCDiffAddressCache negative_cache(0, -1); // The constructor must not fail in TEST_F() 155 VCDiffAddressCache int_max_cache(INT_MAX, INT_MAX); in TEST_F() 161 VCDiffAddressCache int_min_cache(INT_MIN, INT_MIN); in TEST_F() 169 VCDiffAddressCache negative_cache(VCD_MAX_MODES - 1, 0); in TEST_F() 174 VCDiffAddressCache negative_cache(0, VCD_MAX_MODES - 1); in TEST_F() 179 VCDiffAddressCache negative_cache((VCD_MAX_MODES / 2), in TEST_F() 185 VCDiffAddressCache negative_cache(VCD_MAX_MODES - 2, 0); in TEST_F() [all …]
|
D | codetable_test.cc | 163 code_table_data_.mode1[131] = VCDiffAddressCache::DefaultLastMode() + 1; in TEST_F() 213 code_table_data_.mode2[20] = VCDiffAddressCache::DefaultLastMode() + 1; in TEST_F()
|
D | encodetable.h | 183 VCDiffAddressCache address_cache_;
|
D | vcdecoder.cc | 463 VCDiffAddressCache* addr_cache() { return addr_cache_.get(); } in addr_cache() 552 std::auto_ptr<VCDiffAddressCache> addr_cache_; 739 addr_cache_.reset(new VCDiffAddressCache); in ReadDeltaFileHeader() 762 addr_cache_.reset(new VCDiffAddressCache(near_cache_size, same_cache_size)); in InitCustomCodeTable()
|
D | encodetable_test.cc | 41 VCDiffAddressCache::kDefaultNearCacheSize, in CodeTableWriterTest() 42 VCDiffAddressCache::kDefaultSameCacheSize, in CodeTableWriterTest()
|
D | instruction_map.cc | 32 VCDiffAddressCache::DefaultLastMode()); in GetDefaultInstructionMap()
|
D | encodetable.cc | 58 : max_mode_(VCDiffAddressCache::DefaultLastMode()), in VCDiffCodeTableWriter()
|
/external/chromium/sdch/open-vcdiff/src/ |
D | addrcache.h | 38 class VCDiffAddressCache { 44 VCDiffAddressCache(int near_cache_size, int same_cache_size); 48 VCDiffAddressCache(); 211 VCDiffAddressCache(const VCDiffAddressCache&); // NOLINT 212 void operator=(const VCDiffAddressCache&);
|
D | addrcache.cc | 47 VCDiffAddressCache::VCDiffAddressCache(int near_cache_size, in VCDiffAddressCache() function in open_vcdiff::VCDiffAddressCache 53 VCDiffAddressCache::VCDiffAddressCache() in VCDiffAddressCache() function in open_vcdiff::VCDiffAddressCache 72 bool VCDiffAddressCache::Init() { in Init() 118 void VCDiffAddressCache::UpdateCache(VCDAddress address) { in UpdateCache() 154 unsigned char VCDiffAddressCache::EncodeAddress(VCDAddress address, in EncodeAddress() 277 VCDAddress VCDiffAddressCache::DecodeAddress(VCDAddress here_address, in DecodeAddress()
|
D | addrcache_test.cc | 118 VCDiffAddressCache cache_; 139 VCDiffAddressCache zero_cache(0, 0); in TEST_F() 144 VCDiffAddressCache negative_cache(-1, -1); // The constructor must not fail in TEST_F() 149 VCDiffAddressCache negative_cache(0, -1); // The constructor must not fail in TEST_F() 155 VCDiffAddressCache int_max_cache(INT_MAX, INT_MAX); in TEST_F() 161 VCDiffAddressCache int_min_cache(INT_MIN, INT_MIN); in TEST_F() 169 VCDiffAddressCache negative_cache(VCD_MAX_MODES - 1, 0); in TEST_F() 174 VCDiffAddressCache negative_cache(0, VCD_MAX_MODES - 1); in TEST_F() 179 VCDiffAddressCache negative_cache((VCD_MAX_MODES / 2), in TEST_F() 185 VCDiffAddressCache negative_cache(VCD_MAX_MODES - 2, 0); in TEST_F() [all …]
|
D | codetable_test.cc | 163 code_table_data_.mode1[131] = VCDiffAddressCache::DefaultLastMode() + 1; in TEST_F() 213 code_table_data_.mode2[20] = VCDiffAddressCache::DefaultLastMode() + 1; in TEST_F()
|
D | encodetable.h | 182 VCDiffAddressCache address_cache_;
|
D | vcdecoder.cc | 470 VCDiffAddressCache* addr_cache() { return addr_cache_.get(); } in addr_cache() 550 std::auto_ptr<VCDiffAddressCache> addr_cache_; 738 addr_cache_.reset(new VCDiffAddressCache); in ReadDeltaFileHeader() 761 addr_cache_.reset(new VCDiffAddressCache(near_cache_size, same_cache_size)); in InitCustomCodeTable()
|
D | encodetable_test.cc | 42 VCDiffAddressCache::kDefaultNearCacheSize, in CodeTableWriterTest() 43 VCDiffAddressCache::kDefaultSameCacheSize, in CodeTableWriterTest()
|
D | instruction_map.cc | 32 VCDiffAddressCache::DefaultLastMode()); in GetDefaultInstructionMap()
|