Searched defs:ODD_PRIME_NUMBER (Results 1 - 1 of 1) sorted by relevance

/frameworks/base/services/core/java/com/android/server/am/
H A DPendingIntentRecord.java73 private static final int ODD_PRIME_NUMBER = 37; field in class:PendingIntentRecord.Key
91 hash = (ODD_PRIME_NUMBER*hash) + _f;
92 hash = (ODD_PRIME_NUMBER*hash) + _r;
93 hash = (ODD_PRIME_NUMBER*hash) + _userId;
95 hash = (ODD_PRIME_NUMBER*hash) + _w.hashCode();
98 hash = (ODD_PRIME_NUMBER*hash) + _a.hashCode();
101 hash = (ODD_PRIME_NUMBER*hash) + requestIntent.filterHashCode();
104 hash = (ODD_PRIME_NUMBER*hash) + requestResolvedType.hashCode();
106 hash = (ODD_PRIME_NUMBER*hash) + (_p != null ? _p.hashCode() : 0);
107 hash = (ODD_PRIME_NUMBER*has
[all...]

Completed in 47 milliseconds