Searched refs:dst (Results 51 - 75 of 1630) sorted by relevance

1234567891011>>

/macosx-10.10/xnu-2782.1.97/libsyscall/wrappers/string/
H A Dmemcpy.c53 char *dst = dst0; local
57 if (length == 0 || dst == src) /* nothing to do */
66 if ((unsigned long)dst < (unsigned long)src) {
71 if ((t | (uintptr_t)dst) & wmask) {
76 if ((t ^ (uintptr_t)dst) & wmask || length < wsize)
81 TLOOP1(*dst++ = *src++);
87 TLOOP(*(word *)dst = *(word *)src; src += wsize; dst += wsize);
89 TLOOP(*dst++ = *src++);
97 dst
[all...]
/macosx-10.10/sudo-73/src/
H A Dstrlcpy.c26 * Copy src to string dst of size siz. At most siz-1 characters
31 strlcpy(dst, src, siz)
32 char *dst;
36 char *d = dst;
48 /* Not enough room in dst, add NUL and traverse rest of src */
51 *d = '\0'; /* NUL-terminate dst */
/macosx-10.10/dtrace-147/libelf/
H A Dxlate64.m4844 xlate(Elf_Data *dst, const Elf_Data *src, unsigned encode, int tof)
853 if (dst == 0 || src == 0)
859 if ((dver = dst->d_version - 1) >= EV_CURRENT ||
879 if (dst->d_size < dsz * cnt) {
894 if (src->d_buf && src->d_buf != dst->d_buf)
895 (void) memcpy(dst->d_buf, src->d_buf, src->d_size);
896 dst->d_type = src->d_type;
897 dst->d_size = src->d_size;
898 return (dst);
901 (*f)(dst
[all...]
H A Dxlate.m4853 xlate(Elf_Data *dst, const Elf_Data *src, unsigned encode, int tof)
862 if (dst == 0 || src == 0)
868 if ((dver = dst->d_version - 1) >= EV_CURRENT ||
888 if (dst->d_size < dsz * cnt) {
903 if (src->d_buf && src->d_buf != dst->d_buf)
904 (void) memcpy(dst->d_buf, src->d_buf, src->d_size);
905 dst->d_type = src->d_type;
906 dst->d_size = src->d_size;
907 return (dst);
910 (*f)(dst
[all...]
H A Dgelf.c89 gelf_getehdr(Elf *elf, GElf_Ehdr *dst) argument
104 (void) memcpy(dst->e_ident, e->e_ident, EI_NIDENT);
105 dst->e_type = e->e_type;
106 dst->e_machine = e->e_machine;
107 dst->e_version = e->e_version;
108 dst->e_entry = (Elf64_Addr)e->e_entry;
109 dst->e_phoff = (Elf64_Off)e->e_phoff;
110 dst->e_shoff = (Elf64_Off)e->e_shoff;
111 dst->e_flags = e->e_flags;
112 dst
218 gelf_getphdr(Elf *elf, int ndx, GElf_Phdr *dst) argument
283 Elf32_Phdr *dst = &((Elf32_Phdr *)elf32_getphdr(elf))[ndx]; local
301 Elf64_Phdr *dst = elf64_getphdr(elf); local
333 gelf_getshdr(Elf_Scn *scn, GElf_Shdr *dst) argument
383 Elf32_Shdr *dst = elf32_getshdr(scn); local
409 Elf64_Shdr * dst = elf64_getshdr(scn); local
432 gelf_xlatetof(Elf *elf, Elf_Data *dst, const Elf_Data *src, unsigned encode) argument
451 gelf_xlatetom(Elf *elf, Elf_Data *dst, const Elf_Data *src, unsigned encode) argument
470 gelf_getsym(Elf_Data * data, int ndx, GElf_Sym * dst) argument
512 gelf_update_sym(Elf_Data *dst, int ndx, GElf_Sym *src) argument
557 gelf_getsyminfo(Elf_Data *data, int ndx, GElf_Syminfo *dst) argument
593 gelf_update_syminfo(Elf_Data *dst, int ndx, GElf_Syminfo *src) argument
627 gelf_getdyn(Elf_Data *data, int ndx, GElf_Dyn *dst) argument
663 gelf_update_dyn(Elf_Data *dst, int ndx, GElf_Dyn *src) argument
743 gelf_getmove(Elf_Data *src, int ndx, GElf_Move *dst) argument
824 gelf_getrela(Elf_Data *src, int ndx, GElf_Rela *dst) argument
869 gelf_update_rela(Elf_Data *dst, int ndx, GElf_Rela *src) argument
917 gelf_getrel(Elf_Data *src, int ndx, GElf_Rel *dst) argument
960 gelf_update_rel(Elf_Data *dst, int ndx, GElf_Rel *src) argument
1019 gelf_getcap(Elf_Data *data, int ndx, GElf_Cap *dst) argument
1055 gelf_update_cap(Elf_Data *dst, int ndx, GElf_Cap *src) argument
[all...]
/macosx-10.10/tcl-105/tcl_ext/tbcload/tbcload/config/
H A DinstallFile.tcl15 set dst ""
47 set dst [lindex $argv $i]
56 if {[string length $dst] == 0} {
63 regsub {^/(cygdrive)?/(.)/(.*)} $dst {\2:/\3} dst
66 puts stderr "Ignoring -s (strip) option for $dst"
68 if {[file isdirectory $dst]} {
69 set dst [file join $dst [file tail $src]]
74 set dsttmp [file join [file dirname $dst] #ins
[all...]
/macosx-10.10/tcl-105/tcl_ext/tcllib/tcllib/config/
H A DinstallFile.tcl15 set dst ""
47 set dst [lindex $argv $i]
56 if {[string length $dst] == 0} {
63 regsub {^/(cygdrive)?/(.)/(.*)} $dst {\2:/\3} dst
66 puts stderr "Ignoring -s (strip) option for $dst"
68 if {[file isdirectory $dst]} {
69 set dst [file join $dst [file tail $src]]
74 set dsttmp [file join [file dirname $dst] #ins
[all...]
/macosx-10.10/tcl-105/tcl_ext/tklib/tklib/config/
H A DinstallFile.tcl15 set dst ""
47 set dst [lindex $argv $i]
56 if {[string length $dst] == 0} {
63 regsub {^/(cygdrive)?/(.)/(.*)} $dst {\2:/\3} dst
66 puts stderr "Ignoring -s (strip) option for $dst"
68 if {[file isdirectory $dst]} {
69 set dst [file join $dst [file tail $src]]
74 set dsttmp [file join [file dirname $dst] #ins
[all...]
/macosx-10.10/ICU-531.30/icuSources/tools/genrb/
H A Dustr.c80 ustr_cpy(struct UString *dst, argument
84 if(U_FAILURE(*status) || dst == src)
87 if(dst->fCapacity < src->fLength) {
88 ustr_resize(dst, ALLOCATION(src->fLength), status);
92 if(src->fChars == NULL || dst->fChars == NULL){
95 uprv_memcpy(dst->fChars, src->fChars, sizeof(UChar) * src->fLength);
96 dst->fLength = src->fLength;
97 dst->fChars[dst->fLength] = 0x0000;
119 ustr_cat(struct UString *dst, argument
127 ustr_ncat(struct UString *dst, const struct UString *src, int32_t n, UErrorCode *status) argument
148 ustr_ucat(struct UString *dst, UChar c, UErrorCode *status) argument
167 ustr_u32cat(struct UString *dst, UChar32 c, UErrorCode *status) argument
180 ustr_uscat(struct UString *dst, const UChar* src,int len, UErrorCode *status) argument
[all...]
/macosx-10.10/Heimdal-398.1.2/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);
55 strlcpy (char *dst, const char *src, size_t dst_sz) argument
60 if ((*dst++ = *src++) == '\0')
67 *(dst - 1) = '\0';
/macosx-10.10/KerberosHelper-151/scripts/
H A Dq-build.sh6 (sudo rm -rf /tmp/$project.dst && \
9 sudo chown -R root:wheel /tmp/$project.dst && \
10 sudo ditto /tmp/$project.dst /Heimdal/KerberosHelper_frameworks && \
11 sudo ditto /tmp/$project.dst /Heimdal/KerberosHelperMerged && \
12 sudo ditto /tmp/$project.dst /) || { echo "KerberosHelper_frameworks failed" ; exit 1; }
14 (sudo rm -rf /tmp/$project.dst && \
17 sudo chown -R root:wheel /tmp/$project.dst && \
18 sudo ditto /tmp/$project.dst /Heimdal/KerberosHelper_executables && \
19 sudo ditto /tmp/$project.dst /Heimdal/KerberosHelperMerged && \
20 sudo ditto /tmp/$project.dst / ) || { ech
[all...]
/macosx-10.10/Libc-1044.1.2/net/FreeBSD/
H A Dinet_neta.c45 * inet_neta(src, dst, size)
48 * pointer to dst, or NULL if an error occurred (check errno).
55 inet_neta(src, dst, size)
57 char *dst;
60 char *odst = dst;
70 tp = dst;
71 dst += SPRINTF((dst, "%u", b));
73 *dst++ = '.';
74 *dst
[all...]
H A Dinet_net_ntop.c44 static char * inet_net_ntop_ipv4(const u_char *src, int bits, char *dst,
46 static char * inet_net_ntop_ipv6(const u_char *src, int bits, char *dst,
51 * inet_net_ntop(af, src, bits, dst, size)
55 * pointer to dst, or NULL if an error occurred (check errno).
60 inet_net_ntop(af, src, bits, dst, size)
64 char *dst;
69 return (inet_net_ntop_ipv4(src, bits, dst, size));
71 return (inet_net_ntop_ipv6(src, bits, dst, size));
80 * inet_net_ntop_ipv4(src, bits, dst, size)
84 * pointer to dst, o
171 inet_net_ntop_ipv6(const u_char *src, int bits, char *dst, size_t size) argument
[all...]
/macosx-10.10/bind9-45.101/bind9/unit/atf-src/test-programs/
H A DMakefile.am.inc51 dst="test-programs/sh_helpers"; $(BUILD_SH_TP)
59 dst="test-programs/config_test"; $(BUILD_SH_TP)
67 dst="test-programs/expect_test"; $(BUILD_SH_TP)
75 dst="test-programs/fork_test"; $(BUILD_SH_TP)
83 dst="test-programs/meta_data_test"; $(BUILD_SH_TP)
91 dst="test-programs/result_test"; $(BUILD_SH_TP)
99 dst="test-programs/srcdir_test"; $(BUILD_SH_TP)
/macosx-10.10/postfix-255/postfix/src/global/
H A Dquote_821_local.c9 /* VSTRING *quote_821_local(dst, src)
10 /* VSTRING *dst;
13 /* VSTRING *quote_821_local_flags(dst, src, flags)
14 /* VSTRING *dst;
25 /* .IP dst
111 static VSTRING *make_821_quoted_string(VSTRING *dst, const char *local_part, argument
121 VSTRING_ADDCH(dst, '"');
125 VSTRING_ADDCH(dst, '\\');
126 VSTRING_ADDCH(dst, ch);
128 VSTRING_ADDCH(dst, '"');
135 quote_821_local_flags(VSTRING *dst, const char *addr, int flags) argument
169 VSTRING *dst = vstring_alloc(100); local
[all...]
/macosx-10.10/cups-408/cups/
H A Dinstall-sh61 dst=""
120 dst="$1"
134 dst="$src"
137 if [ -d "$dst" ]; then
151 if [ x"$dst" = x ]; then
157 if [ -d "$dst" ]; then
158 dst="$dst/`basename $src`"
163 dstdir="`echo $dst | sed -e 's,[^/]*$,,;s,/$,,;s,^$,.,'`"
194 $doit $instcmd $dst || exi
[all...]
/macosx-10.10/cups-408/cups/scheduler/
H A Dfilter.c56 size_t srcsize, mime_type_t *dst,
67 mime_type_t *dst, /* I - Destination type */
74 DEBUG_printf(("mimeAddFilter(mime=%p, src=%p(%s/%s), dst=%p(%s/%s), cost=%d, "
77 dst, dst ? dst->super : "???", dst ? dst->type : "???",
84 if (!mime || !src || !dst || !filter)
95 if ((temp = mimeFilterLookup(mime, src, dst)) !
65 mimeAddFilter(mime_t *mime, mime_type_t *src, mime_type_t *dst, int cost, const char *filter) argument
154 mimeFilter(mime_t *mime, mime_type_t *src, mime_type_t *dst, int *cost) argument
175 mimeFilter2(mime_t *mime, mime_type_t *src, size_t srcsize, mime_type_t *dst, int *cost) argument
247 mimeFilterLookup(mime_t *mime, mime_type_t *src, mime_type_t *dst) argument
312 mime_find_filters( mime_t *mime, mime_type_t *src, size_t srcsize, mime_type_t *dst, int *cost, _mime_typelist_t *list) argument
[all...]
/macosx-10.10/OpenLDAP-499.27/OpenLDAP/contrib/ldaptcl/
H A Dinstall-sh38 dst=""
69 dst=$1
82 if [ x"$dst" = x ]
92 if [ -d $dst ]
94 dst="$dst"/`basename $src`
99 dstdir=`dirname $dst`
115 $doit $rmcmd $dst
116 $doit $mvcmd $dsttmp $dst
/macosx-10.10/dtrace-147/libdwarf/
H A Dinstall.sh38 dst=""
69 dst=$1
82 if [ x"$dst" = x ]
92 if [ -d $dst ]
94 dst="$dst"/`basename $src`
99 dstdir=`dirname $dst`
115 $doit $rmcmd $dst
116 $doit $mvcmd $dsttmp $dst
/macosx-10.10/less-25/less/
H A Dinstall.sh38 dst=""
69 dst=$1
82 if [ x"$dst" = x ]
92 if [ -d $dst ]
94 dst="$dst"/`basename $src`
99 dstdir=`dirname $dst`
115 $doit $rmcmd $dst
116 $doit $mvcmd $dsttmp $dst
/macosx-10.10/screen-22/screen/doc/
H A Dinstall.sh38 dst=""
69 dst=$1
82 if [ x"$dst" = x ]
92 if [ -d $dst ]
94 dst="$dst"/`basename $src`
99 dstdir=`dirname $dst`
115 $doit $rmcmd $dst
116 $doit $mvcmd $dsttmp $dst
/macosx-10.10/screen-22/screen/
H A Dinstall.sh38 dst=""
69 dst=$1
82 if [ x"$dst" = x ]
92 if [ -d $dst ]
94 dst="$dst"/`basename $src`
99 dstdir=`dirname $dst`
115 $doit $rmcmd $dst
116 $doit $mvcmd $dsttmp $dst
/macosx-10.10/tcl-105/tcl/tcl/unix/
H A Dinstall-sh38 dst=""
74 dst=$1
87 if [ x"$dst" = x ]
97 if [ -d "$dst" ]
99 dst="$dst/`basename "$src"`"
104 dstdir="`dirname "$dst"`"
120 $doit $rmcmd "$dst"
121 $doit $mvcmd "$dsttmp" "$dst"
/macosx-10.10/tcl-105/tcl84/tcl/unix/
H A Dinstall-sh38 dst=""
74 dst=$1
87 if [ x"$dst" = x ]
97 if [ -d $dst ]
99 dst="$dst"/`basename $src`
104 dstdir=`dirname $dst`
120 $doit $rmcmd $dst
121 $doit $mvcmd $dsttmp $dst
/macosx-10.10/tcl-105/tcl_ext/expect/expect/tclconfig/
H A Dinstall-sh38 dst=""
69 dst=$1
82 if [ x"$dst" = x ]
92 if [ -d $dst ]
94 dst="$dst"/`basename $src`
99 dstdir=`dirname $dst`
115 $doit $rmcmd $dst
116 $doit $mvcmd $dsttmp $dst

Completed in 373 milliseconds

1234567891011>>