Home | History | Annotate | Download | only in visitedlink

Lines Matching defs:first_hash

392   Hash first_hash = cur_hash;
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],
939 (last_hash - first_hash + 1) * sizeof(Fingerprint));