Home
last modified time | relevance | path

Searched refs:dest (Results 2751 - 2775 of 5789) sorted by relevance

1...<<111112113114115116117118119120>>...232

/third_party/skia/third_party/externals/tint/src/inspector/
H A Dinspector.cc53 void AppendResourceBindings(std::vector<ResourceBinding>* dest, in AppendResourceBindings() argument
55 TINT_ASSERT(Inspector, dest); in AppendResourceBindings()
56 if (!dest) { in AppendResourceBindings()
60 dest->reserve(dest->size() + orig.size()); in AppendResourceBindings()
61 dest->insert(dest->end(), orig.begin(), orig.end()); in AppendResourceBindings()
/third_party/python/Modules/
H A Dsha256module.c83 static void SHAcopy(SHAobject *src, SHAobject *dest) in SHAcopy() argument
85 dest->local = src->local; in SHAcopy()
86 dest->digestsize = src->digestsize; in SHAcopy()
87 dest->count_lo = src->count_lo; in SHAcopy()
88 dest->count_hi = src->count_hi; in SHAcopy()
89 memcpy(dest->digest, src->digest, sizeof(src->digest)); in SHAcopy()
90 memcpy(dest->data, src->data, sizeof(src->data)); in SHAcopy()
/third_party/python/Lib/test/
H A Dtest_argparse.py396 argument_signatures = [Sig('-1', dest='one')]
560 argument_signatures = [Sig('--foo-bar'), Sig('--baz', dest='zabbaz')]
828 Sig('-c', action='append', dest='b'),
843 Sig('-c', action='append', dest='b'),
1351 Sig('-4', dest='y', action='store_true'),
1367 Sig('-k4', dest='y', action='store_true'),
1383 Sig('-y', '--yyy', dest='y'),
1402 Sig('-', dest='x', nargs='?', const='badger'),
1403 Sig('+', dest='y', type=int, default=42),
1404 Sig('-+-', dest
[all...]
/base/hiviewdfx/hiview_lite/
H A Dhiview_file.c227 int8 ProcFile(HiviewFile *fp, const char *dest, FileProcMode mode) in ProcFile() argument
240 int32 ret = HIVIEW_FileCopy(fp->path, dest); in ProcFile()
259 int32 ret = HIVIEW_FileMove(fp->path, dest); in ProcFile()
/base/security/device_security_level/oem_property/ohos/common/
H A Dexternal_interface_adapter.c46 static int32_t GenerateFuncParamJson(bool isSelfPk, const char *udidStr, char *dest, uint32_t destMax);
227 static int32_t GenerateFuncParamJson(bool isSelfPk, const char *udidStr, char *dest, uint32_t destMax) in GenerateFuncParamJson() argument
243 if (strcpy_s(dest, destMax, paramsJsonBuffer) != EOK) { in GenerateFuncParamJson()
/foundation/ability/ability_base/interfaces/kits/native/want/include/
H A Dwant_params.h213 bool NewArrayData(IArray *source, sptr<IArray> &dest);
214 bool NewParams(const WantParams &source, WantParams &dest);
215 bool NewFds(const WantParams &source, WantParams &dest);
/foundation/bundlemanager/bundle_framework/interfaces/kits/cj/src/
H A Dcj_zip.cpp273 FilePath dest = destDir; in UnzipWithFilterCallback() local
275 APP_LOGI("srcFile=%{private}s, destFile=%{private}s", src.Value().c_str(), dest.Value().c_str()); in UnzipWithFilterCallback()
288 dest, in UnzipWithFilterCallback()
/foundation/communication/netmanager_ext/services/networksharemanager/src/
H A Drouter_advertisement_daemon.cpp157 bool RouterAdvertisementDaemon::MaybeSendRa(sockaddr_in6 &dest) in MaybeSendRa() argument
168 int ret = sendto(socket_, raPacket_, raPacketLength_, 0, (sockaddr *)&dest, sizeof(dest)); in MaybeSendRa()
/foundation/communication/dhcp/test/unittest/services/dhcp_client/
H A Ddhcp_socket_test.cpp193 packet.udp.dest = 0; in HWTEST_F()
196 packet.udp.dest = htons(BOOTP_CLIENT); in HWTEST_F()
217 packet.udp.dest = htons(BOOTP_CLIENT); in HWTEST_F()
/kernel/linux/linux-5.10/arch/mips/include/asm/netlogic/xlr/
H A Dfmn.h278 unsigned int dest; in nlm_fmn_send() local
294 dest = ((size - 1) << 16) | (code << 8) | stid; in nlm_fmn_send()
302 nlm_msgsnd(dest); in nlm_fmn_send()
/kernel/linux/linux-5.10/arch/powerpc/boot/
H A Ddevtree.c149 static void copy_val(u32 *dest, u32 *src, int naddr) in copy_val() argument
153 memset(dest, 0, pad * 4); in copy_val()
154 memcpy(dest + pad, src, naddr * 4); in copy_val()
/kernel/linux/linux-5.10/arch/mips/kernel/
H A Drelocate.c261 void *dest = &_text; in determine_relocation_address() local
265 return dest; in determine_relocation_address()
274 return RELOCATED(dest); in determine_relocation_address()
/kernel/linux/linux-6.6/arch/mips/kernel/
H A Drelocate.c268 void *dest = &_text; in determine_relocation_address() local
272 return dest; in determine_relocation_address()
281 return RELOCATED(dest); in determine_relocation_address()
/kernel/linux/linux-6.6/arch/powerpc/boot/
H A Ddevtree.c149 static void copy_val(u32 *dest, u32 *src, int naddr) in copy_val() argument
153 memset(dest, 0, pad * 4); in copy_val()
154 memcpy(dest + pad, src, naddr * 4); in copy_val()
/kernel/linux/linux-5.10/include/xen/interface/io/
H A Dring.h214 * to be ineffective where dest is a struct which consists of only bitfields.
216 #define RING_COPY_(type, r, idx, dest) do { \
217 /* Use volatile to force the copy into dest. */ \
218 *(dest) = *(volatile typeof(dest))RING_GET_##type(r, idx); \
/kernel/linux/linux-5.10/include/uapi/linux/
H A Dbcache.h111 static inline void bkey_copy_key(struct bkey *dest, const struct bkey *src) in bkey_copy_key() argument
113 SET_KEY_INODE(dest, KEY_INODE(src)); in bkey_copy_key()
114 SET_KEY_OFFSET(dest, KEY_OFFSET(src)); in bkey_copy_key()
/kernel/linux/linux-5.10/net/ax25/
H A Dax25_out.c32 ax25_cb *ax25_send_frame(struct sk_buff *skb, int paclen, ax25_address *src, ax25_address *dest, ax25_digi *digi, struct net_device *dev) in ax25_send_frame() argument
51 if ((ax25 = ax25_find_cb(src, dest, digi, dev)) != NULL) { in ax25_send_frame()
65 ax25->dest_addr = *dest; in ax25_send_frame()
/kernel/linux/linux-5.10/net/ipv6/
H A Dsyncookies.c105 th->dest, ntohl(th->seq), mssind); in __cookie_v6_init_sequence()
122 th->source, th->dest, seq); in __cookie_v6_check()
185 ireq->ir_num = ntohs(th->dest); in cookie_v6_check()
/kernel/linux/linux-5.10/net/ipv6/netfilter/
H A Dnf_reject_ipv6.c98 tcph->source = oth->dest; in nf_reject_ip6_tcphdr_put()
99 tcph->dest = oth->source; in nf_reject_ip6_tcphdr_put()
171 fl6.fl6_sport = otcph->dest; in nf_send_reset6()
/kernel/linux/linux-5.10/include/linux/ceph/
H A Dosdmap.h91 void ceph_oloc_copy(struct ceph_object_locator *dest,
131 void ceph_oid_copy(struct ceph_object_id *dest,
271 void ceph_osds_copy(struct ceph_osds *dest, const struct ceph_osds *src);
/kernel/linux/linux-6.6/include/linux/ceph/
H A Dosdmap.h91 void ceph_oloc_copy(struct ceph_object_locator *dest,
131 void ceph_oid_copy(struct ceph_object_id *dest,
271 void ceph_osds_copy(struct ceph_osds *dest, const struct ceph_osds *src);
/kernel/linux/linux-6.6/include/xen/interface/io/
H A Dring.h206 * to be ineffective where dest is a struct which consists of only bitfields.
208 #define RING_COPY_(type, r, idx, dest) do { \
209 /* Use volatile to force the copy into dest. */ \
210 *(dest) = *(volatile typeof(dest))RING_GET_##type(r, idx); \
/kernel/linux/linux-6.6/arch/x86/include/asm/
H A Dalternative.h115 extern void *callthunks_translate_call_dest(void *dest);
122 static __always_inline void *callthunks_translate_call_dest(void *dest) in callthunks_translate_call_dest() argument
124 return dest; in callthunks_translate_call_dest()
/kernel/linux/linux-6.6/drivers/md/bcache/
H A Dbcache_ondisk.h112 static inline void bkey_copy_key(struct bkey *dest, const struct bkey *src) in bkey_copy_key() argument
114 SET_KEY_INODE(dest, KEY_INODE(src)); in bkey_copy_key()
115 SET_KEY_OFFSET(dest, KEY_OFFSET(src)); in bkey_copy_key()
/kernel/linux/linux-6.6/tools/testing/selftests/bpf/progs/
H A Dxdpwall.c199 info->dport = bpf_ntohs(tcp->dest); in parse_tcp()
214 info->dport = bpf_ntohs(udp->dest); in parse_udp()
265 if (udp->dest != bpf_htons(6666)) in parse_gue_v6()

Completed in 23 milliseconds

1...<<111112113114115116117118119120>>...232