Searched defs:same_cache_size (Results 1 - 8 of 8) sorted by relevance

/external/chromium/sdch/open-vcdiff/src/
H A Daddrcache.cc42 // same_cache_size: Size of the SAME cache (number of blocks of
45 // near_cache_size + same_cache_size should not exceed 254.
48 int same_cache_size)
50 same_cache_size_(same_cache_size),
171 if (same_cache_size() > 0) {
173 address % (same_cache_size() * 256);
47 VCDiffAddressCache(int near_cache_size, int same_cache_size) argument
H A Daddrcache.h44 VCDiffAddressCache(int near_cache_size, int same_cache_size);
61 int same_cache_size() const { return same_cache_size_; } function in class:open_vcdiff::VCDiffAddressCache
73 // The number of SAME modes is same_cache_size. Each SAME mode refers to
86 return FirstSameMode() + same_cache_size() - 1;
H A Dencodetable.cc56 int same_cache_size,
60 address_cache_(near_cache_size, same_cache_size),
53 VCDiffCodeTableWriter( bool interleaved, int near_cache_size, int same_cache_size, const VCDiffCodeTableData& code_table_data, unsigned char max_mode) argument
H A Dvcdecoder.cc750 int32_t near_cache_size = 0, same_cache_size = 0; local
755 if (!header_parser.ParseInt32("size of same cache", &same_cache_size)) {
761 addr_cache_.reset(new VCDiffAddressCache(near_cache_size, same_cache_size));
/external/open-vcdiff/src/
H A Daddrcache.cc42 // same_cache_size: Size of the SAME cache (number of blocks of
45 // near_cache_size + same_cache_size should not exceed 254.
48 int same_cache_size)
50 same_cache_size_(same_cache_size),
171 if (same_cache_size() > 0) {
173 address % (same_cache_size() * 256);
47 VCDiffAddressCache(int near_cache_size, int same_cache_size) argument
H A Daddrcache.h44 VCDiffAddressCache(int near_cache_size, int same_cache_size);
61 int same_cache_size() const { return same_cache_size_; } function in class:open_vcdiff::VCDiffAddressCache
73 // The number of SAME modes is same_cache_size. Each SAME mode refers to
86 return FirstSameMode() + same_cache_size() - 1;
H A Dencodetable.cc72 int same_cache_size,
76 address_cache_(near_cache_size, same_cache_size),
69 VCDiffCodeTableWriter( bool interleaved, int near_cache_size, int same_cache_size, const VCDiffCodeTableData& code_table_data, unsigned char max_mode) argument
H A Dvcdecoder.cc751 int32_t near_cache_size = 0, same_cache_size = 0; local
756 if (!header_parser.ParseInt32("size of same cache", &same_cache_size)) {
762 addr_cache_.reset(new VCDiffAddressCache(near_cache_size, same_cache_size));

Completed in 105 milliseconds