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

  /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);
ConscryptEngine.java 707 public SSLEngineResult unwrap(ByteBuffer src, ByteBuffer[] dsts) throws SSLException {
710 return unwrap(singleSrcBuffer(src), dsts);
718 public SSLEngineResult unwrap(final ByteBuffer src, final ByteBuffer[] dsts, final int offset,
722 return unwrap(singleSrcBuffer(src), 0, 1, dsts, offset, length);
730 SSLEngineResult unwrap(final ByteBuffer[] srcs, final ByteBuffer[] dsts) throws SSLException {
732 checkArgument(dsts != null, "dsts is null");
733 return unwrap(srcs, 0, srcs.length, dsts, 0, dsts.length);
738 final ByteBuffer[] dsts, final int dstsOffset, final int dstsLength
    [all...]
Conscrypt.java 599 * @param dsts the destination buffers
604 final ByteBuffer[] dsts) throws SSLException {
605 return toConscrypt(engine).unwrap(srcs, dsts);
615 * @param dsts the destination buffers
616 * @param dstsOffset the offset in the {@code dsts} array of the first destination buffer
622 final int srcsLength, final ByteBuffer[] dsts, final int dstsOffset,
625 srcs, srcsOffset, srcsLength, dsts, dstsOffset, dstsLength);
  /external/conscrypt/repackaged/common/src/main/java/com/android/org/conscrypt/
AbstractConscryptEngine.java 111 public abstract SSLEngineResult unwrap(ByteBuffer src, ByteBuffer[] dsts) throws SSLException;
114 public abstract SSLEngineResult unwrap(final ByteBuffer src, final ByteBuffer[] dsts,
117 abstract SSLEngineResult unwrap(final ByteBuffer[] srcs, final ByteBuffer[] dsts)
121 final ByteBuffer[] dsts, final int dstsOffset, final int dstsLength)
Java8EngineWrapper.java 241 public SSLEngineResult unwrap(ByteBuffer src, ByteBuffer[] dsts) throws SSLException {
242 return delegate.unwrap(src, dsts);
246 public SSLEngineResult unwrap(ByteBuffer src, ByteBuffer[] dsts, int offset, int length)
248 return delegate.unwrap(src, dsts, offset, length);
252 SSLEngineResult unwrap(ByteBuffer[] srcs, ByteBuffer[] dsts) throws SSLException {
253 return delegate.unwrap(srcs, dsts);
257 SSLEngineResult unwrap(ByteBuffer[] srcs, int srcsOffset, int srcsLength, ByteBuffer[] dsts,
259 return delegate.unwrap(srcs, srcsOffset, srcsLength, dsts, dstsOffset, dstsLength);
ConscryptEngine.java 708 public SSLEngineResult unwrap(ByteBuffer src, ByteBuffer[] dsts) throws SSLException {
711 return unwrap(singleSrcBuffer(src), dsts);
719 public SSLEngineResult unwrap(final ByteBuffer src, final ByteBuffer[] dsts, final int offset,
723 return unwrap(singleSrcBuffer(src), 0, 1, dsts, offset, length);
731 SSLEngineResult unwrap(final ByteBuffer[] srcs, final ByteBuffer[] dsts) throws SSLException {
733 checkArgument(dsts != null, "dsts is null");
734 return unwrap(srcs, 0, srcs.length, dsts, 0, dsts.length);
739 final ByteBuffer[] dsts, final int dstsOffset, final int dstsLength
    [all...]
Conscrypt.java 609 * @param dsts the destination buffers
614 final ByteBuffer[] dsts) throws SSLException {
615 return toConscrypt(engine).unwrap(srcs, dsts);
625 * @param dsts the destination buffers
626 * @param dstsOffset the offset in the {@code dsts} array of the first destination buffer
632 final int srcsLength, final ByteBuffer[] dsts, final int dstsOffset,
635 srcs, srcsOffset, srcsLength, dsts, dstsOffset, dstsLength);
  /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);
vp9_encoder.c 2815 uint8_t *const dsts[3] = { dst->y_buffer, dst->u_buffer, dst->v_buffer }; local
2852 uint8_t *const dsts[3] = { dst->y_buffer, dst->u_buffer, dst->v_buffer }; local
    [all...]
  /external/mesa3d/src/gallium/auxiliary/gallivm/
lp_bld_conv.h 71 LLVMValueRef *dsts, unsigned num_dsts);
  /external/virglrenderer/src/
vrend_shader.c 3293 char srcs[4][255], dsts[3][255], buf[512]; local
    [all...]
  /external/libcxx/utils/libcxx/test/
executor.py 132 dsts = [target_exe_path]
137 dsts.extend(dev_paths)
138 self.copy_in(srcs, dsts)
  /art/tools/ahat/src/test/com/android/ahat/
DominatorsTest.java 59 public void node(String src, String... dsts) {
60 depends.put(src, Arrays.asList(dsts));
  /external/u-boot/drivers/usb/gadget/
dwc2_udc_otg_regs.h 69 u32 dsts; /* Device Status */ member in struct:dwc2_usbotg_reg
dwc2_udc_otg_xfer_dma.c 494 usb_status = (readl(&reg->dsts) & 0x6);
515 usb_status = readl(&reg->dsts);
517 "\tSuspend interrupt :(DSTS):0x%x\n", usb_status);
    [all...]
  /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]),
  /external/llvm/include/llvm/Support/
GCOV.h 347 iterator_range<EdgeIterator> dsts() const { function in class:llvm::GCOVBlock
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ProfileData/
GCOV.h 360 iterator_range<EdgeIterator> dsts() const { function in class:llvm::GCOVBlock
  /external/llvm/lib/IR/
GCOV.cpp 725 for (const GCOVEdge *Edge : Block.dsts()) {
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/ProfileData/
GCOV.cpp 747 for (const GCOVEdge *Edge : Block.dsts()) {
  /development/vndk/tools/definition-tool/
vndk_definition_tool.py     [all...]
  /external/grpc-grpc-java/netty/shaded/
grpc-netty-shaded-1.14.0.jar 

Completed in 4556 milliseconds