Searched refs:hashCode (Results 1 - 25 of 959) sorted by relevance

1234567891011>>

/external/guava/guava/src/com/google/common/collect/
H A DHashing.java39 static int smear(int hashCode) { argument
40 hashCode ^= (hashCode >>> 20) ^ (hashCode >>> 12);
41 return hashCode ^ (hashCode >>> 7) ^ (hashCode >>> 4);
H A DRegularImmutableSet.java35 private final transient int hashCode; field in class:RegularImmutableSet
38 Object[] elements, int hashCode, Object[] table, int mask) {
42 this.hashCode = hashCode;
49 for (int i = Hashing.smear(target.hashCode()); true; i++) {
60 @Override public int hashCode() { method in class:RegularImmutableSet
61 return hashCode;
37 RegularImmutableSet( Object[] elements, int hashCode, Object[] table, int mask) argument
/external/conscrypt/src/main/java/org/conscrypt/
H A DByteArray.java22 * Byte array wrapper for hashtable use. Implements equals() and hashCode().
26 private final int hashCode; field in class:ByteArray
30 this.hashCode = Arrays.hashCode(bytes);
34 public int hashCode() { method in class:ByteArray
35 return hashCode;
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/base/reference/
H A DBaseFieldReference.java41 public int hashCode() { method in class:BaseFieldReference
42 int hashCode = getDefiningClass().hashCode();
43 hashCode = hashCode*31 + getName().hashCode();
44 return hashCode*31 + getType().hashCode();
H A DBaseMethodReference.java44 public int hashCode() { method in class:BaseMethodReference
45 int hashCode = getDefiningClass().hashCode();
46 hashCode = hashCode*31 + getName().hashCode();
47 hashCode = hashCode*31 + getReturnType().hashCode();
48 return hashCode*3
[all...]
/external/proguard/src/proguard/evaluation/value/
H A DConvertedByteValue.java53 public int hashCode() method in class:ConvertedByteValue
55 return super.hashCode() ^
56 value.hashCode();
H A DConvertedCharacterValue.java53 public int hashCode() method in class:ConvertedCharacterValue
55 return super.hashCode() ^
56 value.hashCode();
H A DConvertedDoubleValue.java53 public int hashCode() method in class:ConvertedDoubleValue
55 return super.hashCode() ^
56 value.hashCode();
H A DConvertedFloatValue.java53 public int hashCode() method in class:ConvertedFloatValue
55 return super.hashCode() ^
56 value.hashCode();
H A DConvertedIntegerValue.java53 public int hashCode() method in class:ConvertedIntegerValue
55 return super.hashCode() ^
56 value.hashCode();
H A DConvertedLongValue.java53 public int hashCode() method in class:ConvertedLongValue
55 return super.hashCode() ^
56 value.hashCode();
H A DConvertedShortValue.java53 public int hashCode() method in class:ConvertedShortValue
55 return super.hashCode() ^
56 value.hashCode();
H A DIdentifiedDoubleValue.java55 public int hashCode() method in class:IdentifiedDoubleValue
57 return super.hashCode() ^
58 valuefactory.hashCode() ^
H A DIdentifiedFloatValue.java55 public int hashCode() method in class:IdentifiedFloatValue
57 return super.hashCode() ^
58 valuefactory.hashCode() ^
H A DIdentifiedIntegerValue.java55 public int hashCode() method in class:IdentifiedIntegerValue
57 return super.hashCode() ^
58 valuefactory.hashCode() ^
H A DIdentifiedLongValue.java55 public int hashCode() method in class:IdentifiedLongValue
57 return super.hashCode() ^
58 valuefactory.hashCode() ^
H A DNegatedDoubleValue.java60 public int hashCode() method in class:NegatedDoubleValue
62 return super.hashCode() ^
63 doubleValue.hashCode();
H A DNegatedFloatValue.java60 public int hashCode() method in class:NegatedFloatValue
62 return super.hashCode() ^
63 floatValue.hashCode();
H A DNegatedIntegerValue.java60 public int hashCode() method in class:NegatedIntegerValue
62 return super.hashCode() ^
63 integerValue.hashCode();
H A DNegatedLongValue.java60 public int hashCode() method in class:NegatedLongValue
62 return super.hashCode() ^
63 longValue.hashCode();
/external/glide/library/src/main/java/com/bumptech/glide/load/engine/
H A DEngineKey.java27 private int hashCode; field in class:EngineKey
86 public int hashCode() { method in class:EngineKey
87 if (hashCode == 0) {
88 hashCode = id.hashCode();
89 hashCode = 31 * hashCode + width;
90 hashCode = 31 * hashCode + height;
91 hashCode
[all...]
/external/apache-http/src/org/apache/http/util/
H A DLangUtils.java36 * {@link Object#equals equals} and {@link Object#hashCode hashCode} methods.
56 public static int hashCode(final int seed, final int hashcode) { method in class:LangUtils
60 public static int hashCode(final int seed, final boolean b) { method in class:LangUtils
61 return hashCode(seed, b ? 1 : 0);
64 public static int hashCode(final int seed, final Object obj) { method in class:LangUtils
65 return hashCode(seed, obj != null ? obj.hashCode() : 0);
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/params/
H A DDHPrivateKeyParameters.java24 public int hashCode() method in class:DHPrivateKeyParameters
26 return x.hashCode() ^ super.hashCode();
H A DDHPublicKeyParameters.java24 public int hashCode() method in class:DHPublicKeyParameters
26 return y.hashCode() ^ super.hashCode();
/external/guava/guava-tests/test/com/google/common/base/
H A DObjectsTest.java48 int h1 = Objects.hashCode(1, "two", 3.0);
49 int h2 = Objects.hashCode(new Integer(1), new String("two"),
55 assertTrue(Objects.hashCode(1, 2, null) != Objects.hashCode(1, 2));
56 assertTrue(Objects.hashCode(1, 2, null) != Objects.hashCode(1, null, 2));
57 assertTrue(Objects.hashCode(1, null, 2) != Objects.hashCode(1, 2));
58 assertTrue(Objects.hashCode(1, 2, 3) != Objects.hashCode(
[all...]

Completed in 2379 milliseconds

1234567891011>>