Searched refs:hash1 (Results 1 – 2 of 2) sorted by relevance
254 private boolean compareTwoRpms(HashMap hash1, HashMap hash2) { in compareTwoRpms() argument257 if (( hash1.get("major") != null ) && ( hash2.get("major") != null )) { in compareTwoRpms()258 … if ( ((Integer)hash1.get("major")).intValue() < ((Integer)hash2.get("major")).intValue() ) { in compareTwoRpms()261 if (( hash1.get("minor") != null ) && ( hash2.get("minor") != null )) { in compareTwoRpms()262 … if ( ((Integer)hash1.get("minor")).intValue() < ((Integer)hash2.get("minor")).intValue() ) { in compareTwoRpms()265 if (( hash1.get("micro") != null ) && ( hash2.get("micro") != null )) { in compareTwoRpms()266 … if ( ((Integer)hash1.get("micro")).intValue() < ((Integer)hash2.get("micro")).intValue() ) { in compareTwoRpms()269 … if (( hash1.get("release") != null ) && ( hash2.get("release") != null )) { in compareTwoRpms()270 … if ( ((Integer)hash1.get("release")).intValue() < ((Integer)hash2.get("release")).intValue() ) { in compareTwoRpms()
216 int hash1 = oObj.hashBookmark(bookmark1) ; in _hashBookmark() local218 log.println("1st hash = " + hash1 + ", 2nd = " + hash2) ; in _hashBookmark()220 result = hash1 != hash2 ; in _hashBookmark()
Completed in 19 milliseconds