Home | History | Annotate | Download | only in src

Lines Matching defs:RollingHash

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 of
178 bool RollingHash<window_size>::Init() {
180 LOG(ERROR) << "RollingHash window size " << window_size