/third_party/node/deps/v8/third_party/zlib/ |
H A D | crc32.c | 517 ZLIB_INTERNAL void copy_with_crc(z_streamp strm, Bytef *dst, long size) in copy_with_crc() argument 521 crc_fold_copy(strm->state, dst, strm->next_in, size); in copy_with_crc() 525 zmemcpy(dst, strm->next_in, size); in copy_with_crc() 526 strm->adler = crc32(strm->adler, dst, size); in copy_with_crc()
|
/third_party/musl/src/network/ |
H A D | getifaddrs.c | 63 uint8_t *dst; in copy_addr() local 68 dst = (uint8_t*) &sa->v4.sin_addr; in copy_addr() 72 dst = (uint8_t*) &sa->v6.sin6_addr; in copy_addr() 82 memcpy(dst, addr, len); in copy_addr()
|
/third_party/musl/src/signal/liteos_a/ |
H A D | sigaction.c | 163 static void __sig_copy_sigaction(sigaction_t *src, sigaction_t *dst) in __sig_copy_sigaction() argument 165 dst->sa_handler = src->sa_handler; in __sig_copy_sigaction() 166 dst->sa_mask = src->sa_mask; in __sig_copy_sigaction() 167 dst->sa_flags = src->sa_flags; in __sig_copy_sigaction()
|
/third_party/musl/porting/liteos_a/user/src/signal/ |
H A D | sigaction.c | 148 static void __sig_copy_sigaction(sigaction_t *src, sigaction_t *dst) in __sig_copy_sigaction() argument 150 dst->sa_handler = src->sa_handler; in __sig_copy_sigaction() 151 dst->sa_mask = src->sa_mask; in __sig_copy_sigaction() 152 dst->sa_flags = src->sa_flags; in __sig_copy_sigaction()
|
/third_party/libinput/src/ |
H A D | util-strings.h | 473 char *dst = sanitized; in str_sanitize() local 477 *dst++ = '%'; in str_sanitize() 478 *dst++ = *src++; in str_sanitize() 480 *dst = '\0'; in str_sanitize()
|
/third_party/ltp/tools/sparse/sparse-src/ |
H A D | storage.c | 198 static struct storage * combine_storage(struct storage *src, struct storage *dst) in combine_storage() argument 202 /* Remove uses of "src_storage", replace with "dst" */ in combine_storage() 205 *usep = dst; in combine_storage() 206 add_ptr_list(&dst->users, usep); in combine_storage() 212 return dst; in combine_storage()
|
/third_party/node/deps/v8/src/objects/ |
H A D | osr-optimized-code-cache.cc | 268 void OSROptimizedCodeCache::MoveEntry(int src, int dst, Isolate* isolate) { in MoveEntry() argument 269 Set(dst + OSRCodeCacheConstants::kSharedOffset, in MoveEntry() 271 Set(dst + OSRCodeCacheConstants::kCachedCodeOffset, in MoveEntry() 273 Set(dst + OSRCodeCacheConstants::kOsrIdOffset, Get(src + kOsrIdOffset)); in MoveEntry()
|
/third_party/mesa3d/src/gallium/drivers/r600/sb/ |
H A D | sb_ra_checker.cpp | 139 check_src_vec(n, 0, n->dst, false); in check_op_src() 147 for (vvec::iterator I = n->dst.begin(), E = n->dst.end(); I != E; ++I) { in process_op_dst() 217 prev_dst[slot] = a->dst[0]; in check_alu_group()
|
/third_party/mesa3d/src/gallium/auxiliary/util/ |
H A D | u_debug_flush.c | 126 debug_flush_buf_reference(struct debug_flush_buf **dst, in debug_flush_buf_reference() argument 129 struct debug_flush_buf *fbuf = *dst; in debug_flush_buf_reference() 131 if (pipe_reference(&(*dst)->reference, &src->reference)) { in debug_flush_buf_reference() 140 *dst = src; in debug_flush_buf_reference()
|
/third_party/mesa3d/src/gallium/drivers/r300/compiler/ |
H A D | radeon_vert_fc.c | 52 struct rc_dst_register * dst, in build_pred_dst() 55 dst->WriteMask = RC_MASK_W; in build_pred_dst() 56 dst->File = RC_FILE_TEMPORARY; in build_pred_dst() 57 dst->Index = fc_state->PredicateReg; in build_pred_dst() 51 build_pred_dst( struct rc_dst_register * dst, struct vert_fc_state * fc_state) build_pred_dst() argument
|
/third_party/node/deps/openssl/openssl/providers/implementations/kdfs/ |
H A D | krb5kdf.c | 96 static int krb5kdf_set_membuf(unsigned char **dst, size_t *dst_len, in krb5kdf_set_membuf() argument 99 OPENSSL_clear_free(*dst, *dst_len); in krb5kdf_set_membuf() 100 *dst = NULL; in krb5kdf_set_membuf() 102 return OSSL_PARAM_get_octet_string(p, (void **)dst, 0, dst_len); in krb5kdf_set_membuf()
|
H A D | sshkdf.c | 90 static int sshkdf_set_membuf(unsigned char **dst, size_t *dst_len, in sshkdf_set_membuf() argument 93 OPENSSL_clear_free(*dst, *dst_len); in sshkdf_set_membuf() 94 *dst = NULL; in sshkdf_set_membuf() 96 return OSSL_PARAM_get_octet_string(p, (void **)dst, 0, dst_len); in sshkdf_set_membuf()
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/geometry/ |
H A D | vktGeometryTestsUtil.cpp | 439 deUint8* dst = &dstBase[offset]; in fillBuffer() local 442 deMemcpy(&dst[pixelPos], src, colorPixelSize); in fillBuffer() 458 deUint8* dst = &dstBase[offset]; in fillBuffer() local 461 deMemcpy(&dst[pixelPos], src, colorPixelSize); in fillBuffer()
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/sc/ |
H A D | vktPipelineCacheSCTests.cpp | 61 void createShaders (SourceCollections& dst, TestParams params) in createShaders() argument 75 dst.glslSources.add(name.str()) << glu::VertexSource(code.str()); in createShaders() 89 dst.glslSources.add(name.str()) << glu::FragmentSource(code.str()); in createShaders() 102 dst.glslSources.add(name.str()) << glu::ComputeSource(code.str()); in createShaders()
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/geometry/ |
H A D | vktGeometryTestsUtil.cpp | 439 deUint8* dst = &dstBase[offset]; in fillBuffer() local 442 deMemcpy(&dst[pixelPos], src, colorPixelSize); in fillBuffer() 458 deUint8* dst = &dstBase[offset]; in fillBuffer() local 461 deMemcpy(&dst[pixelPos], src, colorPixelSize); in fillBuffer()
|
/third_party/skia/src/codec/ |
H A D | SkIcoCodec.cpp | 295 void* dst, size_t dstRowBytes, in onGetPixels() 312 result = embeddedCodec->getPixels(dstInfo, dst, dstRowBytes, &opts); in onGetPixels() 356 int SkIcoCodec::onGetScanlines(void* dst, int count, size_t rowBytes) { in onGetScanlines() argument 358 return fCurrCodec->getScanlines(dst, count, rowBytes); in onGetScanlines() 294 onGetPixels(const SkImageInfo& dstInfo, void* dst, size_t dstRowBytes, const Options& opts, int* rowsDecoded) onGetPixels() argument
|
/third_party/skia/src/core/ |
H A D | SkLineClipper.cpp | 91 SkPoint dst[2]) { in IntersectLine() 96 if (src != dst) { in IntersectLine() 97 memcpy(dst, src, 2 * sizeof(SkPoint)); in IntersectLine() 158 memcpy(dst, tmp, sizeof(tmp)); in IntersectLine() 90 IntersectLine(const SkPoint src[2], const SkRect& clip, SkPoint dst[2]) IntersectLine() argument
|
/third_party/skia/src/gpu/v1/ |
H A D | Device_v1.h | 122 void drawImageRect(const SkImage*, const SkRect* src, const SkRect& dst, 126 const SkRect& dst, SkFilterMode, const SkPaint&) override; 205 // If not null, dstClip must be contained inside dst and will also respect the edge AA flags. 207 void drawImageQuad(const SkImage*, const SkRect* src, const SkRect* dst, 217 const SkRect& dst,
|
/third_party/skia/src/gpu/mtl/ |
H A D | GrMtlGpu.h | 81 void copySurfaceAsResolve(GrSurface* dst, GrSurface* src); 83 void copySurfaceAsBlit(GrSurface* dst, GrSurface* src, 87 bool onCopySurface(GrSurface* dst, GrSurface* src, const SkIRect& srcRect, 112 GrMtlRenderCommandEncoder* loadMSAAFromResolve(GrAttachment* dst,
|
/third_party/skia/src/gpu/d3d/ |
H A D | GrD3DGpu.h | 206 bool onCopySurface(GrSurface* dst, GrSurface* src, const SkIRect& srcRect, 259 void copySurfaceAsCopyTexture(GrSurface* dst, GrSurface* src, GrD3DTextureResource* dstResource, 263 void copySurfaceAsResolve(GrSurface* dst, GrSurface* src, const SkIRect& srcRect, 265 void resolveTexture(GrSurface* dst, int32_t dstX, int32_t dstY,
|
/third_party/skia/src/effects/imagefilters/ |
H A D | SkDropShadowImageFilter.cpp | 178 SkIRect dst = src.makeOffset(SkScalarCeilToInt(offsetVec.x()), in onFilterNodeBounds() local 182 dst.outset( in onFilterNodeBounds() 186 dst.join(src); in onFilterNodeBounds() 188 return dst; in onFilterNodeBounds()
|
/third_party/openssl/providers/implementations/kdfs/ |
H A D | krb5kdf.c | 96 static int krb5kdf_set_membuf(unsigned char **dst, size_t *dst_len, in krb5kdf_set_membuf() argument 99 OPENSSL_clear_free(*dst, *dst_len); in krb5kdf_set_membuf() 100 *dst = NULL; in krb5kdf_set_membuf() 102 return OSSL_PARAM_get_octet_string(p, (void **)dst, 0, dst_len); in krb5kdf_set_membuf()
|
H A D | sshkdf.c | 90 static int sshkdf_set_membuf(unsigned char **dst, size_t *dst_len, in sshkdf_set_membuf() argument 93 OPENSSL_clear_free(*dst, *dst_len); in sshkdf_set_membuf() 94 *dst = NULL; in sshkdf_set_membuf() 96 return OSSL_PARAM_get_octet_string(p, (void **)dst, 0, dst_len); in sshkdf_set_membuf()
|
/third_party/skia/third_party/externals/libwebp/src/dsp/ |
H A D | upsampling_sse2.c | 219 uint8_t* dst, int len); \ 221 uint8_t* dst, int len) { \ 225 CALL(y + i, u + i, v + i, dst + i * (XSTEP)); \ 228 CALL_C(y + i, u + i, v + i, dst + i * (XSTEP), len - i); \
|
H A D | upsampling_sse41.c | 206 uint8_t* dst, int len); \ 208 uint8_t* dst, int len) { \ 212 CALL(y + i, u + i, v + i, dst + i * (XSTEP)); \ 215 CALL_C(y + i, u + i, v + i, dst + i * (XSTEP), len - i); \
|