HomeSort by relevance Sort by last modified time
    Searched refs:RollingHash (Results 1 - 5 of 5) sorted by null

  /external/chromium/sdch/open-vcdiff/src/
rolling_hash.h 94 class RollingHash {
97 // RollingHash. This function *must* be called (preferably on startup) by any
98 // program that uses a RollingHash. It is harmless to call this function more
102 // RollingHash. The function returns true if initialization succeeds, or
104 // to construct any objects of type RollingHash.
110 RollingHash() {
112 LOG(DFATAL) << "RollingHash object instantiated"
113 " before calling RollingHash::Init()" << LOG_ENDL;
170 const uint32_t* RollingHash<window_size>::remove_table_ = NULL;
174 // it's ready, the table can be used for any number of RollingHash objects o
    [all...]
rolling_hash_test.cc 89 EXPECT_DEBUG_DEATH(RollingHash<16> bad_hash, "Init");
106 RollingHash<kBlockSize> hasher;
117 RollingHash<kBlockSize> hasher;
138 RollingHash<kBlockSize>::Init();
139 RollingHash<kBlockSize> hasher;
190 RollingHash<kBlockSize>::Init();
vcdiffengine.cc 57 if (!RollingHash<BlockHash::kBlockSize>::Init()) {
58 LOG(DFATAL) << "RollingHash initialization failed" << LOG_ENDL;
170 RollingHash<BlockHash::kBlockSize> hasher;
blockhash_test.cc 147 hashed_y = RollingHash<kBlockSize>::Hash(test_string_y);
148 hashed_e = RollingHash<kBlockSize>::Hash(test_string_e);
150 RollingHash<kBlockSize>::Hash(&search_string[index_of_f_in_fearsome]);
151 hashed_unaligned_e = RollingHash<kBlockSize>::Hash(test_string_unaligned_e);
152 hashed_all_Qs = RollingHash<kBlockSize>::Hash(test_string_all_Qs);
549 th_->AddOneIndexHash(i, RollingHash<kBlockSize>::Hash(&sample_text[i]));
    [all...]
blockhash.cc 229 AddBlock(RollingHash<kBlockSize>::Hash(block_ptr));

Completed in 2149 milliseconds