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

/external/chromium/sdch/open-vcdiff/src/
H A Drolling_hash.h42 static inline uint32_t ModBase(uint32_t operand) { function in class:open_vcdiff::RollingHashUtil
50 // ModBase(operand + result) == 0
60 // this case, since all numbers used are unsigned, and ModBase does its work
62 return ModBase(uint32_t(0) - operand);
71 return ModBase((partial_hash * kMult) + next_byte);
79 // avoiding an unnecessary ModBase operation.
154 return RollingHashUtil::ModBase(full_hash + remove_table_[first_byte]);
202 RollingHashUtil::ModBase(multiplier * RollingHashUtil::kMult);
228 RollingHashUtil::ModBase(byte_times_multiplier + multiplier);

Completed in 95 milliseconds