/third_party/mesa3d/src/gallium/frontends/xa/ |
H A D | xa_composite.c | 143 * If there's no dst alpha channel, adjust the blend op so that we'll treat in blend_for_op() 240 if (!blend_for_op(&blend, comp->op, comp->src, comp->mask, comp->dst)) in xa_composite_check_accelerated() 259 if (!blend_for_op(&blend_opt, comp->op, comp->src, comp->mask, comp->dst)) in bind_composite_blend_state() 385 struct xa_picture *dst_pic = comp->dst; in bind_shaders() 516 struct xa_surface *dst_srf = comp->dst->srf; in xa_composite_prepare() 523 ctx->dst = dst_srf; in xa_composite_prepare()
|
/third_party/mesa3d/src/mesa/state_tracker/ |
H A D | st_texture.c | 347 * Copy the image at level=0 in 'src' to the 'dst' resource at 'dstLevel'. 354 struct pipe_resource *dst, GLuint dstLevel, in st_texture_image_copy() 358 GLuint width = u_minify(dst->width0, dstLevel); in st_texture_image_copy() 359 GLuint height = u_minify(dst->height0, dstLevel); in st_texture_image_copy() 360 GLuint depth = u_minify(dst->depth0, dstLevel); in st_texture_image_copy() 398 dst, in st_texture_image_copy() 353 st_texture_image_copy(struct pipe_context *pipe, struct pipe_resource *dst, GLuint dstLevel, struct pipe_resource *src, GLuint srcLevel, GLuint face) st_texture_image_copy() argument
|
/third_party/mesa3d/src/vulkan/runtime/ |
H A D | vk_drm_syncobj.c | 369 struct vk_sync *dst, in vk_drm_syncobj_move() 372 struct vk_drm_syncobj *dst_sobj = to_drm_syncobj(dst); in vk_drm_syncobj_move() 376 if (!(dst->flags & VK_SYNC_IS_SHARED) && in vk_drm_syncobj_move() 378 result = vk_drm_syncobj_reset(device, dst); in vk_drm_syncobj_move() 393 result = vk_drm_syncobj_import_sync_file(device, dst, fd); in vk_drm_syncobj_move() 368 vk_drm_syncobj_move(struct vk_device *device, struct vk_sync *dst, struct vk_sync *src) vk_drm_syncobj_move() argument
|
/third_party/libfuse/example/ |
H A D | passthrough_fh.c | 435 struct fuse_bufvec dst = FUSE_BUFVEC_INIT(fuse_buf_size(buf)); in xmp_write_buf() local 439 dst.buf[0].flags = FUSE_BUF_IS_FD | FUSE_BUF_FD_SEEK; in xmp_write_buf() 440 dst.buf[0].fd = fi->fh; in xmp_write_buf() 441 dst.buf[0].pos = offset; in xmp_write_buf() 443 return fuse_buf_copy(&dst, buf, FUSE_BUF_SPLICE_NONBLOCK); in xmp_write_buf()
|
/third_party/node/deps/v8/src/execution/ppc/ |
H A D | simulator-ppc.h | 438 T dst; in get_simd_register_bytes() local 439 memcpy(&dst, src, sizeof(T)); in get_simd_register_bytes() 440 return dst; in get_simd_register_bytes() 460 void* dst = bit_cast<uint8_t*>(&simd_registers_[reg]) + from; in set_simd_register_bytes() local 461 memcpy(dst, &value, sizeof(T)); in set_simd_register_bytes()
|
/third_party/mesa3d/src/gallium/drivers/iris/ |
H A D | iris_fence.c | 204 struct pipe_fence_handle **dst, in iris_fence_reference() 207 if (pipe_reference(*dst ? &(*dst)->ref : NULL, in iris_fence_reference() 209 iris_fence_destroy(p_screen, *dst); in iris_fence_reference() 211 *dst = src; in iris_fence_reference() 203 iris_fence_reference(struct pipe_screen *p_screen, struct pipe_fence_handle **dst, struct pipe_fence_handle *src) iris_fence_reference() argument
|
/third_party/mesa3d/src/panfrost/midgard/ |
H A D | compiler.h | 477 nir_dest_index(nir_dest *dst) in nir_dest_index() argument 479 if (dst->is_ssa) in nir_dest_index() 480 return (dst->ssa.index << 1) | 0; in nir_dest_index() 482 assert(!dst->reg.indirect); in nir_dest_index() 483 return (dst->reg.reg->index << 1) | PAN_IS_REG; in nir_dest_index()
|
/third_party/mindspore/test/utils/ |
H A D | common.cpp | 414 void PackNCHWToNHWCFp32(const char *src, char *dst, int batch, int plane, int channel) { in PackNCHWToNHWCFp32() argument 420 dst[nhwc_index * 4] = src[nchw_index * 4]; in PackNCHWToNHWCFp32() 421 dst[nhwc_index * 4 + 1] = src[nchw_index * 4 + 1]; in PackNCHWToNHWCFp32() 422 dst[nhwc_index * 4 + 2] = src[nchw_index * 4 + 2]; in PackNCHWToNHWCFp32() 423 dst[nhwc_index * 4 + 3] = src[nchw_index * 4 + 3]; in PackNCHWToNHWCFp32()
|
/third_party/mesa3d/src/gallium/drivers/r300/compiler/ |
H A D | radeon_dataflow_deadcode.c | 76 struct updatemask_state * dst, in or_updatemasks() 81 dst->Output[i] = a->Output[i] | b->Output[i]; in or_updatemasks() 82 dst->Temporary[i] = a->Temporary[i] | b->Temporary[i]; in or_updatemasks() 86 dst->Special[i] = a->Special[i] | b->Special[i]; in or_updatemasks() 88 dst->Address = a->Address | b->Address; in or_updatemasks() 75 or_updatemasks( struct updatemask_state * dst, struct updatemask_state * a, struct updatemask_state * b) or_updatemasks() argument
|
H A D | radeon_program_print.c | 161 static void rc_print_dst_register(FILE * f, struct rc_dst_register dst) in rc_print_dst_register() argument 163 rc_print_register(f, dst.File, dst.Index, 0); in rc_print_dst_register() 164 if (dst.WriteMask != RC_MASK_XYZW) { in rc_print_dst_register() 166 rc_print_mask(f, dst.WriteMask); in rc_print_dst_register()
|
/third_party/node/deps/openssl/openssl/crypto/sha/asm/ |
H A D | sha1-ppc.pl | 86 my ($dst, $src, $temp_reg) = @_; 88 lwz $dst,$src 92 rotlwi $dst,$temp_reg,8 93 rlwimi $dst,$temp_reg,24,0,7 94 rlwimi $dst,$temp_reg,24,16,23
|
/third_party/vk-gl-cts/executor/ |
H A D | xeTestCase.cpp | 103 void TestNode::getFullPath (std::string& dst) const in getFullPath() 105 dst.clear(); in getFullPath() 124 dst.resize(nameLen); in getFullPath() 131 std::copy(curNode->m_name.begin(), curNode->m_name.end(), dst.begin()+(pos-curNode->m_name.length())); in getFullPath() 137 dst[--pos] = '.'; in getFullPath()
|
/third_party/skia/src/core/ |
H A D | SkSpecialImage.cpp | 202 SkRect dst = SkRect::MakeXYWH(x, y, variable 205 canvas->drawImageRect(fBitmap.asImage(), SkRect::Make(this->subset()), dst, 355 SkRect dst = SkRect::MakeXYWH(x, y, variable 370 canvas->drawImageRect(img, SkRect::Make(this->subset()), dst, 378 bool onGetROPixels(SkBitmap* dst) const override {
|
/third_party/openssl/crypto/sha/asm/ |
H A D | sha1-ppc.pl | 86 my ($dst, $src, $temp_reg) = @_; 88 lwz $dst,$src 92 rotlwi $dst,$temp_reg,8 93 rlwimi $dst,$temp_reg,24,0,7 94 rlwimi $dst,$temp_reg,24,16,23
|
/third_party/skia/third_party/externals/libwebp/src/dsp/ |
H A D | filters_neon.c | 47 uint8_t* dst, int length) { in PredictLine_NEON() 54 vst1q_u8(&dst[i], C); in PredictLine_NEON() 56 for (; i < length; ++i) dst[i] = src[i] - pred[i]; in PredictLine_NEON() 59 // Special case for left-based prediction (when preds==dst-1 or preds==src-1). 60 static void PredictLineLeft_NEON(const uint8_t* src, uint8_t* dst, int length) { in PredictLineLeft_NEON() argument 61 PredictLine_NEON(src, src - 1, dst, length); in PredictLineLeft_NEON() 46 PredictLine_NEON(const uint8_t* src, const uint8_t* pred, uint8_t* dst, int length) PredictLine_NEON() argument
|
/third_party/skia/third_party/externals/freetype/src/base/ |
H A D | md5.c | 252 #define OUT(dst, src) \ 253 (dst)[0] = (unsigned char)(src); \ 254 (dst)[1] = (unsigned char)((src) >> 8); \ 255 (dst)[2] = (unsigned char)((src) >> 16); \ 256 (dst)[3] = (unsigned char)((src) >> 24);
|
/third_party/skia/third_party/externals/tint/tools/src/cmd/roll-release/ |
H A D | main.go | 213 dst := plumbing.NewBranchReferenceName(name) 214 refspec := config.RefSpec(src.Name() + ":" + dst) 348 dst := plumbing.NewRemoteReferenceName("origin", branch) 350 RefSpecs: []config.RefSpec{config.RefSpec("+" + src + ":" + dst)}, 355 ref, err := r.Reference(plumbing.ReferenceName(dst), true)
|
/third_party/vk-gl-cts/modules/glshared/ |
H A D | glsRandomShaderProgram.cpp | 235 float* const dst = packet->outputs[varNdx].getAccess<float>(); in shadeVertices() local 237 dst[0] = access.component(0).asFloat(ndx); in shadeVertices() 238 if (numComponents >= 2) dst[1] = access.component(1).asFloat(ndx); in shadeVertices() 239 if (numComponents >= 3) dst[2] = access.component(2).asFloat(ndx); in shadeVertices() 240 if (numComponents >= 4) dst[3] = access.component(3).asFloat(ndx); in shadeVertices()
|
/foundation/arkui/ace_engine/test/mock/core/rosen/ |
H A D | testing_canvas.h | 111 const TestingImage& image, const TestingRect& dst, const TestingSamplingOptions& sampling) in DrawImageRect() 113 virtual void DrawImageRect(const TestingImage& image, const TestingRect& src, const TestingRect& dst, in DrawImageRect() argument 110 DrawImageRect( const TestingImage& image, const TestingRect& dst, const TestingSamplingOptions& sampling) DrawImageRect() argument
|
/foundation/arkui/ace_engine/frameworks/core/image/apng/ |
H A D | apng_image_player.h | 174 * Copy bitmap to a dst bitmap 177 static bool CopyTo(SkBitmap *dst, const SkBitmap &src); 179 static bool CopyTo(RSBitmap *dst, const RSBitmap &src);
|
/foundation/arkui/ace_engine/frameworks/core/image/ |
H A D | animated_image_player.h | 100 static bool CopyTo(SkBitmap* dst, SkColorType dstColorType, const SkBitmap& src); 103 static bool CopyTo(RSBitmap* dst, const RSBitmap& src);
|
/foundation/graphic/graphic_2d/rosen/modules/render_service/core/pipeline/parallel_render/resource/ |
H A D | rs_upload_resource_thread.h | 54 void SwapCollection(std::vector<sk_sp<GrSurfaceProxy>>& dst, uint32_t overSize) in SwapCollection() argument 59 std::swap(grSurfaceProxyVec_, dst); in SwapCollection()
|
/foundation/graphic/graphic_2d/rosen/modules/render_service_base/include/platform/ohos/overdraw/ |
H A D | rs_canvas_listener.h | 64 const Drawing::Rect& src, const Drawing::Rect& dst, const Drawing::SamplingOptions& sampling, in DrawImageRect() 67 const Drawing::Rect& dst, const Drawing::SamplingOptions& sampling) {}; in DrawImageRect() 63 DrawImageRect(const Drawing::Image& image, const Drawing::Rect& src, const Drawing::Rect& dst, const Drawing::SamplingOptions& sampling, Drawing::SrcRectConstraint constraint = Drawing::SrcRectConstraint::STRICT_SRC_RECT_CONSTRAINT) DrawImageRect() argument 66 DrawImageRect(const Drawing::Image& image, const Drawing::Rect& dst, const Drawing::SamplingOptions& sampling) DrawImageRect() argument
|
H A D | rs_gpu_overdraw_canvas_listener.h | 61 const Drawing::Rect& src, const Drawing::Rect& dst, const Drawing::SamplingOptions& sampling, 64 const Drawing::Rect& dst, const Drawing::SamplingOptions& sampling) override;
|
H A D | rs_cpu_overdraw_canvas_listener.h | 63 const Drawing::Rect& src, const Drawing::Rect& dst, const Drawing::SamplingOptions& sampling, 66 const Drawing::Rect& dst, const Drawing::SamplingOptions& sampling) override;
|