HomeSort by relevance Sort by last modified time
    Searched defs:first_hash (Results 1 - 3 of 3) sorted by null

  /external/chromium/chrome/common/
visitedlink_common.cc 44 Hash first_hash = HashFingerprint(fingerprint); local
45 Hash cur_hash = first_hash;
58 if (cur_hash == first_hash) {
  /external/protobuf/src/google/protobuf/stubs/
hash.h 193 size_t first_hash = hash<First>()(key.first); local
198 return first_hash * ((1 << 16) - 1) + second_hash;
  /external/chromium/chrome/browser/visitedlink/
visitedlink_master.cc 392 Hash first_hash = cur_hash; local
410 if (cur_hash == first_hash) {
923 void VisitedLinkMaster::WriteHashRangeToFile(Hash first_hash, Hash last_hash) {
926 if (last_hash < first_hash) {
927 // Handle wraparound at 0. This first write is first_hash->EOF
928 WriteToFile(file_, first_hash * sizeof(Fingerprint) + kFileHeaderSize,
929 &hash_table_[first_hash],
930 (table_length_ - first_hash + 1) * sizeof(Fingerprint));
937 WriteToFile(file_, first_hash * sizeof(Fingerprint) + kFileHeaderSize,
938 &hash_table_[first_hash],
    [all...]

Completed in 156 milliseconds