Searched refs:dst (Results 176 - 200 of 1630) sorted by relevance

1234567891011>>

/macosx-10.10/xar-254/xar/
H A Dinstall-sh54 dst=""
100 dst=$1
116 dst=$src
119 if [ -d $dst ]; then
138 if [ x"$dst" = x ]
149 if [ -d $dst ]
151 dst="$dst"/`basename $src`
158 dstdir=`echo $dst | sed -e 's,[^/]*$,,;s,/$,,;s,^$,.,'`
194 $doit $instcmd $dst
[all...]
/macosx-10.10/Libc-1044.1.2/gen/FreeBSD/
H A Dtimezone.c56 timezone(zone, dst)
58 dst;
65 if (dst)
75 return(_tztab(zone,dst)); /* default: table or created zone */
109 _tztab(zone,dst)
111 int dst;
118 if (dst && zp->dlzone)
120 if (!dst && zp->stdzone)
/macosx-10.10/OpenSSH-189/openssh/openbsd-compat/
H A Dstrlcpy.c28 * Copy src to string dst of size siz. At most siz-1 characters
33 strlcpy(char *dst, const char *src, size_t siz) argument
35 char *d = dst;
47 /* Not enough room in dst, add NUL and traverse rest of src */
50 *d = '\0'; /* NUL-terminate dst */
/macosx-10.10/SmartcardCCID-55008/ccid/ccid/src/
H A Dstrlcpy.c30 * Copy src to string dst of size siz. At most siz-1 characters
35 strlcpy(char *dst, const char *src, size_t siz) argument
37 char *d = dst;
49 /* Not enough room in dst, add NUL and traverse rest of src */
52 *d = '\0'; /* NUL-terminate dst */
/macosx-10.10/bind9-45.101/bind9/unit/atf-src/atf-config/
H A DMakefile.am.inc45 dst="atf-config/integration_test"; $(BUILD_SH_TP)
/macosx-10.10/cxxfilt-11/cxxfilt/libiberty/
H A Dmempcpy.c38 mempcpy (PTR dst, const PTR src, size_t len) argument
40 return (char *) memcpy (dst, src, len) + len;
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
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}
27 then return @var{dst} + @var{len}, otherwise returns @var{dst} +
41 stpncpy (char *dst, const char *src, size_t len) argument
46 return strncpy (dst, src, len) + n;
/macosx-10.10/dcerpc-61/dcerpc/dcelib/
H A Dstrlcpy.c27 * Copy src to string dst of size siz. At most siz-1 characters
32 strlcpy(char * dst, const char * src, size_t siz) argument
34 char *d = dst;
46 /* Not enough room in dst, add NUL and traverse rest of src */
49 *d = '\0'; /* NUL-terminate dst */
/macosx-10.10/file-46/file/src/
H A Dstrlcpy.c26 * Copy src to string dst of size siz. At most siz-1 characters
31 strlcpy(char *dst, const char *src, size_t siz) argument
33 char *d = dst;
45 /* Not enough room in dst, add NUL and traverse rest of src */
48 *d = '\0'; /* NUL-terminate dst */
/macosx-10.10/kext_tools-384.1.4/
H A Dcompression.h34 u_int8_t * dst,
40 u_int8_t * dst,
/macosx-10.10/libpcap-48/libpcap/Win32/Src/
H A Dinet_pton.c64 inet_pton(int af, const char *src, void *dst) argument
70 return inet_aton (src, dst);
/macosx-10.10/llvmCore-3425.0.34/lib/Support/
H A Dregstrlcpy.c24 * Copy src to string dst of size siz. At most siz-1 characters
29 llvm_strlcpy(char *dst, const char *src, size_t siz) argument
31 char *d = dst;
43 /* Not enough room in dst, add NUL and traverse rest of src */
46 *d = '\0'; /* NUL-terminate dst */
/macosx-10.10/lukemftp-14/tnftp/libnetbsd/
H A Dstrlcpy.c24 * Copy src to string dst of size siz. At most siz-1 characters
29 strlcpy(char *dst, const char *src, size_t siz) argument
31 char *d = dst;
43 /* Not enough room in dst, add NUL and traverse rest of src */
46 *d = '\0'; /* NUL-terminate dst */
/macosx-10.10/postfix-255/postfix/src/cleanup/
H A Dcleanup_rewrite.c95 VSTRING *dst = vstring_alloc(100); local
100 did_rewrite = cleanup_rewrite_external(context_name, dst, STR(src));
102 tree->head = tok822_scan(STR(dst), &tree->tail);
103 vstring_free(dst);
113 VSTRING *dst = vstring_alloc(100); local
118 did_rewrite = cleanup_rewrite_external(context_name, dst, STR(src));
119 unquote_822_local(result, STR(dst));
120 vstring_free(dst);
/macosx-10.10/xnu-2782.1.97/libsyscall/wrappers/string/
H A Dmemset.c56 u_char *dst; local
58 dst = dst0;
67 * dst dst+length-1
74 *dst++ = VAL;
90 if ((t = (long)dst & wmask) != 0) {
94 *dst++ = VAL;
101 *(u_int *)dst = WIDEVAL;
102 dst += wsize;
109 *dst
[all...]
/macosx-10.10/ruby-106/ruby/ext/fiddle/
H A Dconversions.c43 value_to_generic(int type, VALUE src, fiddle_generic * dst) argument
49 dst->pointer = NUM2PTR(rb_Integer(src));
52 dst->schar = (signed char)NUM2INT(src);
55 dst->uchar = (unsigned char)NUM2UINT(src);
58 dst->sshort = (unsigned short)NUM2INT(src);
61 dst->sshort = (signed short)NUM2UINT(src);
64 dst->sint = NUM2INT(src);
67 dst->uint = NUM2UINT(src);
70 dst->slong = NUM2LONG(src);
73 dst
[all...]
/macosx-10.10/IOAudioFamily-200.6/PCMBlitterLib/
H A DIOAudioBlitterLibX86.cpp74 void Float32ToNativeInt16_X86( const Float32 *src, SInt16 *dst, unsigned int numToConvert ) argument
77 int16_t *dst0 = dst;
104 int ialign = (uintptr_t)dst & 0xF;
111 _mm_storeu_si128((__m128i *)dst, vpack0);
116 dst += n;
126 _mm_store_si128((__m128i *)dst, vpack0);
128 dst += 8;
140 _mm_store_si128((__m128i *)dst, vpack0);
143 dst += 8;
150 dst
178 Float32ToSwapInt16_X86( const Float32 *src, SInt16 *dst, unsigned int numToConvert ) argument
288 Float32ToNativeInt32_X86( const Float32 *src, SInt32 *dst, unsigned int numToConvert ) argument
380 Float32ToSwapInt32_X86( const Float32 *src, SInt32 *dst, unsigned int numToConvert ) argument
500 Float32ToNativeInt24_X86( const Float32 *src, UInt8 *dst, unsigned int numToConvert ) argument
604 NativeInt16ToFloat32_X86( const SInt16 *src, Float32 *dst, unsigned int numToConvert ) argument
694 SwapInt16ToFloat32_X86( const SInt16 *src, Float32 *dst, unsigned int numToConvert ) argument
788 NativeInt32ToFloat32_X86( const SInt32 *src, Float32 *dst, unsigned int numToConvert ) argument
868 SwapInt32ToFloat32_X86( const SInt32 *src, Float32 *dst, unsigned int numToConvert ) argument
[all...]
/macosx-10.10/cxxfilt-11/cxxfilt/opcodes/
H A Dmsp430-dis.c95 short dst = 0; local
104 case 0: /* Emulated work with dst register. */
140 dst = msp430dis_opcode (addr + 2, info);
143 sprintf (op, "0x%04x", dst);
145 PS ((short) (addr + 2) + dst));
150 dst = msp430dis_opcode (addr + 2, info);
153 sprintf (op, "&0x%04x", PS (dst));
157 dst = msp430dis_opcode (addr + 2, info);
160 sprintf (op, "%d(r%d)", dst, regd);
218 dst
298 short dst = 0; local
549 short dst = 0; local
[all...]
/macosx-10.10/MITKerberosShim-66/scripts/
H A Dtest-build.sh29 dst=$HOME/Roots/${a}-${version}-${drop}.cpio.gz
30 rm $dst 2> /dev/null
31 ditto -cz $HOME/BuildRoots/$a.roots/$a~dst $dst
32 roots="$roots $dst"
/macosx-10.10/Heimdal-398.1.2/
H A Dinstall-sh95 dst=
237 dst=$src
238 dstdir=$dst
256 dst=$dst_arg
258 case $dst in
259 -*) dst=./$dst;;
264 if test -d "$dst"; then
269 dstdir=$dst
270 dst
[all...]
/macosx-10.10/SmartcardCCID-55008/libusb/libusb/
H A Dinstall-sh95 dst=
237 dst=$src
238 dstdir=$dst
256 dst=$dst_arg
258 case $dst in
259 -*) dst=./$dst;;
264 if test -d "$dst"; then
269 dstdir=$dst
270 dst
[all...]
/macosx-10.10/gnutar-453/gnutar/build-aux/
H A Dinstall-sh95 dst=
237 dst=$src
238 dstdir=$dst
256 dst=$dst_arg
258 case $dst in
259 -*) dst=./$dst;;
264 if test -d "$dst"; then
269 dstdir=$dst
270 dst
[all...]
/macosx-10.10/libarchive-30/libarchive/build/autoconf/
H A Dinstall-sh95 dst=
237 dst=$src
238 dstdir=$dst
256 dst=$dst_arg
258 case $dst in
259 -*) dst=./$dst;;
264 if test -d "$dst"; then
269 dstdir=$dst
270 dst
[all...]
/macosx-10.10/pcre-7/pcre/
H A Dinstall-sh95 dst=
237 dst=$src
238 dstdir=$dst
256 dst=$dst_arg
258 case $dst in
259 -*) dst=./$dst;;
264 if test -d "$dst"; then
269 dstdir=$dst
270 dst
[all...]

Completed in 387 milliseconds

1234567891011>>