Searched refs:src (Results 26 - 50 of 1856) sorted by relevance

1234567891011>>

/freebsd-10-stable/contrib/openbsm/compat/
H A Dstrlcpy.h31 * Copy src to string dst of size siz. At most siz-1 characters
33 * Returns strlen(src); if retval >= siz, truncation occurred.
36 strlcpy(dst, src, siz)
38 const char *src; variable
42 const char *s = src;
53 /* Not enough room in dst, add NUL and traverse rest of src */
61 return(s - src - 1); /* count does not include NUL */
H A Dstrlcat.h31 * Appends src to string dst of size siz (unlike strncat, siz is the
34 * Returns strlen(src) + MIN(siz, strlen(initial dst)).
38 strlcat(dst, src, siz)
40 const char *src; variable
44 const char *s = src;
65 return(dlen + (s - src)); /* count does not include NUL */
/freebsd-10-stable/usr.sbin/ctm/mkCTM/
H A Dctm_conf.src-cur3 set CTMname src-cur
4 set CTMref /c/src
7 set CTMmail ctm-src-cur-fast@freebsd.org
8 set CTMqueue /home/ctm/queue/ctm-src-cur
9 set CTMqueuemail ctm-src-cur@freebsd.org
/freebsd-10-stable/lib/libstand/
H A Dinet_ntoa.c53 unsigned char *src = (unsigned char *) ∈ local
55 sprintf(ret, fmt, src[0], src[1], src[2], src[3]);
/freebsd-10-stable/sys/cddl/boot/zfs/
H A Dzle.c8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
37 unsigned char *src = s_start; local
39 unsigned char *s_end = src + s_len;
42 while (src < s_end && dst < d_end) {
43 int len = 1 + *src++;
46 *dst++ = *src++;
/freebsd-10-stable/contrib/sendmail/include/sm/
H A Dvarargs.h30 # define SM_VA_COPY(dst, src) va_copy((dst), (src))
32 # define SM_VA_COPY(dst, src) __va_copy((dst), (src))
34 # define SM_VA_COPY(dst, src) memcpy(&(dst), &(src), sizeof((dst)))
/freebsd-10-stable/crypto/heimdal/lib/roken/
H A Dstrlcpy.c42 strlcpy (char *dst, const char *src, size_t dst_cch) argument
47 e = strncpy_s(dst, dst_cch, src, _TRUNCATE);
49 return strlen (src);
55 strlcpy (char *dst, const char *src, size_t dst_sz) argument
60 if ((*dst++ = *src++) == '\0')
68 return n + strlen (src);
/freebsd-10-stable/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/
H A Dlzjb.c8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
53 uchar_t *src = s_start; local
62 while (src < (uchar_t *)s_start + s_len) {
70 if (src > (uchar_t *)s_start + s_len - MATCH_MAX) {
71 *dst++ = *src++;
74 hash = (src[0] << 16) + (src[1] << 8) + src[2];
78 offset = (intptr_t)(src
102 uchar_t *src = s_start; local
[all...]
/freebsd-10-stable/contrib/subversion/subversion/include/
H A Dsvn_utf.h80 /** Set @a *dest to a utf8-encoded stringbuf from native stringbuf @a src;
85 const svn_stringbuf_t *src,
89 /** Set @a *dest to a utf8-encoded string from native string @a src; allocate
94 const svn_string_t *src,
98 /** Set @a *dest to a utf8-encoded C string from native C string @a src;
103 const char *src,
108 * string @a src; allocate @a *dest in @a pool.
114 const char *src,
127 const char *src,
133 /** Set @a *dest to a natively-encoded stringbuf from utf8 stringbuf @a src;
[all...]
/freebsd-10-stable/contrib/gcc/config/
H A Dmemcpy.c5 memcpy (void *dest, const void *src, size_t len) argument
8 const char *s = src;
/freebsd-10-stable/contrib/tcpdump/missing/
H A Dinet_pton.c51 inet_pton(int af, const char *src, void *dst) argument
57 return inet_aton (src, dst);
/freebsd-10-stable/sys/boot/arm/at91/libat91/
H A Dmemcpy.c32 memcpy(void *dst, const void *src, unsigned len) argument
34 const char *s = src;
/freebsd-10-stable/sys/libkern/
H A Dmemmove.c33 memmove(void *dest, const void *src, size_t n) argument
36 bcopy(src, dest, n);
/freebsd-10-stable/usr.bin/xlint/common/
H A Dparam.h81 #define STRUCT_ASSIGN(dest, src) (dest) = (src)
/freebsd-10-stable/gnu/usr.bin/groff/
H A DMakefile3 SUBDIR= contrib doc font man src tmac
6 SUBDIR_DEPEND_${subdir}= src
/freebsd-10-stable/usr.bin/vgrind/
H A DMakefile7 FILES= vgrindefs.src vgrindefs.src.db tmac.vgrind
8 FILESNAME_vgrindefs.src= vgrindefs
9 FILESNAME_vgrindefs.src.db= vgrindefs.db
19 CLEANFILES= vgrindefs.src.db
30 vgrindefs.src.db: vgrindefs.src
31 cap_mkdb ${CAP_MKDB_ENDIAN} -f vgrindefs.src ${.ALLSRC}
/freebsd-10-stable/contrib/bmake/
H A Dstrlcpy.c31 * Copy src to string dst of size siz. At most siz-1 characters
33 * Returns strlen(src); if retval >= siz, truncation occurred.
36 strlcpy(char *dst, const char *src, size_t siz) argument
39 const char *s = src;
42 if (!dst || !src)
53 /* Not enough room in dst, add NUL and traverse rest of src */
61 return(s - src - 1); /* count does not include NUL */
/freebsd-10-stable/contrib/ncurses/ncurses/tinfo/
H A Ddoalloc.c62 _nc_strdup(const char *src) argument
65 if (src != 0) {
66 dst = typeMalloc(char, strlen(src) + 1);
68 (void) strcpy(dst, src);
/freebsd-10-stable/sys/ofed/include/rdma/
H A Dib_marshall.h42 struct ib_qp_attr *src);
45 struct ib_ah_attr *src);
48 struct ib_sa_path_rec *src);
51 struct ib_user_path_rec *src);
/freebsd-10-stable/contrib/ntp/sntp/libevent/
H A Dstrlcpy.c43 * Copy src to string dst of size siz. At most siz-1 characters
45 * Returns strlen(src); if retval >= siz, truncation occurred.
48 event_strlcpy_(dst, src, siz)
50 const char *src;
54 register const char *s = src;
65 /* Not enough room in dst, add NUL and traverse rest of src */
73 return (s - src - 1); /* count does not include NUL */
/freebsd-10-stable/share/zoneinfo/tests/
H A Dzoneinfo_common.sh38 while read src dest; do
39 verify_Link $src $dest
45 local src dest
47 old_path=$ZONEINFO_DIR/$src
/freebsd-10-stable/sys/dev/isp/
H A Disp_library.c764 isp_put_marker(ispsoftc_t *isp, isp_marker_t *src, isp_marker_t *dst) argument
767 isp_put_hdr(isp, &src->mrk_header, &dst->mrk_header);
768 ISP_IOXPUT_32(isp, src->mrk_handle, &dst->mrk_handle);
770 ISP_IOXPUT_8(isp, src->mrk_reserved0, &dst->mrk_target);
771 ISP_IOXPUT_8(isp, src->mrk_target, &dst->mrk_reserved0);
773 ISP_IOXPUT_8(isp, src->mrk_reserved0, &dst->mrk_reserved0);
774 ISP_IOXPUT_8(isp, src->mrk_target, &dst->mrk_target);
776 ISP_IOXPUT_16(isp, src->mrk_modifier, &dst->mrk_modifier);
777 ISP_IOXPUT_16(isp, src->mrk_flags, &dst->mrk_flags);
778 ISP_IOXPUT_16(isp, src
785 isp_put_marker_24xx(ispsoftc_t *isp, isp_marker_24xx_t *src, isp_marker_24xx_t *dst) argument
805 isp_put_request_t2(ispsoftc_t *isp, ispreqt2_t *src, ispreqt2_t *dst) argument
829 isp_put_request_t2e(ispsoftc_t *isp, ispreqt2e_t *src, ispreqt2e_t *dst) argument
852 isp_put_request_t3(ispsoftc_t *isp, ispreqt3_t *src, ispreqt3_t *dst) argument
877 isp_put_request_t3e(ispsoftc_t *isp, ispreqt3e_t *src, ispreqt3e_t *dst) argument
901 isp_put_extended_request(ispsoftc_t *isp, ispextreq_t *src, ispextreq_t *dst) argument
923 isp_put_request_t7(ispsoftc_t *isp, ispreqt7_t *src, ispreqt7_t *dst) argument
958 isp_put_24xx_tmf(ispsoftc_t *isp, isp24xx_tmf_t *src, isp24xx_tmf_t *dst) argument
989 isp_put_24xx_abrt(ispsoftc_t *isp, isp24xx_abrt_t *src, isp24xx_abrt_t *dst) argument
1010 isp_put_cont_req(ispsoftc_t *isp, ispcontreq_t *src, ispcontreq_t *dst) argument
1021 isp_put_cont64_req(ispsoftc_t *isp, ispcontreq64_t *src, ispcontreq64_t *dst) argument
1033 isp_get_response(ispsoftc_t *isp, ispstatusreq_t *src, ispstatusreq_t *dst) argument
1054 isp_get_cont_response(ispsoftc_t *isp, ispstatus_cont_t *src, ispstatus_cont_t *dst) argument
1073 isp_get_24xx_response(ispsoftc_t *isp, isp24xx_statusreq_t *src, isp24xx_statusreq_t *dst) argument
1098 isp_get_24xx_abrt(ispsoftc_t *isp, isp24xx_abrt_t *src, isp24xx_abrt_t *dst) argument
1155 isp_put_icb(ispsoftc_t *isp, isp_icb_t *src, isp_icb_t *dst) argument
1222 isp_put_icb_2400(ispsoftc_t *isp, isp_icb_2400_t *src, isp_icb_2400_t *dst) argument
1280 isp_put_icb_2400_vpinfo(ispsoftc_t *isp, isp_icb_2400_vpinfo_t *src, isp_icb_2400_vpinfo_t *dst) argument
1287 isp_put_vp_port_info(ispsoftc_t *isp, vp_port_info_t *src, vp_port_info_t *dst) argument
1303 isp_get_vp_port_info(ispsoftc_t *isp, vp_port_info_t *src, vp_port_info_t *dst) argument
1320 isp_put_vp_ctrl_info(ispsoftc_t *isp, vp_ctrl_info_t *src, vp_ctrl_info_t *dst) argument
1339 isp_get_vp_ctrl_info(ispsoftc_t *isp, vp_ctrl_info_t *src, vp_ctrl_info_t *dst) argument
1358 isp_put_vp_modify(ispsoftc_t *isp, vp_modify_t *src, vp_modify_t *dst) argument
1386 isp_get_vp_modify(ispsoftc_t *isp, vp_modify_t *src, vp_modify_t *dst) argument
1414 isp_get_pdb_21xx(ispsoftc_t *isp, isp_pdb_21xx_t *src, isp_pdb_21xx_t *dst) argument
1466 isp_get_pdb_24xx(ispsoftc_t *isp, isp_pdb_24xx_t *src, isp_pdb_24xx_t *dst) argument
1496 isp_get_pnhle_21xx(ispsoftc_t *isp, isp_pnhle_21xx_t *src, isp_pnhle_21xx_t *dst) argument
1504 isp_get_pnhle_23xx(ispsoftc_t *isp, isp_pnhle_23xx_t *src, isp_pnhle_23xx_t *dst) argument
1513 isp_get_pnhle_24xx(ispsoftc_t *isp, isp_pnhle_24xx_t *src, isp_pnhle_24xx_t *dst) argument
1523 isp_get_pnnle(ispsoftc_t *isp, isp_pnnle_t *src, isp_pnnle_t *dst) argument
1538 isp_get_plogx(ispsoftc_t *isp, isp_plogx_t *src, isp_plogx_t *dst) argument
1556 isp_put_plogx(ispsoftc_t *isp, isp_plogx_t *src, isp_plogx_t *dst) argument
1577 isp_get_ridacq(ispsoftc_t *isp, isp_ridacq_t *src, isp_ridacq_t *dst) argument
1602 isp_get_ct_pt(ispsoftc_t *isp, isp_ct_pt_t *src, isp_ct_pt_t *dst) argument
1629 isp_get_ms(ispsoftc_t *isp, isp_ms_t *src, isp_ms_t *dst) argument
1656 isp_put_ct_pt(ispsoftc_t *isp, isp_ct_pt_t *src, isp_ct_pt_t *dst) argument
1683 isp_put_ms(ispsoftc_t *isp, isp_ms_t *src, isp_ms_t *dst) argument
1714 isp_put_sns_request(ispsoftc_t *isp, sns_screq_t *src, sns_screq_t *dst) argument
1728 isp_put_gid_ft_request(ispsoftc_t *isp, sns_gid_ft_req_t *src, sns_gid_ft_req_t *dst) argument
1745 isp_put_gxn_id_request(ispsoftc_t *isp, sns_gxn_id_req_t *src, sns_gxn_id_req_t *dst) argument
1766 isp_get_sns_response(ispsoftc_t *isp, sns_scrsp_t *src, sns_scrsp_t *dst, int nwords) argument
1785 isp_get_gid_ft_response(ispsoftc_t *isp, sns_gid_ft_rsp_t *src, sns_gid_ft_rsp_t *dst, int nwords) argument
1802 isp_get_gxn_id_response(ispsoftc_t *isp, sns_gxn_id_rsp_t *src, sns_gxn_id_rsp_t *dst) argument
1812 isp_get_gff_id_response(ispsoftc_t *isp, sns_gff_id_rsp_t *src, sns_gff_id_rsp_t *dst) argument
1822 isp_get_ga_nxt_response(ispsoftc_t *isp, sns_ga_nxt_rsp_t *src, sns_ga_nxt_rsp_t *dst) argument
1866 isp_get_els(ispsoftc_t *isp, els_t *src, els_t *dst) argument
1896 isp_put_els(ispsoftc_t *isp, els_t *src, els_t *dst) argument
1934 isp_get_fc_hdr(ispsoftc_t *isp, fc_hdr_t *src, fc_hdr_t *dst) argument
1957 isp_put_fc_hdr(ispsoftc_t *isp, fc_hdr_t *src, fc_hdr_t *dst) argument
1980 isp_get_fcp_cmnd_iu(ispsoftc_t *isp, fcp_cmnd_iu_t *src, fcp_cmnd_iu_t *dst) argument
1998 isp_put_rft_id(ispsoftc_t *isp, rft_id_t *src, rft_id_t *dst) argument
2012 isp_put_rspn_id(ispsoftc_t *isp, rspn_id_t *src, rspn_id_t *dst) argument
2023 isp_put_rff_id(ispsoftc_t *isp, rff_id_t *src, rff_id_t *dst) argument
2037 isp_put_rsnn_nn(ispsoftc_t *isp, rsnn_nn_t *src, rsnn_nn_t *dst) argument
2049 isp_get_ct_hdr(ispsoftc_t *isp, ct_hdr_t *src, ct_hdr_t *dst) argument
2068 isp_put_ct_hdr(ispsoftc_t *isp, ct_hdr_t *src, ct_hdr_t *dst) argument
2087 isp_put_fcp_rsp_iu(ispsoftc_t *isp, fcp_rsp_iu_t *src, fcp_rsp_iu_t *dst) argument
2467 isp_put_atio2(ispsoftc_t *isp, at2_entry_t *src, at2_entry_t *dst) argument
2496 isp_put_atio2e(ispsoftc_t *isp, at2e_entry_t *src, at2e_entry_t *dst) argument
2524 isp_get_atio2(ispsoftc_t *isp, at2_entry_t *src, at2_entry_t *dst) argument
2553 isp_get_atio2e(ispsoftc_t *isp, at2e_entry_t *src, at2e_entry_t *dst) argument
2581 isp_get_atio7(ispsoftc_t *isp, at7_entry_t *src, at7_entry_t *dst) argument
2592 isp_put_ctio2(ispsoftc_t *isp, ct2_entry_t *src, ct2_entry_t *dst) argument
2652 isp_put_ctio2e(ispsoftc_t *isp, ct2e_entry_t *src, ct2e_entry_t *dst) argument
2711 isp_put_ctio7(ispsoftc_t *isp, ct7_entry_t *src, ct7_entry_t *dst) argument
2762 isp_get_ctio2(ispsoftc_t *isp, ct2_entry_t *src, ct2_entry_t *dst) argument
2824 isp_get_ctio2e(ispsoftc_t *isp, ct2e_entry_t *src, ct2e_entry_t *dst) argument
2885 isp_get_ctio7(ispsoftc_t *isp, ct7_entry_t *src, ct7_entry_t *dst) argument
2937 isp_put_notify_fc(ispsoftc_t *isp, in_fcentry_t *src, in_fcentry_t *dst) argument
2951 isp_put_notify_fc_e(ispsoftc_t *isp, in_fcentry_e_t *src, in_fcentry_e_t *dst) argument
2964 isp_put_notify_24xx(ispsoftc_t *isp, in_fcentry_24xx_t *src, in_fcentry_24xx_t *dst) argument
3000 isp_get_notify_fc(ispsoftc_t *isp, in_fcentry_t *src, in_fcentry_t *dst) argument
3014 isp_get_notify_fc_e(ispsoftc_t *isp, in_fcentry_e_t *src, in_fcentry_e_t *dst) argument
3027 isp_get_notify_24xx(ispsoftc_t *isp, in_fcentry_24xx_t *src, in_fcentry_24xx_t *dst) argument
3063 isp_put_notify_ack_fc(ispsoftc_t *isp, na_fcentry_t *src, na_fcentry_t *dst) argument
3082 isp_put_notify_ack_fc_e(ispsoftc_t *isp, na_fcentry_e_t *src, na_fcentry_e_t *dst) argument
3100 isp_put_notify_24xx_ack(ispsoftc_t *isp, na_fcentry_24xx_t *src, na_fcentry_24xx_t *dst) argument
3134 isp_get_notify_ack_fc(ispsoftc_t *isp, na_fcentry_t *src, na_fcentry_t *dst) argument
3153 isp_get_notify_ack_fc_e(ispsoftc_t *isp, na_fcentry_e_t *src, na_fcentry_e_t *dst) argument
3171 isp_get_notify_ack_24xx(ispsoftc_t *isp, na_fcentry_24xx_t *src, na_fcentry_24xx_t *dst) argument
3205 isp_get_abts(ispsoftc_t *isp, abts_t *src, abts_t *dst) argument
3239 isp_put_abts_rsp(ispsoftc_t *isp, abts_rsp_t *src, abts_rsp_t *dst) argument
3293 isp_get_abts_rsp(ispsoftc_t *isp, abts_rsp_t *src, abts_rsp_t *dst) argument
[all...]
/freebsd-10-stable/contrib/file/src/
H A Dstrlcpy.c26 * Copy src to string dst of size siz. At most siz-1 characters
28 * Returns strlen(src); if retval >= siz, truncation occurred.
31 strlcpy(char *dst, const char *src, size_t siz) argument
34 const char *s = src;
45 /* Not enough room in dst, add NUL and traverse rest of src */
53 return(s - src - 1); /* count does not include NUL */
/freebsd-10-stable/contrib/gcclibs/libiberty/
H A Dstpcpy.c23 @deftypefn Supplemental char* stpcpy (char *@var{dst}, const char *@var{src})
25 Copies the string @var{src} into @var{dst}. Returns a pointer to
26 @var{dst} + strlen(@var{src}).
39 stpcpy (char *dst, const char *src) argument
41 const size_t len = strlen (src);
42 return (char *) memcpy (dst, src, len + 1) + len;
H A Dstpncpy.c23 @deftypefn Supplemental char* stpncpy (char *@var{dst}, const char *@var{src}, size_t @var{len})
25 Copies the string @var{src} into @var{dst}, copying exactly @var{len}
26 and padding with zeros if necessary. If @var{len} < strlen(@var{src})
28 strlen(@var{src}).
41 stpncpy (char *dst, const char *src, size_t len) argument
43 size_t n = strlen (src);
46 return strncpy (dst, src, len) + n;

Completed in 270 milliseconds

1234567891011>>