/external/virglrenderer/src/ |
D | vrend_shader.c | 1673 #define emit_arit_op2(op) snprintf(buf, 255, "%s = %s(%s((%s %s %s))%s);\n", dsts[0], get_string(di… 1674 #define emit_op1(op) snprintf(buf, 255, "%s = %s(%s(%s(%s))%s);\n", dsts[0], get_string(dinfo.dstco… 1675 #define emit_compare(op) snprintf(buf, 255, "%s = %s(%s((%s(%s(%s), %s(%s))))%s);\n", dsts[0], get_… 1677 …"%s = %s(uintBitsToFloat(%s(%s(%s(%s), %s(%s))%s) * %s(0xffffffff)));\n", dsts[0], get_string(dinf… 1803 char dsts[3][255], in emit_txq() 1834 …snprintf(buf, 255, "%s%s = %s(textureQueryLevels(%s));\n", dsts[0], get_wm_string(twm), get_string… in emit_txq() 1869 …snprintf(buf, 255, "%s%s = %s(textureSize(%s%s))%s;\n", dsts[0], get_wm_string(twm), get_string(dt… in emit_txq() 1880 char dsts[3][255]) in emit_txqs() 1895 snprintf(buf, 255, "%s = %s(textureSamples(%s));\n", dsts[0], in emit_txqs() 2058 char dsts[3][255], in translate_tex() [all …]
|
/external/conscrypt/repackaged/common/src/main/java/com/android/org/conscrypt/ |
D | Java8EngineWrapper.java | 241 public SSLEngineResult unwrap(ByteBuffer src, ByteBuffer[] dsts) throws SSLException { in unwrap() argument 242 return delegate.unwrap(src, dsts); in unwrap() 246 public SSLEngineResult unwrap(ByteBuffer src, ByteBuffer[] dsts, int offset, int length) in unwrap() argument 248 return delegate.unwrap(src, dsts, offset, length); in unwrap() 252 SSLEngineResult unwrap(ByteBuffer[] srcs, ByteBuffer[] dsts) throws SSLException { in unwrap() argument 253 return delegate.unwrap(srcs, dsts); in unwrap() 257 SSLEngineResult unwrap(ByteBuffer[] srcs, int srcsOffset, int srcsLength, ByteBuffer[] dsts, in unwrap() argument 259 return delegate.unwrap(srcs, srcsOffset, srcsLength, dsts, dstsOffset, dstsLength); in unwrap()
|
D | AbstractConscryptEngine.java | 111 public abstract SSLEngineResult unwrap(ByteBuffer src, ByteBuffer[] dsts) throws SSLException; in unwrap() argument 114 public abstract SSLEngineResult unwrap(final ByteBuffer src, final ByteBuffer[] dsts, in unwrap() argument 117 abstract SSLEngineResult unwrap(final ByteBuffer[] srcs, final ByteBuffer[] dsts) in unwrap() argument 121 final ByteBuffer[] dsts, final int dstsOffset, final int dstsLength) in unwrap() argument
|
D | 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) 742 checkArgument(dsts != null, "dsts is null"); 744 checkPositionIndexes(dstsOffset, dstsOffset + dstsLength, dsts.length); [all …]
|
D | Conscrypt.java | 614 final ByteBuffer[] dsts) throws SSLException { in unwrap() argument 615 return toConscrypt(engine).unwrap(srcs, dsts); in unwrap() 632 final int srcsLength, final ByteBuffer[] dsts, final int dstsOffset, in unwrap() argument 635 srcs, srcsOffset, srcsLength, dsts, dstsOffset, dstsLength); in unwrap()
|
/external/conscrypt/common/src/main/java/org/conscrypt/ |
D | Java8EngineWrapper.java | 240 public SSLEngineResult unwrap(ByteBuffer src, ByteBuffer[] dsts) throws SSLException { in unwrap() argument 241 return delegate.unwrap(src, dsts); in unwrap() 245 public SSLEngineResult unwrap(ByteBuffer src, ByteBuffer[] dsts, int offset, int length) in unwrap() argument 247 return delegate.unwrap(src, dsts, offset, length); in unwrap() 251 SSLEngineResult unwrap(ByteBuffer[] srcs, ByteBuffer[] dsts) throws SSLException { in unwrap() argument 252 return delegate.unwrap(srcs, dsts); in unwrap() 256 SSLEngineResult unwrap(ByteBuffer[] srcs, int srcsOffset, int srcsLength, ByteBuffer[] dsts, in unwrap() argument 258 return delegate.unwrap(srcs, srcsOffset, srcsLength, dsts, dstsOffset, dstsLength); in unwrap()
|
D | AbstractConscryptEngine.java | 110 public abstract SSLEngineResult unwrap(ByteBuffer src, ByteBuffer[] dsts) throws SSLException; in unwrap() argument 113 public abstract SSLEngineResult unwrap(final ByteBuffer src, final ByteBuffer[] dsts, in unwrap() argument 116 abstract SSLEngineResult unwrap(final ByteBuffer[] srcs, final ByteBuffer[] dsts) in unwrap() argument 120 final ByteBuffer[] dsts, final int dstsOffset, final int dstsLength) in unwrap() argument
|
D | 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) 741 checkArgument(dsts != null, "dsts is null"); 743 checkPositionIndexes(dstsOffset, dstsOffset + dstsLength, dsts.length); [all …]
|
D | Conscrypt.java | 604 final ByteBuffer[] dsts) throws SSLException { in unwrap() argument 605 return toConscrypt(engine).unwrap(srcs, dsts); in unwrap() 622 final int srcsLength, final ByteBuffer[] dsts, final int dstsOffset, in unwrap() argument 625 srcs, srcsOffset, srcsLength, dsts, dstsOffset, dstsLength); in unwrap()
|
/external/libvpx/libvpx/vp9/encoder/ |
D | vp9_frame_scale.c | 26 uint8_t *const dsts[3] = { dst->y_buffer, dst->u_buffer, dst->v_buffer }; in vp9_scale_and_extend_frame_c() local 81 uint8_t *dst_ptr = dsts[i] + y * dst_stride + x; in vp9_scale_and_extend_frame_c() 105 uint8_t *dst_ptr = dsts[i] + (y / factor) * dst_stride + (x / factor); in vp9_scale_and_extend_frame_c()
|
D | vp9_encoder.c | 2815 uint8_t *const dsts[3] = { dst->y_buffer, dst->u_buffer, dst->v_buffer }; local 2826 src_strides[i], dsts[i], dst_heights[i], 2830 dsts[i], dst_heights[i], dst_widths[i], dst_strides[i]); 2834 dsts[i], dst_heights[i], dst_widths[i], dst_strides[i]); 2852 uint8_t *const dsts[3] = { dst->y_buffer, dst->u_buffer, dst->v_buffer }; local 2868 uint8_t *dst_ptr = dsts[i] + (y / factor) * dst_stride + (x / factor);
|
/external/libcxx/utils/libcxx/test/ |
D | executor.py | 132 dsts = [target_exe_path] 137 dsts.extend(dev_paths) 138 self.copy_in(srcs, dsts)
|
/external/mesa3d/src/gallium/auxiliary/gallivm/ |
D | lp_bld_conv.h | 71 LLVMValueRef *dsts, unsigned num_dsts);
|
/external/u-boot/drivers/usb/gadget/ |
D | dwc2_udc_otg_regs.h | 69 u32 dsts; /* Device Status */ member
|
D | dwc2_udc_otg_xfer_dma.c | 494 usb_status = (readl(®->dsts) & 0x6); in dwc2_udc_irq() 515 usb_status = readl(®->dsts); in dwc2_udc_irq()
|
/external/libvpx/libvpx/vp9/common/ |
D | vp9_postproc.c | 244 uint8_t *const dsts[3] = { dst->y_buffer, dst->u_buffer, dst->v_buffer }; in vp9_deblock() local 249 CONVERT_TO_SHORTPTR(srcs[i]), CONVERT_TO_SHORTPTR(dsts[i]), in vp9_deblock()
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ProfileData/ |
D | GCOV.h | 360 iterator_range<EdgeIterator> dsts() const { in dsts() function
|
/external/llvm/include/llvm/Support/ |
D | GCOV.h | 347 iterator_range<EdgeIterator> dsts() const { in dsts() function
|
/external/llvm/lib/IR/ |
D | GCOV.cpp | 725 for (const GCOVEdge *Edge : Block.dsts()) { in printBranchInfo()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/ProfileData/ |
D | GCOV.cpp | 747 for (const GCOVEdge *Edge : Block.dsts()) { in printBranchInfo()
|
/external/skqp/docs/ |
D | SkMatrix_Reference.bmh | 1966 const SkRect dsts[] = { {0, 0, 0, 0}, {5, 6, 8, 9} }; 1968 for (auto dst : dsts) { 2003 const SkRect dsts[] = { {0, 0, 0, 0}, {5, 6, 8, 9} }; 2005 for (auto dst : dsts) {
|
/external/skia/docs/ |
D | SkMatrix_Reference.bmh | 1948 const SkRect dsts[] = { {0, 0, 0, 0}, {5, 6, 8, 9} }; 1950 for (auto dst : dsts) { 1985 const SkRect dsts[] = { {0, 0, 0, 0}, {5, 6, 8, 9} }; 1987 for (auto dst : dsts) {
|