HomeSort by relevance Sort by last modified time
    Searched refs:first_hash (Results 1 - 5 of 5) 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/components/visitedlink/browser/
visitedlink_master.cc 391 Hash first_hash = cur_hash; local
409 if (cur_hash == first_hash) {
911 void VisitedLinkMaster::WriteHashRangeToFile(Hash first_hash, Hash last_hash) {
916 if (last_hash < first_hash) {
917 // Handle wraparound at 0. This first write is first_hash->EOF
918 WriteToFile(file_, first_hash * sizeof(Fingerprint) + kFileHeaderSize,
919 &hash_table_[first_hash],
920 (table_length_ - first_hash + 1) * sizeof(Fingerprint));
927 WriteToFile(file_, first_hash * sizeof(Fingerprint) + kFileHeaderSize,
928 &hash_table_[first_hash],
    [all...]
visitedlink_master.h 238 void WriteHashRangeToFile(Hash first_hash, Hash last_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;

Completed in 129 milliseconds