Home | History | Annotate | Download | only in common

Lines Matching refs:hash2

880 uhash_equals(const UHashtable* hash1, const UHashtable* hash2){
884 if(hash1==hash2){
896 if (hash1==NULL || hash2==NULL ||
897 hash1->keyComparator != hash2->keyComparator ||
898 hash1->valueComparator != hash2->valueComparator ||
909 count2 = uhash_count(hash2);
920 * value from hash2. If the hashes are equal then then both hashes should
923 const UHashElement* elem2 = _uhash_find(hash2, key1, hash2->keyHasher(key1));