HomeSort by relevance Sort by last modified time
    Searched defs:mHashes (Results 1 - 4 of 4) sorted by null

  /frameworks/base/core/java/android/util/
ArraySet.java 72 int[] mHashes;
85 int index = ContainerHelpers.binarySearch(mHashes, N, hash);
99 for (end = index + 1; end < N && mHashes[end] == hash; end++) {
104 for (int i = index - 1; i >= 0 && mHashes[i] == hash; i--) {
123 int index = ContainerHelpers.binarySearch(mHashes, N, 0);
137 for (end = index + 1; end < N && mHashes[end] == 0; end++) {
142 for (int i = index - 1; i >= 0 && mHashes[i] == 0; i--) {
160 mHashes = (int[])array[1];
163 if (DEBUG) Log.d(TAG, "Retrieving 2x cache " + mHashes
174 mHashes = (int[])array[1]
    [all...]
ArrayMap.java 81 int[] mHashes;
94 int index = ContainerHelpers.binarySearch(mHashes, N, hash);
108 for (end = index + 1; end < N && mHashes[end] == hash; end++) {
113 for (int i = index - 1; i >= 0 && mHashes[i] == hash; i--) {
132 int index = ContainerHelpers.binarySearch(mHashes, N, 0);
146 for (end = index + 1; end < N && mHashes[end] == 0; end++) {
151 for (int i = index - 1; i >= 0 && mHashes[i] == 0; i--) {
163 if (mHashes == EMPTY_IMMUTABLE_INTS) {
172 mHashes = (int[])array[1];
175 if (DEBUG) Log.d(TAG, "Retrieving 2x cache " + mHashes
    [all...]
  /frameworks/support/v4/java/android/support/v4/util/
SimpleArrayMap.java 57 int[] mHashes;
69 int index = ContainerHelpers.binarySearch(mHashes, N, hash);
83 for (end = index + 1; end < N && mHashes[end] == hash; end++) {
88 for (int i = index - 1; i >= 0 && mHashes[i] == hash; i--) {
107 int index = ContainerHelpers.binarySearch(mHashes, N, 0);
121 for (end = index + 1; end < N && mHashes[end] == 0; end++) {
126 for (int i = index - 1; i >= 0 && mHashes[i] == 0; i--) {
144 mHashes = (int[])array[1];
147 if (DEBUG) Log.d(TAG, "Retrieving 2x cache " + mHashes
158 mHashes = (int[])array[1]
    [all...]
  /prebuilts/maven_repo/android/com/android/support/support-v4/19.0.0/
support-v4-19.0.0.jar 

Completed in 40 milliseconds