Searched refs:dst (Results 1 - 25 of 877) sorted by relevance

1234567891011>>

/src/include/ssp/
H A Dstrings.h38 #define bcopy(src, dst, len) \
39 ((__ssp_bos0(dst) != (size_t)-1) ? \
40 __builtin___memmove_chk(dst, src, len, __ssp_bos0(dst)) : \
41 __memmove_ichk(dst, src, len))
42 #define bzero(dst, len) \
43 ((__ssp_bos0(dst) != (size_t)-1) ? \
44 __builtin___memset_chk(dst, 0, len, __ssp_bos0(dst)) : \
45 __memset_ichk(dst,
[all...]
H A Dstring.h50 #define __ssp_bos_check3(fun, dst, src, len) \
51 ((__ssp_bos0(dst) != (size_t)-1) ? \
52 __builtin___ ## fun ## _chk(dst, src, len, __ssp_bos0(dst)) : \
53 __ ## fun ## _ichk(dst, src, len))
55 #define __ssp_bos_check2(fun, dst, src) \
56 ((__ssp_bos0(dst) != (size_t)-1) ? \
57 __builtin___ ## fun ## _chk(dst, src, __ssp_bos0(dst)) : \
58 __ ## fun ## _ichk(dst, sr
[all...]
/src/lib/libc/locale/
H A Dduplocale.c45 struct _locale *dst; local in function:__weak_alias
47 dst = malloc(sizeof(*dst));
48 if (dst != NULL)
49 memcpy(dst, src, sizeof(*dst));
51 return dst;
H A Dfix_grouping.c69 char *src, *dst; local in function:__fix_locale_grouping_str
76 for (src = __UNCONST(str), dst = __UNCONST(str); *src != '\0'; src++) {
83 *dst++ = NBCHAR_MAX;
101 *dst = n;
103 if (*dst == '\0')
104 return (dst == __UNCONST(str)) ? nogrouping : str;
105 dst++;
107 *dst = '\0';
/src/lib/libc/string/
H A Dstpncpy.c42 stpncpy(char * __restrict dst, const char * __restrict src, size_t n) argument
45 for (; n--; dst++, src++) {
46 if (!(*dst = *src)) {
47 char *ret = dst;
49 *++dst = '\0';
53 return (dst);
H A DLint_bcopy.c12 bcopy(const void *src, void *dst, size_t len) argument
H A DLint_memcpy.c12 memcpy(void *dst, const void *src, size_t len) argument
H A DLint_memmove.c12 memmove(void *dst, const void *src, size_t len) argument
H A DLint_strcpy.c12 strcpy(char *dst, const char *src) argument
H A DLint_strncat.c12 strncat(char *dst, const char *src, size_t n) argument
H A DLint_strncpy.c12 strncpy(char *dst, const char *src, size_t n) argument
H A DLint_swab.c12 swab(const void *src, void *dst, ssize_t len) argument
H A Dmempcpy.c34 mempcpy(void *__restrict dst, const void *__restrict src, size_t len) argument
36 return (char *)memcpy(dst, src, len) + len;
H A DLint_memccpy.c12 memccpy(void *dst, const void *src, int c, size_t n) argument
/src/lib/libc/nameser/
H A Dns_netint.c41 uint16_t dst; local in function:ns_get16
43 NS_GET16(dst, src);
44 return dst;
49 u_int32_t dst; local in function:ns_get32
51 NS_GET32(dst, src);
52 return dst;
56 ns_put16(uint16_t src, u_char *dst) { argument
57 NS_PUT16(src, dst);
61 ns_put32(uint32_t src, u_char *dst) { argument
62 NS_PUT32(src, dst);
[all...]
/src/sys/arch/pmax/include/
H A Dlocore.h22 volatile u_short *dst, int length);
23 void CopyFromBuffer(volatile u_short *src, char *dst, int length);
/src/sys/external/bsd/drm2/dist/drm/i915/
H A Di915_memcpy.h17 bool i915_memcpy_from_wc(void *dst, const void *src, unsigned long len);
18 void i915_unaligned_memcpy_from_wc(void *dst, void *src, unsigned long len);
30 #define i915_can_memcpy_from_wc(dst, src, len) \
31 i915_memcpy_from_wc((void *)((unsigned long)(dst) | (unsigned long)(src) | (len)), NULL, 0)
H A Di915_memcpy.c46 static void __memcpy_ntdqa(void *dst, const void *src, unsigned long len) argument
59 :: "r" (src), "r" (dst) : "memory");
61 dst += 64;
67 :: "r" (src), "r" (dst) : "memory");
69 dst += 16;
75 static void __memcpy_ntdqu(void *dst, const void *src, unsigned long len) argument
88 :: "r" (src), "r" (dst) : "memory");
90 dst += 64;
96 :: "r" (src), "r" (dst) : "memory");
98 dst
104 __memcpy_ntdqa(void * dst,const void * src,unsigned long len) argument
105 __memcpy_ntdqu(void * dst,const void * src,unsigned long len) argument
125 i915_memcpy_from_wc(void * dst,const void * src,unsigned long len) argument
150 i915_unaligned_memcpy_from_wc(void * dst,void * src,unsigned long len) argument
[all...]
/src/sys/lib/libkern/
H A Dstrnvisx.c41 strnvisx(char *dst, size_t dlen, const char *src, size_t slen, int flags) argument
60 *dst++ = '\\';
61 *dst++ = ((*src & 0300) >> 6) + '0';
62 *dst++ = ((*src & 0070) >> 3) + '0';
63 *dst++ = ((*src & 0007) >> 0) + '0';
69 *dst++ = '\\';
70 *dst++ = '\\';
75 *dst++ = *src;
81 *dst++ = '\0';
84 *--dst
[all...]
/src/tests/lib/libc/gen/
H A Dt_vis.c101 char dst[] = "fail"; local in function:ATF_TC_BODY
102 strvis(dst, NULL, VIS_SAFE);
103 ATF_REQUIRE(dst[0] == '\0' && dst[1] == 'a');
114 char dst[] = "fail"; local in function:ATF_TC_BODY
115 strvis(dst, "", VIS_SAFE);
116 ATF_REQUIRE(dst[0] == '\0' && dst[1] == 'a');
128 char dst[] = "fail"; local in function:ATF_TC_BODY
131 n = strnvis(dst,
208 char dst[sizeof(src) + 1]; local in function:ATF_TC_BODY
246 char dst[sizeof(src) + 1]; local in function:ATF_TC_BODY
[all...]
/src/lib/libc/inet/
H A Dinet_neta.c46 * inet_neta(src, dst, size)
49 * pointer to dst, or NULL if an error occurred (check errno).
56 inet_neta(u_long src, char *dst, size_t size)
58 char *odst = dst;
62 _DIAGASSERT(dst != NULL);
67 strlcpy(dst, "0.0.0.0", size);
68 return dst;
70 ep = dst + size;
71 if (ep <= dst)
78 advance = snprintf(dst, (size_
[all...]
/src/sys/external/bsd/sljit/dist/sljit_src/
H A DsljitNativeSPARC_32.c29 static sljit_s32 load_immediate(struct sljit_compiler *compiler, sljit_s32 dst, sljit_sw imm) argument
32 return push_inst(compiler, OR | D(dst) | S1(0) | IMM(imm), DR(dst));
34 FAIL_IF(push_inst(compiler, SETHI | D(dst) | ((imm >> 10) & 0x3fffff), DR(dst)));
35 return (imm & 0x3ff) ? push_inst(compiler, OR | D(dst) | S1(dst) | IMM_ARG | (imm & 0x3ff), DR(dst)) : SLJIT_SUCCESS;
41 sljit_s32 dst, sljit_s32 src1, sljit_sw src2)
51 if (dst !
40 emit_single_op(struct sljit_compiler * compiler,sljit_s32 op,sljit_s32 flags,sljit_s32 dst,sljit_s32 src1,sljit_sw src2) argument
144 emit_const(struct sljit_compiler * compiler,sljit_s32 dst,sljit_sw init_value) argument
[all...]
/src/sys/dev/ic/
H A Disp_library.c809 isp_put_marker(ispsoftc_t *isp, isp_marker_t *src, isp_marker_t *dst) argument
812 isp_put_hdr(isp, &src->mrk_header, &dst->mrk_header);
813 ISP_IOXPUT_32(isp, src->mrk_handle, &dst->mrk_handle);
815 ISP_IOXPUT_8(isp, src->mrk_reserved0, &dst->mrk_target);
816 ISP_IOXPUT_8(isp, src->mrk_target, &dst->mrk_reserved0);
818 ISP_IOXPUT_8(isp, src->mrk_reserved0, &dst->mrk_reserved0);
819 ISP_IOXPUT_8(isp, src->mrk_target, &dst->mrk_target);
821 ISP_IOXPUT_16(isp, src->mrk_modifier, &dst->mrk_modifier);
822 ISP_IOXPUT_16(isp, src->mrk_flags, &dst->mrk_flags);
823 ISP_IOXPUT_16(isp, src->mrk_lun, &dst
830 isp_put_marker_24xx(ispsoftc_t * isp,isp_marker_24xx_t * src,isp_marker_24xx_t * dst) argument
850 isp_put_request_t2(ispsoftc_t * isp,ispreqt2_t * src,ispreqt2_t * dst) argument
873 isp_put_request_t2e(ispsoftc_t * isp,ispreqt2e_t * src,ispreqt2e_t * dst) argument
895 isp_put_request_t3(ispsoftc_t * isp,ispreqt3_t * src,ispreqt3_t * dst) argument
919 isp_put_request_t3e(ispsoftc_t * isp,ispreqt3e_t * src,ispreqt3e_t * dst) argument
942 isp_put_extended_request(ispsoftc_t * isp,ispextreq_t * src,ispextreq_t * dst) argument
964 isp_put_request_t7(ispsoftc_t * isp,ispreqt7_t * src,ispreqt7_t * dst) argument
999 isp_put_24xx_tmf(ispsoftc_t * isp,isp24xx_tmf_t * src,isp24xx_tmf_t * dst) argument
1030 isp_put_24xx_abrt(ispsoftc_t * isp,isp24xx_abrt_t * src,isp24xx_abrt_t * dst) argument
1050 isp_put_cont_req(ispsoftc_t * isp,ispcontreq_t * src,ispcontreq_t * dst) argument
1061 isp_put_cont64_req(ispsoftc_t * isp,ispcontreq64_t * src,ispcontreq64_t * dst) argument
1073 isp_get_response(ispsoftc_t * isp,ispstatusreq_t * src,ispstatusreq_t * dst) argument
1094 isp_get_24xx_response(ispsoftc_t * isp,isp24xx_statusreq_t * src,isp24xx_statusreq_t * dst) argument
1119 isp_get_24xx_abrt(ispsoftc_t * isp,isp24xx_abrt_t * src,isp24xx_abrt_t * dst) argument
1175 isp_put_icb(ispsoftc_t * isp,isp_icb_t * src,isp_icb_t * dst) argument
1242 isp_put_icb_2400(ispsoftc_t * isp,isp_icb_2400_t * src,isp_icb_2400_t * dst) argument
1293 isp_put_icb_2400_vpinfo(ispsoftc_t * isp,isp_icb_2400_vpinfo_t * src,isp_icb_2400_vpinfo_t * dst) argument
1300 isp_put_vp_port_info(ispsoftc_t * isp,vp_port_info_t * src,vp_port_info_t * dst) argument
1316 isp_get_vp_port_info(ispsoftc_t * isp,vp_port_info_t * src,vp_port_info_t * dst) argument
1333 isp_put_vp_ctrl_info(ispsoftc_t * isp,vp_ctrl_info_t * src,vp_ctrl_info_t * dst) argument
1351 isp_get_vp_ctrl_info(ispsoftc_t * isp,vp_ctrl_info_t * src,vp_ctrl_info_t * dst) argument
1369 isp_put_vp_modify(ispsoftc_t * isp,vp_modify_t * src,vp_modify_t * dst) argument
1397 isp_get_vp_modify(ispsoftc_t * isp,vp_modify_t * src,vp_modify_t * dst) argument
1425 isp_get_pdb_21xx(ispsoftc_t * isp,isp_pdb_21xx_t * src,isp_pdb_21xx_t * dst) argument
1477 isp_get_pdb_24xx(ispsoftc_t * isp,isp_pdb_24xx_t * src,isp_pdb_24xx_t * dst) argument
1511 isp_get_plogx(ispsoftc_t * isp,isp_plogx_t * src,isp_plogx_t * dst) argument
1529 isp_put_plogx(ispsoftc_t * isp,isp_plogx_t * src,isp_plogx_t * dst) argument
1550 isp_get_ridacq(ispsoftc_t * isp,isp_ridacq_t * src,isp_ridacq_t * dst) argument
1582 isp_get_ct_pt(ispsoftc_t * isp,isp_ct_pt_t * src,isp_ct_pt_t * dst) argument
1609 isp_get_ms(ispsoftc_t * isp,isp_ms_t * src,isp_ms_t * dst) argument
1636 isp_put_ct_pt(ispsoftc_t * isp,isp_ct_pt_t * src,isp_ct_pt_t * dst) argument
1663 isp_put_ms(ispsoftc_t * isp,isp_ms_t * src,isp_ms_t * dst) argument
1694 isp_put_sns_request(ispsoftc_t * isp,sns_screq_t * src,sns_screq_t * dst) argument
1708 isp_put_gid_ft_request(ispsoftc_t * isp,sns_gid_ft_req_t * src,sns_gid_ft_req_t * dst) argument
1725 isp_put_gxn_id_request(ispsoftc_t * isp,sns_gxn_id_req_t * src,sns_gxn_id_req_t * dst) argument
1746 isp_get_sns_response(ispsoftc_t * isp,sns_scrsp_t * src,sns_scrsp_t * dst,int nwords) argument
1765 isp_get_gid_ft_response(ispsoftc_t * isp,sns_gid_ft_rsp_t * src,sns_gid_ft_rsp_t * dst,int nwords) argument
1782 isp_get_gxn_id_response(ispsoftc_t * isp,sns_gxn_id_rsp_t * src,sns_gxn_id_rsp_t * dst) argument
1792 isp_get_gff_id_response(ispsoftc_t * isp,sns_gff_id_rsp_t * src,sns_gff_id_rsp_t * dst) argument
1802 isp_get_ga_nxt_response(ispsoftc_t * isp,sns_ga_nxt_rsp_t * src,sns_ga_nxt_rsp_t * dst) argument
1846 isp_get_els(ispsoftc_t * isp,els_t * src,els_t * dst) argument
1876 isp_put_els(ispsoftc_t * isp,els_t * src,els_t * dst) argument
1914 isp_get_fc_hdr(ispsoftc_t * isp,fc_hdr_t * src,fc_hdr_t * dst) argument
1937 isp_get_fcp_cmnd_iu(ispsoftc_t * isp,fcp_cmnd_iu_t * src,fcp_cmnd_iu_t * dst) argument
1955 isp_put_rft_id(ispsoftc_t * isp,rft_id_t * src,rft_id_t * dst) argument
1969 isp_get_ct_hdr(ispsoftc_t * isp,ct_hdr_t * src,ct_hdr_t * dst) argument
1988 isp_put_ct_hdr(ispsoftc_t * isp,ct_hdr_t * src,ct_hdr_t * dst) argument
2663 isp_put_atio(ispsoftc_t * isp,at_entry_t * src,at_entry_t * dst) argument
2698 isp_get_atio(ispsoftc_t * isp,at_entry_t * src,at_entry_t * dst) argument
2733 isp_put_atio2(ispsoftc_t * isp,at2_entry_t * src,at2_entry_t * dst) argument
2762 isp_put_atio2e(ispsoftc_t * isp,at2e_entry_t * src,at2e_entry_t * dst) argument
2790 isp_get_atio2(ispsoftc_t * isp,at2_entry_t * src,at2_entry_t * dst) argument
2819 isp_get_atio2e(ispsoftc_t * isp,at2e_entry_t * src,at2e_entry_t * dst) argument
2847 isp_get_atio7(ispsoftc_t * isp,at7_entry_t * src,at7_entry_t * dst) argument
2858 isp_put_ctio(ispsoftc_t * isp,ct_entry_t * src,ct_entry_t * dst) argument
2896 isp_get_ctio(ispsoftc_t * isp,ct_entry_t * src,ct_entry_t * dst) argument
2933 isp_put_ctio2(ispsoftc_t * isp,ct2_entry_t * src,ct2_entry_t * dst) argument
2987 isp_put_ctio2e(ispsoftc_t * isp,ct2e_entry_t * src,ct2e_entry_t * dst) argument
3040 isp_put_ctio7(ispsoftc_t * isp,ct7_entry_t * src,ct7_entry_t * dst) argument
3090 isp_get_ctio2(ispsoftc_t * isp,ct2_entry_t * src,ct2_entry_t * dst) argument
3146 isp_get_ctio2e(ispsoftc_t * isp,ct2e_entry_t * src,ct2e_entry_t * dst) argument
3201 isp_get_ctio7(ispsoftc_t * isp,ct7_entry_t * src,ct7_entry_t * dst) argument
3325 isp_put_notify(ispsoftc_t * isp,in_entry_t * src,in_entry_t * dst) argument
3363 isp_get_notify(ispsoftc_t * isp,in_entry_t * src,in_entry_t * dst) argument
3401 isp_put_notify_fc(ispsoftc_t * isp,in_fcentry_t * src,in_fcentry_t * dst) argument
3415 isp_put_notify_fc_e(ispsoftc_t * isp,in_fcentry_e_t * src,in_fcentry_e_t * dst) argument
3428 isp_put_notify_24xx(ispsoftc_t * isp,in_fcentry_24xx_t * src,in_fcentry_24xx_t * dst) argument
3464 isp_get_notify_fc(ispsoftc_t * isp,in_fcentry_t * src,in_fcentry_t * dst) argument
3478 isp_get_notify_fc_e(ispsoftc_t * isp,in_fcentry_e_t * src,in_fcentry_e_t * dst) argument
3491 isp_get_notify_24xx(ispsoftc_t * isp,in_fcentry_24xx_t * src,in_fcentry_24xx_t * dst) argument
3527 isp_put_notify_ack(ispsoftc_t * isp,na_entry_t * src,na_entry_t * dst) argument
3550 isp_get_notify_ack(ispsoftc_t * isp,na_entry_t * src,na_entry_t * dst) argument
3573 isp_put_notify_ack_fc(ispsoftc_t * isp,na_fcentry_t * src,na_fcentry_t * dst) argument
3592 isp_put_notify_ack_fc_e(ispsoftc_t * isp,na_fcentry_e_t * src,na_fcentry_e_t * dst) argument
3610 isp_put_notify_24xx_ack(ispsoftc_t * isp,na_fcentry_24xx_t * src,na_fcentry_24xx_t * dst) argument
3644 isp_get_notify_ack_fc(ispsoftc_t * isp,na_fcentry_t * src,na_fcentry_t * dst) argument
3663 isp_get_notify_ack_fc_e(ispsoftc_t * isp,na_fcentry_e_t * src,na_fcentry_e_t * dst) argument
3681 isp_get_notify_ack_24xx(ispsoftc_t * isp,na_fcentry_24xx_t * src,na_fcentry_24xx_t * dst) argument
3715 isp_get_abts(ispsoftc_t * isp,abts_t * src,abts_t * dst) argument
3749 isp_put_abts_rsp(ispsoftc_t * isp,abts_rsp_t * src,abts_rsp_t * dst) argument
3803 isp_get_abts_rsp(ispsoftc_t * isp,abts_rsp_t * src,abts_rsp_t * dst) argument
[all...]
/src/lib/libc/ssp/
H A Dstpcpy_chk.c46 __stpcpy_chk(char * __restrict dst, const char * __restrict src, size_t slen) argument
53 if (__ssp_overlap(src, dst, len))
56 (void)memcpy(dst, src, len + 1);
57 return dst + len;
/src/sys/external/bsd/compiler_rt/dist/lib/builtins/ppc/
H A Dgcc_qdiv.c15 DD dst = { .ld = a }, src = { .ld = b }; local in function:__gcc_qdiv
17 register double x = dst.s.hi, x1 = dst.s.lo,
27 dst.s.hi = q;
28 dst.s.lo = 0.0;
29 return dst.ld;
34 dst.s.hi = q;
35 dst.s.lo = 0.0;
36 return dst.ld;
51 dst
[all...]

Completed in 15 milliseconds

1234567891011>>