/third_party/skia/src/codec/ |
H A D | SkPngCodec.h | 56 void applyXformRow(void* dst, const void* src); 109 virtual Result decodeAllRows(void* dst, size_t rowBytes, int* rowsDecoded) = 0; 110 virtual void setRange(int firstRow, int lastRow, void* dst, size_t rowBytes) = 0;
|
/third_party/openssl/providers/implementations/ciphers/ |
H A D | cipher_tdes_hw.c | 48 void ossl_cipher_hw_tdes_copyctx(PROV_CIPHER_CTX *dst, in ossl_cipher_hw_tdes_copyctx() argument 52 PROV_TDES_CTX *dctx = (PROV_TDES_CTX *)dst; in ossl_cipher_hw_tdes_copyctx() 55 dst->ks = &dctx->tks.ks; in ossl_cipher_hw_tdes_copyctx()
|
/third_party/skia/third_party/externals/libwebp/src/dsp/ |
H A D | alpha_processing_mips_dsp_r2.c | 21 uint8_t* dst, int dst_stride) { in DispatchAlpha_MIPSdspR2() 26 uint8_t* pdst = dst; in DispatchAlpha_MIPSdspR2() 65 dst += dst_stride; in DispatchAlpha_MIPSdspR2() 19 DispatchAlpha_MIPSdspR2(const uint8_t* alpha, int alpha_stride, int width, int height, uint8_t* dst, int dst_stride) DispatchAlpha_MIPSdspR2() argument
|
/third_party/skia/tests/ |
H A D | RepeatedClippedBlurTest.cpp | 33 sk_sp<SkSurface> dst(SkSurface::MakeRenderTarget(dContext, SkBudgeted::kNo, ii)); in DEF_GPUTEST_FOR_RENDERING_CONTEXTS() 34 if (!dst) { in DEF_GPUTEST_FOR_RENDERING_CONTEXTS() 39 SkCanvas* dstCanvas = dst->getCanvas(); in DEF_GPUTEST_FOR_RENDERING_CONTEXTS()
|
/third_party/skia/src/shaders/ |
H A D | SkColorFilterShader.cpp | 68 const SkColorInfo& dst, in onProgram() 72 matrices,localM, dst, in onProgram() 87 return fFilter->program(p,c, dst, uniforms,alloc); in onProgram() 65 onProgram(skvm::Builder* p, skvm::Coord device, skvm::Coord local, skvm::Color paint, const SkMatrixProvider& matrices, const SkMatrix* localM, const SkColorInfo& dst, skvm::Uniforms* uniforms, SkArenaAlloc* alloc) const onProgram() argument
|
/third_party/skia/third_party/externals/brotli/java/org/brotli/wrapper/enc/ |
H A D | BrotliEncoderChannelTest.java | 86 ByteArrayOutputStream dst = new ByteArrayOutputStream(); in run() 87 WritableByteChannel encoder = new BrotliEncoderChannel(Channels.newChannel(dst)); in run() 109 InputStream decoder = new BrotliInputStream(new ByteArrayInputStream(dst.toByteArray())); in run()
|
H A D | BrotliOutputStreamTest.java | 85 ByteArrayOutputStream dst = new ByteArrayOutputStream(); in run() 86 OutputStream encoder = new BrotliOutputStream(dst); in run() 109 InputStream decoder = new BrotliInputStream(new ByteArrayInputStream(dst.toByteArray())); in run()
|
/third_party/skia/third_party/externals/brotli/java/org/brotli/wrapper/dec/ |
H A D | Decoder.java | 117 int consume(ByteBuffer dst) { in consume() argument 119 int limit = Math.min(slice.remaining(), dst.remaining()); in consume() 121 dst.put(slice); in consume()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/ |
H A D | AMDKernelCodeT.h | 46 // Sets val bits for specified mask in specified dst packed instance. 47 #define AMD_HSA_BITS_SET(dst, mask, val) \ 48 dst &= (~(1 << mask ## _SHIFT) & ~mask); \ 49 dst |= (((val) << mask ## _SHIFT) & mask)
|
/third_party/skia/third_party/externals/tint/src/ast/ |
H A D | module.cc | 84 auto* out = ctx->dst->create<Module>(); in Clone() 100 TINT_ICE(AST, ctx->dst->Diagnostics()) in Copy() 114 TINT_ICE(AST, ctx->dst->Diagnostics()) in Copy()
|
/third_party/skia/modules/svg/src/ |
H A D | SkSVGPattern.cpp | 42 int inherit_if_needed(const SkTLazy<T>& src, SkTLazy<T>& dst) { in inherit_if_needed() argument 43 if (!dst.isValid()) { in inherit_if_needed() 44 dst = src; in inherit_if_needed()
|
/third_party/skia/docs/examples/ |
H A D | skpaint_xfer.cpp | 43 SkPaint stroke, src, dst; in REG_FIDDLE() local 64 dst.setShader(SkGradientShader::MakeLinear( in REG_FIDDLE() 80 canvas->drawPaint(dst); in REG_FIDDLE()
|
/third_party/skia/gm/ |
H A D | poly2poly.cpp | 45 SkPoint src[4], dst[4]; in doDraw() local 49 dst[i].set(SkIntToScalar(idst[2*i+0]), SkIntToScalar(idst[2*i+1])); in doDraw() 53 matrix.setPolyToPoly(src, dst, count); in doDraw()
|
H A D | perspimages.cpp | 90 SkRect dst = {0, 0, variable 97 canvas->drawImageRect(img, src, dst, sampling, &paint, 101 canvas->drawImageRect(img, src, dst, sampling, &paint,
|
/third_party/skia/bench/ |
H A D | ReadPixBench.cpp | 89 SkPixmap src, dst; variable 91 fDst.peekPixels(&dst); 93 SkPixmapPriv::Orient(dst, src, kTopRight_SkEncodedOrigin);
|
/third_party/vk-gl-cts/framework/delibs/deimage/ |
H A D | deTarga.c | 86 deARGB* dst = (deUint32*)((deUint8*)image->pixels + dstY*image->width*bpp); in deImage_loadTarga() local 96 *dst++ = deARGB_set(r, g, b, 0xFF); in deImage_loadTarga() 107 *dst++ = deARGB_set(r, g, b, a); in deImage_loadTarga()
|
/third_party/vk-gl-cts/framework/platform/ohos/ |
H A D | tcuOhosPlatform.cpp | 140 void OhosPlatform::describePlatform(std::ostream& dst) const in describePlatform() 148 dst << "OS: " << sysInfo.sysname << " " << sysInfo.release << " " << sysInfo.version << "\n"; in describePlatform() 149 dst << "CPU: " << sysInfo.machine << "\n"; in describePlatform()
|
/third_party/vk-gl-cts/framework/referencerenderer/ |
H A D | rrVertexAttrib.hpp | 151 void readVertexAttrib (tcu::Vec4& dst, const VertexAttrib& vertexAttrib, const int instanceNdx, const int vertexNdx, const int baseInstanceNdx = 0); 152 void readVertexAttrib (tcu::IVec4& dst, const VertexAttrib& vertexAttrib, const int instanceNdx, const int vertexNdx, const int baseInstanceNdx = 0); 153 void readVertexAttrib (tcu::UVec4& dst, const VertexAttrib& vertexAttrib, const int instanceNdx, const int vertexNdx, const int baseInstanceNdx = 0);
|
/vendor/hisilicon/hispark_pegasus/demo/coap_demo/ |
H A D | coap_client.c | 91 int CoapClientSendMsg(char* dst) in CoapClientSendMsg() argument 102 printf("[%s][%d] server : %s\n", __FUNCTION__, __LINE__, dst); in CoapClientSendMsg() 104 if (!ipaddr_aton(dst, &(dst_addr.addr))) { in CoapClientSendMsg()
|
/third_party/mesa3d/src/gallium/drivers/r600/ |
H A D | r600_state_common.c | 457 struct r600_textures_info *dst = &rctx->samplers[shader]; in r600_bind_sampler_states() local 476 if (rstate == dst->states.states[i]) { in r600_bind_sampler_states() 482 dst->states.has_bordercolor_mask |= 1 << i; in r600_bind_sampler_states() 484 dst->states.has_bordercolor_mask &= ~(1 << i); in r600_bind_sampler_states() 494 memcpy(dst->states.states, rstates, sizeof(void*) * count); in r600_bind_sampler_states() 495 memset(dst->states.states + count, 0, sizeof(void*) * (NUM_TEX_UNITS - count)); in r600_bind_sampler_states() 497 dst->states.enabled_mask &= ~disable_mask; in r600_bind_sampler_states() 498 dst->states.dirty_mask &= dst->states.enabled_mask; in r600_bind_sampler_states() 499 dst in r600_bind_sampler_states() 652 struct r600_textures_info *dst = &rctx->samplers[shader]; r600_set_sampler_views() local [all...] |
/kernel/linux/common_modules/newip/third_party/linux-5.10/net/newip/ |
H A D | nndisc.c | 286 rt->dst.flags |= DST_HOST; in nndisc_dst_alloc() 287 rt->dst.input = nip_input; in nndisc_dst_alloc() 288 rt->dst.output = nip_output; in nndisc_dst_alloc() 289 atomic_set(&rt->dst.__refcnt, 1); in nndisc_dst_alloc() 291 return &rt->dst; in nndisc_dst_alloc() 305 struct dst_entry *dst = NULL; in nndisc_send_skb() local 315 dst = nndisc_dst_alloc(dev); in nndisc_send_skb() 316 if (!dst) { in nndisc_send_skb() 324 skb_dst_set(skb, dst); in nndisc_send_skb() 391 nip_dbg("dst outpu in nndisc_send_ns() [all...] |
/kernel/linux/linux-5.10/arch/powerpc/mm/ |
H A D | slice.c | 394 static inline void slice_copy_mask(struct slice_mask *dst, in slice_copy_mask() argument 397 dst->low_slices = src->low_slices; in slice_copy_mask() 400 bitmap_copy(dst->high_slices, src->high_slices, SLICE_NUM_HIGH); in slice_copy_mask() 403 static inline void slice_or_mask(struct slice_mask *dst, in slice_or_mask() argument 407 dst->low_slices = src1->low_slices | src2->low_slices; in slice_or_mask() 410 bitmap_or(dst->high_slices, src1->high_slices, src2->high_slices, SLICE_NUM_HIGH); in slice_or_mask() 413 static inline void slice_andnot_mask(struct slice_mask *dst, in slice_andnot_mask() argument 417 dst->low_slices = src1->low_slices & ~src2->low_slices; in slice_andnot_mask() 420 bitmap_andnot(dst->high_slices, src1->high_slices, src2->high_slices, SLICE_NUM_HIGH); in slice_andnot_mask()
|
/kernel/linux/linux-5.10/crypto/ |
H A D | rsa-pkcs1pad.c | 198 sg_copy_to_buffer(req->dst, sg_nents_for_len(req->dst, len), in pkcs1pad_encrypt_sign_complete() 200 sg_copy_from_buffer(req->dst, in pkcs1pad_encrypt_sign_complete() 201 sg_nents_for_len(req->dst, ctx->key_size), in pkcs1pad_encrypt_sign_complete() 266 req->dst, ctx->key_size - 1, req->dst_len); in pkcs1pad_encrypt() 319 sg_copy_from_buffer(req->dst, in pkcs1pad_decrypt_complete() 320 sg_nents_for_len(req->dst, req->dst_len), in pkcs1pad_decrypt_complete() 424 req->dst, ctx->key_size - 1, req->dst_len); in pkcs1pad_sign() 537 if (WARN_ON(req->dst) || in pkcs1pad_verify()
|
/kernel/linux/linux-6.6/arch/arm64/include/asm/ |
H A D | insn.h | 598 u32 aarch64_insn_gen_add_sub_imm(enum aarch64_insn_register dst, 605 u32 aarch64_insn_gen_bitfield(enum aarch64_insn_register dst, 610 u32 aarch64_insn_gen_movewide(enum aarch64_insn_register dst, 614 u32 aarch64_insn_gen_add_sub_shifted_reg(enum aarch64_insn_register dst, 620 u32 aarch64_insn_gen_data1(enum aarch64_insn_register dst, 624 u32 aarch64_insn_gen_data2(enum aarch64_insn_register dst, 629 u32 aarch64_insn_gen_data3(enum aarch64_insn_register dst, 635 u32 aarch64_insn_gen_logical_shifted_reg(enum aarch64_insn_register dst, 641 u32 aarch64_insn_gen_move_reg(enum aarch64_insn_register dst,
|
/kernel/linux/linux-6.6/arch/powerpc/mm/book3s64/ |
H A D | slice.c | 390 static inline void slice_copy_mask(struct slice_mask *dst, in slice_copy_mask() argument 393 dst->low_slices = src->low_slices; in slice_copy_mask() 396 bitmap_copy(dst->high_slices, src->high_slices, SLICE_NUM_HIGH); in slice_copy_mask() 399 static inline void slice_or_mask(struct slice_mask *dst, in slice_or_mask() argument 403 dst->low_slices = src1->low_slices | src2->low_slices; in slice_or_mask() 406 bitmap_or(dst->high_slices, src1->high_slices, src2->high_slices, SLICE_NUM_HIGH); in slice_or_mask() 409 static inline void slice_andnot_mask(struct slice_mask *dst, in slice_andnot_mask() argument 413 dst->low_slices = src1->low_slices & ~src2->low_slices; in slice_andnot_mask() 416 bitmap_andnot(dst->high_slices, src1->high_slices, src2->high_slices, SLICE_NUM_HIGH); in slice_andnot_mask()
|