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

/frameworks/base/services/java/com/android/server/am/
H A DPendingIntentRecord.java58 private static final int ODD_PRIME_NUMBER = 37; field in class:PendingIntentRecord.Key
75 hash = (ODD_PRIME_NUMBER*hash) + _f;
76 hash = (ODD_PRIME_NUMBER*hash) + _r;
78 hash = (ODD_PRIME_NUMBER*hash) + _w.hashCode();
81 hash = (ODD_PRIME_NUMBER*hash) + _a.hashCode();
84 hash = (ODD_PRIME_NUMBER*hash) + requestIntent.filterHashCode();
87 hash = (ODD_PRIME_NUMBER*hash) + requestResolvedType.hashCode();
89 hash = (ODD_PRIME_NUMBER*hash) + _p.hashCode();
90 hash = (ODD_PRIME_NUMBER*hash) + _t;

Completed in 152 milliseconds