Home
last modified time | relevance | path

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

/libcore/ojluni/src/main/java/java/util/
DComparableTimSort.java657 int dest = base1; // Indexes int a
661 a[dest++] = a[cursor2++];
663 System.arraycopy(tmp, cursor1, a, dest, len1);
667 System.arraycopy(a, cursor2, a, dest, len2);
668 a[dest + len2] = tmp[cursor1]; // Last elt of run 1 to end of merge
685 a[dest++] = a[cursor2++];
691 a[dest++] = tmp[cursor1++];
708 System.arraycopy(tmp, cursor1, a, dest, count1);
709 dest += count1;
715 a[dest++] = a[cursor2++];
[all …]
DTimSort.java689 int dest = base1; // Indexes int a
693 a[dest++] = a[cursor2++];
695 System.arraycopy(tmp, cursor1, a, dest, len1);
699 System.arraycopy(a, cursor2, a, dest, len2);
700 a[dest + len2] = tmp[cursor1]; // Last elt of run 1 to end of merge
718 a[dest++] = a[cursor2++];
724 a[dest++] = tmp[cursor1++];
741 System.arraycopy(tmp, cursor1, a, dest, count1);
742 dest += count1;
748 a[dest++] = a[cursor2++];
[all …]
DArrays.java1332 Object[] dest, in mergeSort() argument
1342 ((Comparable) dest[j-1]).compareTo(dest[j])>0; j--) in mergeSort()
1343 swap(dest, j, j-1); in mergeSort()
1353 mergeSort(dest, src, low, mid, -off); in mergeSort()
1354 mergeSort(dest, src, mid, high, -off); in mergeSort()
1359 System.arraycopy(src, low, dest, destLow, length); in mergeSort()
1366 dest[i] = src[p++]; in mergeSort()
1368 dest[i] = src[q++]; in mergeSort()
DWeakHashMap.java511 private void transfer(Entry<K,V>[] src, Entry<K,V>[] dest) { in transfer() argument
523 int i = indexFor(e.hash, dest.length); in transfer()
524 e.next = dest[i]; in transfer()
525 dest[i] = e; in transfer()
DCollections.java595 public static <T> void copy(List<? super T> dest, List<? extends T> src) { in copy() argument
597 if (srcSize > dest.size()) in copy()
601 (src instanceof RandomAccess && dest instanceof RandomAccess)) { in copy()
603 dest.set(i, src.get(i)); in copy()
605 ListIterator<? super T> di=dest.listIterator(); in copy()
3821 Object[] dest = (CheckedEntry.class.isInstance(
3826 dest[i] = checkedEntry((Map.Entry<K,V>)source[i],
3828 return dest;
/libcore/support/src/test/java/tests/support/resource/
DSupport_Resources.java109 File dest = new File(f.toString() + "/" + file); in copyFile() local
114 copyLocalFileto(dest, in); in copyFile()
117 "Unable to copy file from resource " + resourceName + " to file " + dest, e); in copyFile()
120 return dest; in copyFile()
127 public static void copyLocalFileto(File dest, InputStream in) throws IOException { in copyLocalFileto() argument
128 if (!dest.exists()) { in copyLocalFileto()
129 FileOutputStream out = new FileOutputStream(dest); in copyLocalFileto()
132 dest.deleteOnExit(); in copyLocalFileto()
196 public static void copyLocalFileTo(File dest, InputStream in) throws IOException { in copyLocalFileTo() argument
197 if (!dest.exists()) { in copyLocalFileTo()
[all …]
/libcore/ojluni/src/main/java/sun/net/ftp/
DFtpClient.java121 … public static FtpClient create(InetSocketAddress dest) throws FtpProtocolException, IOException { in create() argument
123 if (dest != null) { in create()
124 client.connect(dest); in create()
139 public static FtpClient create(String dest) throws FtpProtocolException, IOException { in create() argument
140 return create(new InetSocketAddress(dest, FTP_PORT)); in create()
241 public abstract FtpClient connect(SocketAddress dest) throws FtpProtocolException, IOException; in connect() argument
254 …public abstract FtpClient connect(SocketAddress dest, int timeout) throws FtpProtocolException, IO… in connect() argument
/libcore/ojluni/src/test/java/util/stream/testlib/org/openjdk/testlib/java/util/stream/
DSpliteratorTestHelper.java267 ArrayList<T> dest = new ArrayList<>(); in testMixedTryAdvanceForEach() local
269 Consumer<T> addToDest = boxingAdapter.apply(dest::add); in testMixedTryAdvanceForEach()
281 assertEquals(sizeIfKnown, dest.size()); in testMixedTryAdvanceForEach()
283 assertEquals(dest.size(), exp.size()); in testMixedTryAdvanceForEach()
285 asserter.assertContents(dest, exp, isOrdered); in testMixedTryAdvanceForEach()
298 ArrayList<T> dest = new ArrayList<>(); in testMixedTraverseAndSplit() local
300 Consumer<T> b = boxingAdapter.apply(dest::add); in testMixedTraverseAndSplit()
325 assertEquals(sizeIfKnown, dest.size()); in testMixedTraverseAndSplit()
327 assertEquals(dest.size(), exp.size()); in testMixedTraverseAndSplit()
329 asserter.assertContents(dest, exp, isOrdered); in testMixedTraverseAndSplit()
[all …]
/libcore/ojluni/src/test/java/util/stream/bootlib/java/util/stream/
DSpliteratorTestHelper.java267 ArrayList<T> dest = new ArrayList<>(); in testMixedTryAdvanceForEach() local
269 Consumer<T> addToDest = boxingAdapter.apply(dest::add); in testMixedTryAdvanceForEach()
281 assertEquals(sizeIfKnown, dest.size()); in testMixedTryAdvanceForEach()
283 assertEquals(dest.size(), exp.size()); in testMixedTryAdvanceForEach()
285 asserter.assertContents(dest, exp, isOrdered); in testMixedTryAdvanceForEach()
298 ArrayList<T> dest = new ArrayList<>(); in testMixedTraverseAndSplit() local
300 Consumer<T> b = boxingAdapter.apply(dest::add); in testMixedTraverseAndSplit()
325 assertEquals(sizeIfKnown, dest.size()); in testMixedTraverseAndSplit()
327 assertEquals(dest.size(), exp.size()); in testMixedTraverseAndSplit()
329 asserter.assertContents(dest, exp, isOrdered); in testMixedTraverseAndSplit()
[all …]
/libcore/support/src/test/java/tests/support/
DSupport_ASimpleReader.java56 public int read(char[] dest, int offset, int count) throws IOException { in read() argument
63 System.arraycopy(buf, pos, dest, offset, readable); in read()
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/
DSystemTest.java93 char[][] dest = new char[2][]; in test_arraycopyLjava_lang_ObjectILjava_lang_ObjectII() local
94 System.arraycopy(source, 0, dest, 0, dest.length); in test_arraycopyLjava_lang_ObjectILjava_lang_ObjectII()
95 assertTrue("Invalid copy 2", dest[0] == source[0] in test_arraycopyLjava_lang_ObjectILjava_lang_ObjectII()
96 && dest[1] == source[1]); in test_arraycopyLjava_lang_ObjectILjava_lang_ObjectII()
/libcore/ojluni/src/main/java/sun/net/ftp/impl/
DFtpClient.java567 InetSocketAddress dest = null; in openPassiveDataConnection() local
603 dest = new InetSocketAddress(add, port); in openPassiveDataConnection()
609 dest = InetSocketAddress.createUnresolved(serverAddr.getHostName(), port); in openPassiveDataConnection()
639 dest = new InetSocketAddress(s, port); in openPassiveDataConnection()
671 s.connect(dest, connectTimeout); in openPassiveDataConnection()
674 s.connect(dest, defaultConnectTimeout); in openPassiveDataConnection()
676 s.connect(dest); in openPassiveDataConnection()
686 s = sslFact.createSocket(s, dest.getHostName(), dest.getPort(), true); in openPassiveDataConnection()
920 private void tryConnect(InetSocketAddress dest, int timeout) throws IOException { in tryConnect() argument
924 server = doConnect(dest, timeout); in tryConnect()
[all …]
/libcore/ojluni/src/main/java/java/io/
DFile.java1400 public boolean renameTo(File dest) { in renameTo() argument
1404 security.checkWrite(dest.path); in renameTo()
1406 if (dest == null) { in renameTo()
1409 if (this.isInvalid() || dest.isInvalid()) { in renameTo()
1412 return fs.rename(this, dest); in renameTo()
/libcore/ojluni/src/main/native/
Dnet_util.c131 int getInet6Address_ipaddress(JNIEnv *env, jobject iaObj, char *dest) { in getInet6Address_ipaddress() argument
140 (*env)->GetByteArrayRegion(env, addr, 0, 16, (jbyte *)dest); in getInet6Address_ipaddress()
Dnet_util.h69 extern int getInet6Address_ipaddress(JNIEnv *env, jobject ia6Obj, char *dest);
/libcore/ojluni/src/main/java/java/util/stream/
DNodes.java663 public void copyInto(T[] dest, int destOffset) { in copyInto() argument
664 System.arraycopy(array, 0, dest, destOffset, curSize); in copyInto()
1345 public void copyInto(int[] dest, int destOffset) {
1346 System.arraycopy(array, 0, dest, destOffset, curSize);
1399 public void copyInto(long[] dest, int destOffset) {
1400 System.arraycopy(array, 0, dest, destOffset, curSize);
1453 public void copyInto(double[] dest, int destOffset) {
1454 System.arraycopy(array, 0, dest, destOffset, curSize);
/libcore/ojluni/src/main/java/java/lang/
DSystem.java441 Object dest, int destPos, in arraycopy() argument