- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 175 for arraycopy (0.04 sec)
-
guava-testlib/src/com/google/common/collect/testing/google/ListGenerators.java
String[] prefix = {"f", "g"}; String[] suffix = {"h", "i"}; String[] all = new String[2 + elements.length + 2]; arraycopy(prefix, 0, all, 0, 2); arraycopy(elements, 0, all, 2, elements.length); arraycopy(suffix, 0, all, 2 + elements.length, 2); return ImmutableList.copyOf(all).subList(2, elements.length + 2); } }
Registered: 2025-05-30 12:43 - Last Modified: 2024-12-21 14:50 - 5K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/TransactNamedPipeInputStream.java
Registered: 2025-05-25 00:10 - Last Modified: 2019-03-22 21:10 - 4.6K bytes - Viewed (0) -
src/main/java/org/codelibs/core/collection/ArrayUtil.java
return a; } @SuppressWarnings("unchecked") final T[] array = (T[]) Array.newInstance(a.getClass().getComponentType(), a.length + b.length); System.arraycopy(a, 0, array, 0, a.length); System.arraycopy(b, 0, array, a.length, b.length); return array; } /** * 二つの配列を連結した配列を返します。 * <p>
Registered: 2025-05-24 08:58 - Last Modified: 2025-05-10 01:32 - 42.6K bytes - Viewed (0) -
guava-tests/benchmark/com/google/common/base/StringsRepeatBenchmark.java
int strCopyLen = len; int pos = 0; while (count != 0) { if ((count & 1) != 0) { System.arraycopy(strCopy, 0, array, pos, strCopyLen); pos += strCopyLen; } count >>= 1; if (count != 0) { System.arraycopy(strCopy, 0, strCopy, strCopyLen, strCopyLen); strCopyLen <<= 1; } } return new String(array); } @Benchmark
Registered: 2025-05-30 12:43 - Last Modified: 2025-05-13 18:46 - 3.4K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/google/ListGenerators.java
String[] prefix = {"f", "g"}; String[] suffix = {"h", "i"}; String[] all = new String[2 + elements.length + 2]; arraycopy(prefix, 0, all, 0, 2); arraycopy(elements, 0, all, 2, elements.length); arraycopy(suffix, 0, all, 2 + elements.length, 2); return ImmutableList.copyOf(all).subList(2, elements.length + 2); } }
Registered: 2025-05-30 12:43 - Last Modified: 2024-12-21 14:50 - 5K bytes - Viewed (0) -
src/main/java/jcifs/ntlmssp/Type2Message.java
offset += 2; System.arraycopy(domain, 0, targetInfo, offset, domainLength); offset += domainLength; } if ( serverLength > 0 ) { writeUShort(targetInfo, offset, 1); offset += 2; writeUShort(targetInfo, offset, serverLength); offset += 2; System.arraycopy(server, 0, targetInfo, offset, serverLength); }
Registered: 2025-05-25 00:10 - Last Modified: 2018-07-01 13:12 - 14.4K bytes - Viewed (0) -
src/main/java/jcifs/smb/NtlmUtil.java
Encdec.enc_uint32le(0x00000000, temp, 4); // Reserved Encdec.enc_uint64le(nanos1601, temp, 8); System.arraycopy(clientChallenge, 0, temp, 16, 8); Encdec.enc_uint32le(0x00000000, temp, 24); // Unknown if ( avPairs != null ) System.arraycopy(avPairs, 0, temp, 28, avPairsLength); Encdec.enc_uint32le(0x00000000, temp, 28 + avPairsLength); // mystery bytes!
Registered: 2025-05-25 00:10 - Last Modified: 2020-07-07 12:07 - 9.7K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SigningDigest.java
Registered: 2025-05-25 00:10 - Last Modified: 2019-03-22 21:10 - 7K bytes - Viewed (0) -
src/main/java/jcifs/ntlmssp/av/AvSingleHost.java
Registered: 2025-05-25 00:10 - Last Modified: 2018-07-01 13:12 - 1.7K bytes - Viewed (0) -
android/guava-tests/benchmark/com/google/common/base/StringsRepeatBenchmark.java
int strCopyLen = len; int pos = 0; while (count != 0) { if ((count & 1) != 0) { System.arraycopy(strCopy, 0, array, pos, strCopyLen); pos += strCopyLen; } count >>= 1; if (count != 0) { System.arraycopy(strCopy, 0, strCopy, strCopyLen, strCopyLen); strCopyLen <<= 1; } } return new String(array); } @Benchmark
Registered: 2025-05-30 12:43 - Last Modified: 2025-05-13 18:46 - 3.4K bytes - Viewed (0)