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

/external/chromium/sdch/open-vcdiff/src/
H A Drolling_hash.h65 // Here's the heart of the hash algorithm. Start with a partial_hash value of
69 static inline uint32_t HashStep(uint32_t partial_hash, argument
71 return ModBase((partial_hash * kMult) + next_byte);
142 uint32_t partial_hash = RemoveFirstByteFromHash(old_hash, old_first_byte); local
143 return RollingHashUtil::HashStep(partial_hash, new_last_byte);
/external/chromium_org/sdch/open-vcdiff/src/
H A Drolling_hash.h66 // Here's the heart of the hash algorithm. Start with a partial_hash value of
70 static inline uint32_t HashStep(uint32_t partial_hash, argument
72 return ModBase((partial_hash * kMult) + next_byte);
141 uint32_t partial_hash = RemoveFirstByteFromHash(old_hash, old_first_byte); local
142 return RollingHashUtil::HashStep(partial_hash, new_last_byte);
/external/open-vcdiff/src/
H A Drolling_hash.h66 // Here's the heart of the hash algorithm. Start with a partial_hash value of
70 static inline uint32_t HashStep(uint32_t partial_hash, argument
72 return ModBase((partial_hash * kMult) + next_byte);
141 uint32_t partial_hash = RemoveFirstByteFromHash(old_hash, old_first_byte); local
142 return RollingHashUtil::HashStep(partial_hash, new_last_byte);

Completed in 53 milliseconds