OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:partial_hash
(Results
1 - 3
of
3
) sorted by null
/external/chromium/sdch/open-vcdiff/src/
rolling_hash.h
65
// 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
,
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/
rolling_hash.h
66
// 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
,
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/
rolling_hash.h
66
// 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
,
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 387 milliseconds