Home
last modified time | relevance | path

Searched refs:dsts (Results 1 – 16 of 16) sorted by relevance

/external/skqp/tests/
DSkColorSpace_NewTest.cpp47 SkColor dsts[3]; in DEF_TEST() local
48 for (SkColor& dst : dsts) { in DEF_TEST()
57 SkColor* dst = dsts; in DEF_TEST()
80 REPORTER_ASSERT(r, SkColorGetA(dsts[0]) == 0xff && SkColorGetB(dsts[0]) == 0x00); in DEF_TEST()
81 REPORTER_ASSERT(r, SkColorGetA(dsts[1]) == 0xff && SkColorGetB(dsts[1]) == 0x00); in DEF_TEST()
82 REPORTER_ASSERT(r, SkColorGetA(dsts[2]) == 0xff && SkColorGetB(dsts[2]) == 0x00); in DEF_TEST()
87 REPORTER_ASSERT(r, SkColorGetR(dsts[0]) < SkColorGetR(dsts[1])); in DEF_TEST()
88 REPORTER_ASSERT(r, SkColorGetR(dsts[1]) < SkColorGetR(dsts[2])); in DEF_TEST()
90 REPORTER_ASSERT(r, SkColorGetG(dsts[0]) < SkColorGetG(dsts[1])); in DEF_TEST()
91 REPORTER_ASSERT(r, SkColorGetG(dsts[1]) < SkColorGetG(dsts[2])); in DEF_TEST()
/external/skia/tests/
DSkColorSpace_NewTest.cpp47 SkColor dsts[3]; in DEF_TEST() local
48 for (SkColor& dst : dsts) { in DEF_TEST()
57 SkColor* dst = dsts; in DEF_TEST()
80 REPORTER_ASSERT(r, SkColorGetA(dsts[0]) == 0xff && SkColorGetB(dsts[0]) == 0x00); in DEF_TEST()
81 REPORTER_ASSERT(r, SkColorGetA(dsts[1]) == 0xff && SkColorGetB(dsts[1]) == 0x00); in DEF_TEST()
82 REPORTER_ASSERT(r, SkColorGetA(dsts[2]) == 0xff && SkColorGetB(dsts[2]) == 0x00); in DEF_TEST()
87 REPORTER_ASSERT(r, SkColorGetR(dsts[0]) < SkColorGetR(dsts[1])); in DEF_TEST()
88 REPORTER_ASSERT(r, SkColorGetR(dsts[1]) < SkColorGetR(dsts[2])); in DEF_TEST()
90 REPORTER_ASSERT(r, SkColorGetG(dsts[0]) < SkColorGetG(dsts[1])); in DEF_TEST()
91 REPORTER_ASSERT(r, SkColorGetG(dsts[1]) < SkColorGetG(dsts[2])); in DEF_TEST()
/external/conscrypt/common/src/main/java/org/conscrypt/
DJava8EngineWrapper.java240 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()
DAbstractConscryptEngine.java110 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
DConscryptEngine.java687 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)
721 checkArgument(dsts != null, "dsts is null");
723 checkPositionIndexes(dstsOffset, dstsOffset + dstsLength, dsts.length);
[all …]
DConscrypt.java462 final ByteBuffer[] dsts) throws SSLException { in unwrap() argument
463 return toConscrypt(engine).unwrap(srcs, dsts); in unwrap()
480 final int srcsLength, final ByteBuffer[] dsts, final int dstsOffset, in unwrap() argument
483 srcs, srcsOffset, srcsLength, dsts, dstsOffset, dstsLength); in unwrap()
/external/libvpx/libvpx/vp9/encoder/
Dvp9_frame_scale.c26 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()
Dvp9_encoder.c2636 uint8_t *const dsts[3] = { dst->y_buffer, dst->u_buffer, dst->v_buffer }; local
2647 src_strides[i], dsts[i], dst_heights[i],
2651 dsts[i], dst_heights[i], dst_widths[i], dst_strides[i]);
2655 dsts[i], dst_heights[i], dst_widths[i], dst_strides[i]);
2673 uint8_t *const dsts[3] = { dst->y_buffer, dst->u_buffer, dst->v_buffer }; local
2689 uint8_t *dst_ptr = dsts[i] + (y / factor) * dst_stride + (x / factor);
/external/libcxx/utils/libcxx/test/
Dexecutor.py132 dsts = [target_exe_path]
137 dsts.extend(dev_paths)
138 self.copy_in(srcs, dsts)
/external/mesa3d/src/gallium/auxiliary/gallivm/
Dlp_bld_conv.h71 LLVMValueRef *dsts, unsigned num_dsts);
/external/libvpx/libvpx/vp9/common/
Dvp9_postproc.c244 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/llvm/include/llvm/Support/
DGCOV.h347 iterator_range<EdgeIterator> dsts() const { in dsts() function
/external/llvm/lib/IR/
DGCOV.cpp725 for (const GCOVEdge *Edge : Block.dsts()) { in printBranchInfo()
/external/valgrind/helgrind/
Dhg_main.c3835 Lock* laog__do_dfs_from_to ( Lock* src, WordSetID dsts /* univ_lsets */ ) in laog__do_dfs_from_to() argument
3849 if (HG_(isEmptyWS)( univ_lsets, dsts )) in laog__do_dfs_from_to()
3867 if (HG_(elemWS)( univ_lsets, dsts, (UWord)here )) { ret = here; break; } in laog__do_dfs_from_to()
/external/skia/docs/
DSkMatrix_Reference.bmh2858 const SkRect dsts[] = { {0, 0, 0, 0}, {5, 6, 8, 9} };
2860 for (auto dst : dsts) {
2913 const SkRect dsts[] = { {0, 0, 0, 0}, {5, 6, 8, 9} };
2915 for (auto dst : dsts) {
/external/skqp/docs/
DSkMatrix_Reference.bmh2823 const SkRect dsts[] = { {0, 0, 0, 0}, {5, 6, 8, 9} };
2825 for (auto dst : dsts) {
2878 const SkRect dsts[] = { {0, 0, 0, 0}, {5, 6, 8, 9} };
2880 for (auto dst : dsts) {