Lines Matching defs:hashes
41 pair<uint64_t, int>* hashes = new pair<uint64_t, int>[N];
47 hashes[i] = make_pair(BuildLog::LogEntry::HashCommand(commands[i]), i);
50 sort(hashes, hashes + N);
54 if (hashes[i - 1].first == hashes[i].first) {
55 if (strcmp(commands[hashes[i - 1].second],
56 commands[hashes[i].second]) != 0) {
58 commands[hashes[i - 1].second],
59 commands[hashes[i].second]);