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

  /external/chromium_org/components/visitedlink/common/
visitedlink_common.cc 46 Hash first_hash = HashFingerprint(fingerprint); local
47 Hash cur_hash = first_hash;
60 if (cur_hash == first_hash) {
  /external/chromium_org/third_party/protobuf/src/google/protobuf/stubs/
hash.h 205 size_t first_hash = hash<First>()(key.first); local
210 return first_hash * ((1 << 16) - 1) + second_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_org/components/visitedlink/browser/
visitedlink_master.cc 391 Hash first_hash = cur_hash; local
409 if (cur_hash == first_hash) {
907 void VisitedLinkMaster::WriteHashRangeToFile(Hash first_hash, Hash last_hash) {
912 if (last_hash < first_hash) {
913 // Handle wraparound at 0. This first write is first_hash->EOF
914 WriteToFile(file_, first_hash * sizeof(Fingerprint) + kFileHeaderSize,
915 &hash_table_[first_hash],
916 (table_length_ - first_hash + 1) * sizeof(Fingerprint));
923 WriteToFile(file_, first_hash * sizeof(Fingerprint) + kFileHeaderSize,
924 &hash_table_[first_hash],
    [all...]

Completed in 235 milliseconds