Home
last modified time | relevance | path

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

/frameworks/base/core/java/com/android/internal/util/
DCallbackRegistry.java145 final int remainderIndex = mRemainderRemoved == null ? -1 : mRemainderRemoved.length - 1; in notifyRecurseLocked() local
149 notifyRemainderLocked(sender, arg, arg2, remainderIndex); in notifyRecurseLocked()
153 final int startCallbackIndex = (remainderIndex + 2) * Long.SIZE; in notifyRecurseLocked()
171 private void notifyRemainderLocked(T sender, int arg, A arg2, int remainderIndex) { in notifyRemainderLocked() argument
172 if (remainderIndex < 0) { in notifyRemainderLocked()
175 final long bits = mRemainderRemoved[remainderIndex]; in notifyRemainderLocked()
176 final int startIndex = (remainderIndex + 1) * Long.SIZE; in notifyRemainderLocked()
178 notifyRemainderLocked(sender, arg, arg2, remainderIndex - 1); in notifyRemainderLocked()
292 final int remainderIndex = (index / Long.SIZE) - 1; in setRemovalBitLocked() local
295 } else if (mRemainderRemoved.length < remainderIndex) { in setRemovalBitLocked()
[all …]