Searched refs:swap (Results 1 - 18 of 18) sorted by relevance

/dalvik/libcore/luni/src/main/java/org/apache/harmony/luni/platform/
H A DOSMemory.java268 * @param swap
276 int length, boolean swap) throws NullPointerException,
300 * @param swap
308 int length, boolean swap) throws NullPointerException,
358 : swap(getShort(address));
381 setShort(address, swap(value));
402 : swap(getInt(address));
425 setInt(address, swap(value));
446 : swap(getLong(address));
470 setLong(address, swap(valu
275 setShortArray(int address, short[] shorts, int offset, int length, boolean swap) argument
307 setIntArray(int address, int[] ints, int offset, int length, boolean swap) argument
649 private short swap(short value) { method in class:OSMemory
655 private int swap(int value) { method in class:OSMemory
663 private long swap(long value) { method in class:OSMemory
[all...]
H A DIMemorySystem.java202 * @param swap
210 int length, boolean swap)
234 * @param swap
242 boolean swap)
209 setShortArray(int address, short[] shorts, int offset, int length, boolean swap) argument
241 setIntArray(int address, int[] ints, int offset, int length, boolean swap) argument
H A DPlatformAddress.java129 int shortsOffset, int length, boolean swap) {
132 swap);
136 int intsOffset, int length, boolean swap) {
138 osMemory.setIntArray(osaddr + offset, ints, intsOffset, length, swap);
128 setShortArray(int offset, short[] shorts, int shortsOffset, int length, boolean swap) argument
135 setIntArray(int offset, int[] ints, int intsOffset, int length, boolean swap) argument
/dalvik/dx/src/junit/runner/
H A DSorter.java8 * A custom quick sort with support to customize the swap behaviour.
14 public void swap(Vector values, int left, int right); method in interface:Sorter.Swapper
27 swapper.swap(values, left, right);
/dalvik/libcore/luni/src/test/java/junit/runner/
H A DSorter.java8 * A custom quick sort with support to customize the swap behaviour.
14 public void swap(Vector values, int left, int right); method in interface:Sorter.Swapper
27 swapper.swap(values, left, right);
/dalvik/libcore/nio/src/main/java/java/nio/
H A DReadWriteDirectByteBuffer.java172 boolean swap = order() != ByteOrder.nativeOrder();
173 getBaseAddress().setShortArray(offset + position, src, off, len, swap);
212 boolean swap = order() != ByteOrder.nativeOrder();
213 getBaseAddress().setIntArray(offset + position, src, off, len, swap);
/dalvik/libcore/luni/src/main/native/
H A Dorg_apache_harmony_luni_platform_OSMemory.cpp177 jint pointer, jshortArray src, jint offset, jint length, jboolean swap) {
184 if (swap) {
188 if (swap) {
200 jint pointer, jintArray src, jint offset, jint length, jboolean swap) {
207 if (swap) {
211 if (swap) {
176 harmony_nio_putShortsImpl(JNIEnv *_env, jobject _this, jint pointer, jshortArray src, jint offset, jint length, jboolean swap) argument
199 harmony_nio_putIntsImpl(JNIEnv *_env, jobject _this, jint pointer, jintArray src, jint offset, jint length, jboolean swap) argument
/dalvik/vm/mterp/armv4t/
H A DOP_AGET_WIDE.S21 @ May want to swap the order of these two branches depending on how the
H A DOP_APUT_WIDE.S20 @ May want to swap the order of these two branches depending on how the
/dalvik/vm/mterp/armv5te/
H A DOP_AGET_WIDE.S21 @ May want to swap the order of these two branches depending on how the
H A DOP_APUT_WIDE.S22 @ May want to swap the order of these two branches depending on how the
/dalvik/dx/src/com/android/dx/ssa/
H A DSsaBasicBlock.java679 Collections.swap(toSchedule, i, insertPlace++);
699 Collections.swap(toSchedule, insertPlace, i);
/dalvik/vm/alloc/
H A DHeapSource.c640 HeapBitmap swap; local
642 swap = heap->objectBitmap;
644 objectBitmaps[i] = swap;
/dalvik/libcore/luni/src/test/java/tests/api/java/util/
H A DCollectionsTest.java1041 * @tests java.util.Collections#swap(java.util.List, int, int)
1046 method = "swap",
1050 // Test for method swap(java.util.List, int, int)
1059 Collections.swap(smallList, -1, 6);
1065 Collections.swap(smallList, 6, -1);
1071 Collections.swap(smallList, 6, 11);
1077 Collections.swap(smallList, 11, 6);
1084 Collections.swap(null, 1, 1);
1090 Collections.swap(smallList, 4, 7);
/dalvik/vm/oo/
H A DClass.c3299 InstField swap; local
3301 LOGVV(" --- swap '%s' and '%s'\n", pOne->field.name, pTwo->field.name);
3302 swap = *pOne;
3304 *pTwo = swap;
3434 * swap into it.
/dalvik/libcore/luni/src/main/java/java/util/
H A DCollections.java1956 * position of the first element to swap with the element in
1966 public static void swap(List<?> list, int index1, int index2) { method in class:Collections
/dalvik/vm/mterp/out/
H A DInterpAsm-armv4t.S1878 @ May want to swap the order of these two branches depending on how the
2100 @ May want to swap the order of these two branches depending on how the
H A DInterpAsm-armv5te.S1878 @ May want to swap the order of these two branches depending on how the
2102 @ May want to swap the order of these two branches depending on how the

Completed in 580 milliseconds