Searched refs:from (Results 1 - 25 of 3428) sorted by relevance

1234567891011>>

/macosx-10.9.5/tcl-102/tcl_ext/tclx/tclx/compat/
H A Drename.c9 int rename(from,to)
10 register char *from, *to;
13 if (link(from, to) < 0)
16 (void) unlink(from);
/macosx-10.9.5/screen-22/screen/
H A Dnethack.c32 char *from; member in struct:nlstrans
40 {"Got only %d bytes from %s",
41 "You choke on your food: %d bytes from %s"},
67 "You cannot escape from window %d!"},
89 "You must play from a terminal."},
110 {"Illegal reattach attempt from terminal %s.",
119 DoNLS(from)
120 char *from;
127 for (t = nethacktrans; t->from; t++)
128 if (strcmp(from,
[all...]
/macosx-10.9.5/Heimdal-323.92.1/lib/roken/
H A Dswab.c18 * may be used to endorse or promote products derived from this software
40 swab (char *from, char *to, int nbytes) argument
43 *(to + 1) = *from;
44 *to = *(from + 1);
46 from += 2;
/macosx-10.9.5/postfix-252/postfix/auxiliary/rmail/
H A Drmail6 IFS=" " read junk from junk junk junk junk junk junk junk relay
8 case "$from" in
10 *) from="$from@$relay";;
13 exec $SENDMAIL -i -f "$from" -- "$@"
/macosx-10.9.5/rsync-42/rsync/testsuite/
H A Dunsafe-byname.test22 test_unsafe file from safe
23 test_unsafe dir/file from safe
24 test_unsafe dir/./file from safe
25 test_unsafe dir/. from safe
26 test_unsafe dir/ from safe
28 test_unsafe /etc/passwd from unsafe
29 test_unsafe //../etc/passwd from unsafe
30 test_unsafe //./etc/passwd from unsafe
32 test_unsafe ./foo from safe
33 test_unsafe ../foo from unsaf
[all...]
/macosx-10.9.5/WebCore-7537.78.1/platform/animation/
H A DAnimationUtilities.h35 inline int blend(int from, int to, double progress) argument
37 return static_cast<int>(lround(static_cast<double>(from) + static_cast<double>(to - from) * progress));
40 inline unsigned blend(unsigned from, unsigned to, double progress) argument
42 return static_cast<unsigned>(lround(to > from ? static_cast<double>(from) + static_cast<double>(to - from) * progress : static_cast<double>(from) - static_cast<double>(from - to) * progress));
45 inline double blend(double from, doubl argument
50 blend(float from, float to, double progress) argument
55 blend(LayoutUnit from, LayoutUnit to, double progress) argument
60 blend(const IntPoint& from, const IntPoint& to, double progress) argument
[all...]
/macosx-10.9.5/bind9-45.100/bind9/contrib/idn/idnkit-1.0-src/include/mdn/
H A Dapi.h11 * license is obtained from Japan Network Information Center ("JPNIC"),
29 * derived from this Software without specific prior written approval of
62 mdn_encodename(int actions, const char *from, char *to, size_t tolen);
65 mdn_decodename(int actions, const char *from, char *to, size_t tolen);
67 #define mdn_localtoutf8(from, to, tolen) \
68 mdn_encodename(IDN_LOCALCONV, from, to, len)
69 #define mdn_delimitermap(from, to, tolen) \
70 mdn_encodename(IDN_DELIMMAP, from, to, len)
71 #define mdn_localmap(from, to, tolen) \
72 mdn_encodename(IDN_LOCALMAP, from, t
[all...]
/macosx-10.9.5/WebCore-7537.78.1/platform/text/
H A DLineEnding.h16 * contributors may be used to endorse or promote products derived from
41 CString normalizeLineEndingsToCRLF(const CString& from);
44 void normalizeLineEndingsToCR(const CString& from, Vector<char>& result);
47 void normalizeLineEndingsToLF(const CString& from, Vector<char>& result);
51 void normalizeLineEndingsToNative(const CString& from, Vector<char>& result);
/macosx-10.9.5/postfix-252/postfix/src/util/
H A Dsane_rename.c10 /* const char *from;
41 int sane_rename(const char *from, const char *to) argument
50 if (rename(from, to) >= 0)
58 if (stat(from, &st) < 0 && stat(to, &st) >= 0) {
60 myname, from, to);
H A Dsane_link.c9 /* int sane_link(from, to)
10 /* const char *from;
41 int sane_link(const char *from, const char *to) argument
51 if (link(from, to) >= 0)
59 if (stat(from, &from_st) >= 0 && stat(to, &to_st) >= 0
63 myname, from, to);
/macosx-10.9.5/libarchive-29/libarchive/cpio/test/
H A Dtest_gcpio_compat.c29 unpack_test(const char *from, const char *options, const char *se) argument
34 assertMakeDir(from, 0775);
35 assertChdir(from);
40 extract_reference_file(from);
42 testprog, options, from);
44 testprog, options, from);
50 testprog, options, from);
60 failure("%s", from);
63 failure("%s", from);
67 failure("%s", from);
[all...]
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/transforms/
H A DMatrix3DTransformOperation.cpp35 PassRefPtr<TransformOperation> Matrix3DTransformOperation::blend(const TransformOperation* from, double progress, bool blendToIdentity) argument
37 if (from && !from->isSameType(*this))
44 if (from)
45 from->apply(fromT, size);
/macosx-10.9.5/Heimdal-323.92.1/lib/asn1/
H A Dder_copy.c20 * may be used to endorse or promote products derived from this software
41 der_copy_general_string (const heim_general_string *from, argument
44 *to = strdup(*from);
51 der_copy_integer (const int *from, int *to) argument
53 *to = *from;
58 der_copy_unsigned (const unsigned *from, unsigned *to) argument
60 *to = *from;
65 der_copy_generalized_time (const time_t *from, time_t *to) argument
67 *to = *from;
72 der_copy_utctime (const time_t *from, time_ argument
79 der_copy_utf8string(const heim_utf8_string *from, heim_utf8_string *to) argument
85 der_copy_printable_string(const heim_printable_string *from, heim_printable_string *to) argument
98 der_copy_ia5_string(const heim_ia5_string *from, heim_ia5_string *to) argument
105 der_copy_bmp_string(const heim_bmp_string *from, heim_bmp_string *to) argument
116 der_copy_universal_string(const heim_universal_string *from, heim_universal_string *to) argument
128 der_copy_visible_string(const heim_visible_string *from, heim_visible_string *to) argument
135 der_copy_octet_string(const heim_octet_string *from, heim_octet_string *to) argument
146 der_copy_heim_integer(const heim_integer *from, heim_integer *to) argument
158 der_copy_oid(const heim_oid *from, heim_oid *to) argument
170 der_copy_bit_string(const heim_bit_string *from, heim_bit_string *to) argument
[all...]
/macosx-10.9.5/OpenSSH-186/osslshim/heimdal-asn1/
H A Dasn1-der_copy.c42 * may be used to endorse or promote products derived from this software
63 der_copy_general_string (const heim_general_string *from, argument
66 *to = strdup(*from);
73 der_copy_integer (const int *from, int *to) argument
75 *to = *from;
80 der_copy_unsigned (const unsigned *from, unsigned *to) argument
82 *to = *from;
87 der_copy_generalized_time (const time_t *from, time_t *to) argument
89 *to = *from;
94 der_copy_utctime (const time_t *from, time_ argument
101 der_copy_utf8string(const heim_utf8_string *from, heim_utf8_string *to) argument
107 der_copy_printable_string(const heim_printable_string *from, heim_printable_string *to) argument
120 der_copy_ia5_string(const heim_ia5_string *from, heim_ia5_string *to) argument
127 der_copy_bmp_string(const heim_bmp_string *from, heim_bmp_string *to) argument
138 der_copy_universal_string(const heim_universal_string *from, heim_universal_string *to) argument
150 der_copy_visible_string(const heim_visible_string *from, heim_visible_string *to) argument
157 der_copy_octet_string(const heim_octet_string *from, heim_octet_string *to) argument
168 der_copy_heim_integer(const heim_integer *from, heim_integer *to) argument
180 der_copy_oid(const heim_oid *from, heim_oid *to) argument
192 der_copy_bit_string(const heim_bit_string *from, heim_bit_string *to) argument
[all...]
/macosx-10.9.5/Heimdal-323.92.1/appl/push/
H A Dpfrom.in6 push --from $*
/macosx-10.9.5/apache-786.1/httpd/docs/conf/extra/
H A Dhttpd-info.conf.in16 Deny from all
17 Allow from .example.com
35 Deny from all
36 Allow from .example.com
/macosx-10.9.5/ksh-20/ksh/src/lib/libast/comp/
H A Dlink.c39 link(const char* from, const char* to)
41 NoP(from);
H A Drename.c38 mvdir(const char* from, const char* to)
49 argv[1] = from;
65 rename(const char* from, const char* to)
71 while (link(from, to))
77 return mvdir(from, to);
87 return mvdir(from, to);
95 return unlink(from);
H A Dmemmove.c33 memmove(void* to, const void* from, register size_t n)
36 register char* in = (char*)from;
41 return(memcpy(to, from, n)); /* hope it's fast*/
/macosx-10.9.5/Libc-997.90.3/emulated/
H A Dstatvfs.c35 cvt_statfs_to_statvfs(struct statfs *from, struct statvfs *to) argument
37 to->f_bsize = from->f_iosize;
38 to->f_frsize = from->f_bsize;
39 to->f_blocks = from->f_blocks;
40 to->f_bfree = from->f_bfree;
41 to->f_bavail = from->f_bavail;
42 to->f_files = from->f_files;
43 to->f_ffree = from->f_ffree;
44 to->f_favail = from->f_ffree;
45 to->f_fsid = from
[all...]
/macosx-10.9.5/Libc-997.90.3/string/FreeBSD/
H A Dwcpcpy.c16 * may be used to endorse or promote products derived from this software
41 wcpcpy(wchar_t * __restrict to, const wchar_t * __restrict from) argument
44 for (; (*to = *from); ++from, ++to);
/macosx-10.9.5/Chess-310.5/sjeng/
H A Dmoves.c46 int from = moves[m].from; local
96 if (moves[m].from == 0) return TRUE;
105 if (file(from) != file(bking_loc)
106 && rank(from) != rank(bking_loc)
107 && diagl(from) != diagl(bking_loc)
108 && diagr(from) != diagr(bking_loc))
113 if (rank(from) != rank(bking_loc)
114 && diagl(from) != diagl(bking_loc)
115 && diagr(from) !
457 int from, a, j, i; local
817 int from = moves[m].from; local
1298 int ep, from, target, captured, promoted, castled, find_slot; local
1935 int ep, from, target, captured, promoted, castled; local
[all...]
/macosx-10.9.5/WebCore-7537.78.1/css/
H A DCSSUnicodeRangeValue.h37 static PassRefPtr<CSSUnicodeRangeValue> create(UChar32 from, UChar32 to) argument
39 return adoptRef(new CSSUnicodeRangeValue(from, to));
42 UChar32 from() const { return m_from; } function in class:WebCore::CSSUnicodeRangeValue
50 CSSUnicodeRangeValue(UChar32 from, UChar32 to) argument
52 , m_from(from)
/macosx-10.9.5/passwordserver_sasl-170/cyrus_sasl/mac/krb4_sources/
H A Drw.c23 * may be used to endorse or promote products derived from this software
54 unsigned char *from = (unsigned char *)f; local
59 *to = (*to << 8) | from[i];
62 *to = (*to << 8) | from[i];
68 krb_put_int(u_int32_t from, void *to, size_t rem, int size) argument
77 p[i] = from & 0xff;
78 from >>= 8;
87 krb_get_address(void *from, u_int32_t *to) argument
89 unsigned char *p = (unsigned char*)from;
101 krb_put_string(const char *from, voi argument
112 krb_get_string(void *from, char *to, size_t to_size) argument
119 krb_get_nir(void *from, char *name, char *instance, char *realm) argument
[all...]
/macosx-10.9.5/libunwind-35.3/src/
H A DFileAbstraction.hpp44 // get16() read a 16-bit number from an E endian struct
46 // get32() read a 32-bit number from an E endian struct
48 // get64() read a 64-bit number from an E endian struct
51 // getBits() read a bit field from an E endian struct (bitCount=number of bits in field, firstBit=bit index of field)
54 // getBitsRaw() read a bit field from a struct with native endianness
55 // setBitsRaw() write a bit field from a struct with native endianness
61 static uint16_t get16(const uint16_t& from) INLINE { return OSReadBigInt16(&from, 0); }
64 static uint32_t get32(const uint32_t& from) INLINE { return OSReadBigInt32(&from,
[all...]

Completed in 310 milliseconds

1234567891011>>