Home
last modified time | relevance | path

Searched refs:ODD_PRIME_NUMBER (Results 1 – 1 of 1) sorted by relevance

/aosp14/frameworks/base/services/core/java/com/android/server/am/
H A DPendingIntentRecord.java112 private static final int ODD_PRIME_NUMBER = 37; field in PendingIntentRecord.Key
131 hash = (ODD_PRIME_NUMBER*hash) + _f; in Key()
132 hash = (ODD_PRIME_NUMBER*hash) + _r; in Key()
133 hash = (ODD_PRIME_NUMBER*hash) + _userId; in Key()
135 hash = (ODD_PRIME_NUMBER*hash) + _w.hashCode(); in Key()
138 hash = (ODD_PRIME_NUMBER*hash) + _a.hashCode(); in Key()
141 hash = (ODD_PRIME_NUMBER*hash) + requestIntent.filterHashCode(); in Key()
144 hash = (ODD_PRIME_NUMBER*hash) + requestResolvedType.hashCode(); in Key()
146 hash = (ODD_PRIME_NUMBER*hash) + (_p != null ? _p.hashCode() : 0); in Key()
147 hash = (ODD_PRIME_NUMBER*hash) + _t; in Key()