HomeSort by relevance Sort by last modified time
    Searched refs:dsts (Results 1 - 25 of 123) sorted by null

1 2 3 4 5

  /libcore/ojluni/src/main/java/java/nio/channels/
ScatteringByteChannel.java 62 * dsts[offset].remaining()
63 * + dsts[offset+1].remaining()
64 * + ... + dsts[offset+length-1].remaining()</pre></blockquote>
70 * Up to the first <tt>dsts[offset].remaining()</tt> bytes of this sequence
71 * are transferred into buffer <tt>dsts[offset]</tt>, up to the next
72 * <tt>dsts[offset+1].remaining()</tt> bytes are transferred into buffer
73 * <tt>dsts[offset+1]</tt>, and so forth, until the entire byte sequence
84 * @param dsts
90 * larger than <tt>dsts.length</tt>
95 * <tt>dsts.length</tt>&nbsp;-&nbsp;<tt>offset</tt
    [all...]
DatagramChannel.java 497 public abstract long read(ByteBuffer[] dsts, int offset, int length)
513 public final long read(ByteBuffer[] dsts) throws IOException {
514 return read(dsts, 0, dsts.length);
SocketChannel.java 473 public abstract long read(ByteBuffer[] dsts, int offset, int length)
480 public final long read(ByteBuffer[] dsts) throws IOException {
481 return read(dsts, 0, dsts.length);
FileChannel.java 359 public abstract long read(ByteBuffer[] dsts, int offset, int length)
370 public final long read(ByteBuffer[] dsts) throws IOException {
371 return read(dsts, 0, dsts.length);
    [all...]
AsynchronousSocketChannel.java 448 * dsts[offset].remaining()
449 * + dsts[offset+1].remaining()
450 * + ... + dsts[offset+length-1].remaining()</pre></blockquote>
456 * Up to the first <tt>dsts[offset].remaining()</tt> bytes of this sequence
457 * are transferred into buffer <tt>dsts[offset]</tt>, up to the next
458 * <tt>dsts[offset+1].remaining()</tt> bytes are transferred into buffer
459 * <tt>dsts[offset+1]</tt>, and so forth, until the entire byte sequence
479 * @param dsts
484 * {@code dsts.length}
487 * and no larger than {@code dsts.length - offset
    [all...]
  /external/skia/tests/
SkColorSpace_NewTest.cpp 47 SkColor dsts[3]; local
48 for (SkColor& dst : dsts) {
57 SkColor* dst = dsts;
80 REPORTER_ASSERT(r, SkColorGetA(dsts[0]) == 0xff && SkColorGetB(dsts[0]) == 0x00);
81 REPORTER_ASSERT(r, SkColorGetA(dsts[1]) == 0xff && SkColorGetB(dsts[1]) == 0x00);
82 REPORTER_ASSERT(r, SkColorGetA(dsts[2]) == 0xff && SkColorGetB(dsts[2]) == 0x00);
87 REPORTER_ASSERT(r, SkColorGetR(dsts[0]) < SkColorGetR(dsts[1]))
    [all...]
  /external/skqp/tests/
SkColorSpace_NewTest.cpp 47 SkColor dsts[3]; local
48 for (SkColor& dst : dsts) {
57 SkColor* dst = dsts;
80 REPORTER_ASSERT(r, SkColorGetA(dsts[0]) == 0xff && SkColorGetB(dsts[0]) == 0x00);
81 REPORTER_ASSERT(r, SkColorGetA(dsts[1]) == 0xff && SkColorGetB(dsts[1]) == 0x00);
82 REPORTER_ASSERT(r, SkColorGetA(dsts[2]) == 0xff && SkColorGetB(dsts[2]) == 0x00);
87 REPORTER_ASSERT(r, SkColorGetR(dsts[0]) < SkColorGetR(dsts[1]))
    [all...]
  /external/conscrypt/common/src/main/java/org/conscrypt/
AbstractConscryptEngine.java 110 public abstract SSLEngineResult unwrap(ByteBuffer src, ByteBuffer[] dsts) throws SSLException;
113 public abstract SSLEngineResult unwrap(final ByteBuffer src, final ByteBuffer[] dsts,
116 abstract SSLEngineResult unwrap(final ByteBuffer[] srcs, final ByteBuffer[] dsts)
120 final ByteBuffer[] dsts, final int dstsOffset, final int dstsLength)
Java8EngineWrapper.java 240 public SSLEngineResult unwrap(ByteBuffer src, ByteBuffer[] dsts) throws SSLException {
241 return delegate.unwrap(src, dsts);
245 public SSLEngineResult unwrap(ByteBuffer src, ByteBuffer[] dsts, int offset, int length)
247 return delegate.unwrap(src, dsts, offset, length);
251 SSLEngineResult unwrap(ByteBuffer[] srcs, ByteBuffer[] dsts) throws SSLException {
252 return delegate.unwrap(srcs, dsts);
256 SSLEngineResult unwrap(ByteBuffer[] srcs, int srcsOffset, int srcsLength, ByteBuffer[] dsts,
258 return delegate.unwrap(srcs, srcsOffset, srcsLength, dsts, dstsOffset, dstsLength);
Conscrypt.java 457 * @param dsts the destination buffers
462 final ByteBuffer[] dsts) throws SSLException {
463 return toConscrypt(engine).unwrap(srcs, dsts);
473 * @param dsts the destination buffers
474 * @param dstsOffset the offset in the {@code dsts} array of the first destination buffer
480 final int srcsLength, final ByteBuffer[] dsts, final int dstsOffset,
483 srcs, srcsOffset, srcsLength, dsts, dstsOffset, dstsLength);
ConscryptEngine.java 687 public SSLEngineResult unwrap(ByteBuffer src, ByteBuffer[] dsts) throws SSLException {
690 return unwrap(singleSrcBuffer(src), dsts);
698 public SSLEngineResult unwrap(final ByteBuffer src, final ByteBuffer[] dsts, final int offset,
702 return unwrap(singleSrcBuffer(src), 0, 1, dsts, offset, length);
710 SSLEngineResult unwrap(final ByteBuffer[] srcs, final ByteBuffer[] dsts) throws SSLException {
712 checkArgument(dsts != null, "dsts is null");
713 return unwrap(srcs, 0, srcs.length, dsts, 0, dsts.length);
718 final ByteBuffer[] dsts, final int dstsOffset, final int dstsLength
    [all...]
  /libcore/ojluni/src/main/java/javax/net/ssl/
SSLEngine.java     [all...]
  /libcore/ojluni/src/main/java/sun/nio/ch/
SourceChannelImpl.java 182 public long read(ByteBuffer[] dsts, int offset, int length)
185 if ((offset < 0) || (length < 0) || (offset > dsts.length - length))
187 return read(Util.subsequence(dsts, offset, length));
190 public long read(ByteBuffer[] dsts) throws IOException {
191 if (dsts == null)
202 n = IOUtil.read(fd, dsts, nd);
AsynchronousSocketChannelImpl.java 217 ByteBuffer[] dsts,
226 ByteBuffer[] dsts,
276 return implRead(isScatteringRead, dst, dsts, timeout, unit, att, handler);
301 public final <A> void read(ByteBuffer[] dsts,
311 if ((offset < 0) || (length < 0) || (offset > dsts.length - length))
313 ByteBuffer[] bufs = Util.subsequence(dsts, offset, length);
SocketChannelImpl.java 463 public long read(ByteBuffer[] dsts, int offset, int length)
466 if ((offset < 0) || (length < 0) || (offset > dsts.length - length))
481 n = IOUtil.read(fd, dsts, offset, length, nd);
    [all...]
UnixAsynchronousSocketChannelImpl.java 497 ByteBuffer[] dsts,
530 n = (int)IOUtil.read(fd, dsts, nd);
541 this.readBuffers = dsts;
  /external/libvpx/libvpx/vp9/encoder/
vp9_frame_scale.c 26 uint8_t *const dsts[3] = { dst->y_buffer, dst->u_buffer, dst->v_buffer }; local
81 uint8_t *dst_ptr = dsts[i] + y * dst_stride + x;
105 uint8_t *dst_ptr = dsts[i] + (y / factor) * dst_stride + (x / factor);
  /external/mesa3d/src/gallium/auxiliary/gallivm/
lp_bld_conv.h 71 LLVMValueRef *dsts, unsigned num_dsts);
  /external/libcxx/utils/libcxx/test/
executor.py 132 dsts = [target_exe_path]
137 dsts.extend(dev_paths)
138 self.copy_in(srcs, dsts)
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/utils/libcxx/test/
executor.py 132 dsts = [target_exe_path]
137 dsts.extend(dev_paths)
138 self.copy_in(srcs, dsts)
  /libcore/support/src/test/java/org/apache/harmony/security/tests/support/
MySSLContextSpi.java 148 public SSLEngineResult unwrap(ByteBuffer src, ByteBuffer[] dsts,
  /libcore/support/src/test/java/org/apache/harmony/xnet/tests/support/
MySSLContextSpi.java 146 public SSLEngineResult unwrap(ByteBuffer src, ByteBuffer[] dsts,
  /external/libvpx/libvpx/vp9/common/
vp9_postproc.c 244 uint8_t *const dsts[3] = { dst->y_buffer, dst->u_buffer, dst->v_buffer }; local
249 CONVERT_TO_SHORTPTR(srcs[i]), CONVERT_TO_SHORTPTR(dsts[i]),
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/ssa/
regalloc.go     [all...]
  /prebuilts/go/linux-x86/src/cmd/compile/internal/ssa/
regalloc.go     [all...]

Completed in 452 milliseconds

1 2 3 4 5