| /libcore/ojluni/src/main/java/java/net/ |
| D | DatagramPacket.java | 69 int length; field in DatagramPacket 87 public DatagramPacket(byte buf[], int offset, int length) { in DatagramPacket() 103 public DatagramPacket(byte buf[], int length) { in DatagramPacket() 123 public DatagramPacket(byte buf[], int offset, int length, in DatagramPacket() 152 public DatagramPacket(byte buf[], int offset, int length, SocketAddress address) { in DatagramPacket() 175 public DatagramPacket(byte buf[], int length, in DatagramPacket() 193 public DatagramPacket(byte buf[], int length, SocketAddress address) { in DatagramPacket() 278 public synchronized void setData(byte[] buf, int offset, int length) { in setData() 307 public void setReceivedLength(int length) { in setReceivedLength() 401 public synchronized void setLength(int length) { in setLength()
|
| /libcore/luni/src/main/java/libcore/util/ |
| D | CharsetUtils.java | 32 public static native byte[] toAsciiBytes(String s, int offset, int length); in toAsciiBytes() 39 public static native byte[] toIsoLatin1Bytes(String s, int offset, int length); in toIsoLatin1Bytes() 46 public static native byte[] toUtf8Bytes(String s, int offset, int length); in toUtf8Bytes() 52 public static byte[] toBigEndianUtf16Bytes(String s, int offset, int length) { in toBigEndianUtf16Bytes() 73 public static native void asciiBytesToChars(byte[] bytes, int offset, int length, char[] chars); in asciiBytesToChars()
|
| /libcore/ojluni/src/main/java/jdk/internal/util/ |
| D | ArraysSupport.java | 115 int length, in vectorizedMismatch() 169 int length) { in mismatch() 191 int length) { in mismatch() 231 int length) { in mismatch() 278 int length) { in mismatch() 311 int length) { in mismatch() 333 int length) { in mismatch() 360 int length) { in mismatch() 382 int length) { in mismatch() 409 int length) { in mismatch() [all …]
|
| D | Preconditions.java | 69 int index, int length) { in outOfBoundsCheckIndex() 75 int fromIndex, int toIndex, int length) { in outOfBoundsCheckFromToIndex() 81 int fromIndex, int size, int length) { in outOfBoundsCheckFromIndexSize() 87 long index, long length) { in outOfBoundsCheckIndex() 93 long fromIndex, long toIndex, long length) { in outOfBoundsCheckFromToIndex() 99 long fromIndex, long size, long length) { in outOfBoundsCheckFromIndexSize()
|
| /libcore/ojluni/src/main/java/java/nio/ |
| D | BufferMismatch.java | 34 static int mismatch(ByteBuffer a, int aOff, ByteBuffer b, int bOff, int length) { in mismatch() 54 static int mismatch(CharBuffer a, int aOff, CharBuffer b, int bOff, int length) { in mismatch() 78 static int mismatch(ShortBuffer a, int aOff, ShortBuffer b, int bOff, int length) { in mismatch() 98 static int mismatch(IntBuffer a, int aOff, IntBuffer b, int bOff, int length) { in mismatch() 118 static int mismatch(FloatBuffer a, int aOff, FloatBuffer b, int bOff, int length) { in mismatch() 156 static int mismatch(LongBuffer a, int aOff, LongBuffer b, int bOff, int length) { in mismatch() 175 static int mismatch(DoubleBuffer a, int aOff, DoubleBuffer b, int bOff, int length) { in mismatch()
|
| D | MappedByteBuffer.java | 145 long length = mappingLength(offset); in isLoaded() local 167 long length = mappingLength(offset); in load() local 168 load0(mappingAddress(offset), length); in load() local 238 public abstract MappedByteBuffer slice(int index, int length); in slice() 246 private native boolean isLoaded0(long address, long length, int pageCount); in isLoaded0() 247 private native void load0(long address, long length); in load0() 248 private native void force0(FileDescriptor fd, long address, long length); in force0()
|
| D | DirectByteBuffer.java | 172 public final MappedByteBuffer slice(int index, int length) { in slice() 245 public ByteBuffer get(byte[] dst, int dstOffset, int length) { in get() 257 dst, dstOffset, length); in get() local 301 public ByteBuffer put(byte[] src, int srcOffset, int length) { in put() 316 src, srcOffset, length); in put() local 394 void getUnchecked(int pos, char[] dst, int dstOffset, int length) { in getUnchecked() 399 dst, dstOffset, length, !nativeByteOrder); in getUnchecked() local 440 void putUnchecked(int pos, char[] src, int srcOffset, int length) { in putUnchecked() 445 src, srcOffset, length, !nativeByteOrder); in putUnchecked() local 496 void getUnchecked(int pos, short[] dst, int dstOffset, int length) { in getUnchecked() [all …]
|
| D | HeapByteBuffer.java | 86 public ByteBuffer slice(int index, int length) { in slice() 132 public ByteBuffer get(byte[] dst, int offset, int length) { in get() 170 public ByteBuffer put(byte[] src, int offset, int length) { in put() 223 void getUnchecked(int pos, char[] dst, int dstOffset, int length) { in getUnchecked() 251 void putUnchecked(int pos, char[] src, int srcOffset, int length) { in putUnchecked() 284 void getUnchecked(int pos, short[] dst, int dstOffset, int length) { in getUnchecked() 312 void putUnchecked(int pos, short[] src, int srcOffset, int length) { in putUnchecked() 345 void getUnchecked(int pos, int[] dst, int dstOffset, int length) { in getUnchecked() 373 void putUnchecked(int pos, int[] src, int srcOffset, int length) { in putUnchecked() 407 void getUnchecked(int pos, long[] dst, int dstOffset, int length) { in getUnchecked() [all …]
|
| D | ByteBufferAsShortBuffer.java | 69 public ShortBuffer slice(int index, int length) { in slice() 110 public ShortBuffer get(short[] dst, int offset, int length) { in get() 114 bb.getUnchecked(ix(position), dst, offset, length); in get() local 132 public ShortBuffer put(short[] src, int offset, int length) { in put() 136 bb.putUnchecked(ix(position), src, offset, length); in put() local
|
| D | ByteBufferAsLongBuffer.java | 74 public LongBuffer slice(int index, int length) { in slice() 116 public LongBuffer get(long[] dst, int offset, int length) { in get() 120 bb.getUnchecked(ix(position), dst, offset, length); in get() local 138 public LongBuffer put(long[] src, int offset, int length) { in put() 142 bb.putUnchecked(ix(position), src, offset, length); in put() local
|
| D | ByteBufferAsIntBuffer.java | 74 public IntBuffer slice(int index, int length) { in slice() 116 public IntBuffer get(int[] dst, int offset, int length) { in get() 120 bb.getUnchecked(ix(position), dst, offset, length); in get() local 138 public IntBuffer put(int[] src, int offset, int length) { in put() 142 bb.putUnchecked(ix(position), src, offset, length); in put() local
|
| D | ByteBufferAsFloatBuffer.java | 74 public FloatBuffer slice(int index, int length) { in slice() 116 public FloatBuffer get(float[] dst, int offset, int length) { in get() 120 bb.getUnchecked(ix(position), dst, offset, length); in get() local 138 public FloatBuffer put(float[] src, int offset, int length) { in put() 142 bb.putUnchecked(ix(position), src, offset, length); in put() local
|
| D | ByteBufferAsDoubleBuffer.java | 76 public DoubleBuffer slice(int index, int length) { in slice() 118 public DoubleBuffer get(double[] dst, int offset, int length) { in get() 122 bb.getUnchecked(ix(position), dst, offset, length); in get() local 140 public DoubleBuffer put(double[] src, int offset, int length) { in put() 144 bb.putUnchecked(ix(position), src, offset, length); in put() local
|
| /libcore/ojluni/src/main/java/java/nio/charset/ |
| D | CoderResult.java | 96 private final int length; field in CoderResult 98 private CoderResult(int type, int length) { in CoderResult() 172 public int length() { in length() method in CoderResult 217 public static CoderResult malformedForLength(int length) { in malformedForLength() 242 public static CoderResult unmappableForLength(int length) { in unmappableForLength()
|
| /libcore/ojluni/src/main/java/sun/security/util/ |
| D | BitArray.java | 41 private int length; field in BitArray 56 public BitArray(int length) throws IllegalArgumentException { in BitArray() 72 public BitArray(int length, byte[] a) throws IllegalArgumentException { in BitArray() 83 public BitArray(int length, byte[] a, int ofs) in BitArray() 166 public int length() { in length() method in BitArray
|
| /libcore/ojluni/annotations/hiddenapi/sun/security/util/ |
| D | BitArray.java | 31 public BitArray(int length) throws java.lang.IllegalArgumentException { in BitArray() 36 public BitArray(int length, byte[] a) throws java.lang.IllegalArgumentException { in BitArray() 64 public int length() { in length() method in BitArray 107 private int length; field in BitArray
|
| /libcore/ojluni/src/main/java/java/util/ |
| D | Objects.java | 358 int checkIndex(int index, int length) { in checkIndex() 384 int checkFromToIndex(int fromIndex, int toIndex, int length) { in checkFromToIndex() 410 int checkFromIndexSize(int fromIndex, int size, int length) { in checkFromIndexSize() 435 long checkIndex(long index, long length) { in checkIndex() 461 long checkFromToIndex(long fromIndex, long toIndex, long length) { in checkFromToIndex() 487 long checkFromIndexSize(long fromIndex, long size, long length) { in checkFromIndexSize()
|
| /libcore/ojluni/annotations/hiddenapi/java/lang/ |
| D | System.java | 78 java.lang.Object src, int srcPos, java.lang.Object dest, int destPos, int length); in arraycopy() 81 private static void arraycopy(char[] src, int srcPos, char[] dst, int dstPos, int length) { in arraycopy() 86 char[] src, int srcPos, char[] dst, int dstPos, int length); in arraycopyCharUnchecked() 89 public static void arraycopy(byte[] src, int srcPos, byte[] dst, int dstPos, int length) { in arraycopy() 94 byte[] src, int srcPos, byte[] dst, int dstPos, int length); in arraycopyByteUnchecked() 97 private static void arraycopy(short[] src, int srcPos, short[] dst, int dstPos, int length) { in arraycopy() 102 short[] src, int srcPos, short[] dst, int dstPos, int length); in arraycopyShortUnchecked() 105 private static void arraycopy(int[] src, int srcPos, int[] dst, int dstPos, int length) { in arraycopy() 110 int[] src, int srcPos, int[] dst, int dstPos, int length); in arraycopyIntUnchecked() 113 private static void arraycopy(long[] src, int srcPos, long[] dst, int dstPos, int length) { in arraycopy() [all …]
|
| /libcore/luni/src/main/native/ |
| D | cbigint.cpp | 52 simpleAddHighPrecision (uint64_t * arg1, int32_t length, uint64_t arg2) in simpleAddHighPrecision() 134 static uint32_t simpleMultiplyHighPrecision(uint64_t* arg1, int32_t length, uint64_t arg2) { in simpleMultiplyHighPrecision() 157 simpleMultiplyAddHighPrecision (uint64_t * arg1, int32_t length, uint64_t arg2, in simpleMultiplyAddHighPrecision() 194 multiplyHighPrecision (uint64_t * arg1, int32_t length1, uint64_t * arg2, int32_t length2, in multiplyHighPrecision() 226 simpleAppendDecimalDigitHighPrecision (uint64_t * arg1, int32_t length, uint64_t digit) in simpleAppendDecimalDigitHighPrecision() 249 simpleShiftLeftHighPrecision (uint64_t * arg1, int32_t length, int32_t arg2) in simpleShiftLeftHighPrecision() 370 highestSetBitHighPrecision (uint64_t * arg, int32_t length) in highestSetBitHighPrecision() 385 lowestSetBitHighPrecision (uint64_t * arg, int32_t length) in lowestSetBitHighPrecision() 427 toDoubleHighPrecision (uint64_t * arg, int32_t length) in toDoubleHighPrecision() 535 timesTenToTheEHighPrecision (uint64_t * result, int32_t length, jint e) in timesTenToTheEHighPrecision() [all …]
|
| D | ExecStrings.cpp | 33 jsize length = env_->GetArrayLength(java_array_); in ExecStrings() local 55 jsize length = env_->GetArrayLength(java_array_); in ~ExecStrings() local
|
| /libcore/ojluni/src/main/java/java/lang/ |
| D | System.java | 446 int length); in arraycopy() 463 private static void arraycopy(char[] src, int srcPos, char[] dst, int dstPos, int length) { in arraycopy() 503 char[] dst, int dstPos, int length); in arraycopyCharUnchecked() 518 private static void arraycopy(byte[] src, int srcPos, byte[] dst, int dstPos, int length) { in arraycopy() 558 byte[] dst, int dstPos, int length); in arraycopyByteUnchecked() 573 private static void arraycopy(short[] src, int srcPos, short[] dst, int dstPos, int length) { in arraycopy() 613 short[] dst, int dstPos, int length); in arraycopyShortUnchecked() 628 private static void arraycopy(int[] src, int srcPos, int[] dst, int dstPos, int length) { in arraycopy() 668 int[] dst, int dstPos, int length); in arraycopyIntUnchecked() 683 private static void arraycopy(long[] src, int srcPos, long[] dst, int dstPos, int length) { in arraycopy() [all …]
|
| /libcore/ojluni/src/main/java/java/sql/ |
| D | Blob.java | 72 long length() throws SQLException; in length() method 97 byte[] getBytes(long pos, int length) throws SQLException; in getBytes() 303 InputStream getBinaryStream(long pos, long length) throws SQLException; in getBinaryStream()
|
| D | Clob.java | 72 long length() throws SQLException; in length() method 95 String getSubString(long pos, int length) throws SQLException; in getSubString() 346 Reader getCharacterStream(long pos, long length) throws SQLException; in getCharacterStream()
|
| /libcore/ojluni/annotations/hiddenapi/java/nio/ |
| D | ByteBuffer.java | 55 public static java.nio.ByteBuffer wrap(byte[] array, int offset, int length) { in wrap() 77 public java.nio.ByteBuffer get(byte[] dst, int offset, int length) { in get() 89 public java.nio.ByteBuffer put(byte[] src, int offset, int length) { in put() 157 abstract void getUnchecked(int pos, char[] dst, int dstOffset, int length); in getUnchecked() 163 abstract void putUnchecked(int pos, char[] dst, int srcOffset, int length); in putUnchecked() 175 abstract void getUnchecked(int pos, short[] dst, int dstOffset, int length); in getUnchecked() 181 abstract void putUnchecked(int pos, short[] dst, int srcOffset, int length); in putUnchecked() 193 abstract void getUnchecked(int pos, int[] dst, int dstOffset, int length); in getUnchecked() 199 abstract void putUnchecked(int pos, int[] dst, int srcOffset, int length); in putUnchecked() 211 abstract void getUnchecked(int pos, long[] dst, int dstOffset, int length); in getUnchecked() [all …]
|
| /libcore/dalvik/src/main/java/org/apache/harmony/dalvik/ddmc/ |
| D | Chunk.java | 56 public int length; field in Chunk 76 public Chunk(int type, byte[] data, int offset, int length) { in Chunk()
|