Searched refs:from (Results 26 - 50 of 3428) sorted by relevance

1234567891011>>

/macosx-10.9.5/BerkeleyDB-21/db/cxx/
H A Dcxx_dbt.cpp43 const DBT *from = &that; local
45 memcpy(to, from, sizeof(DBT));
51 const DBT *from = &that; local
53 memcpy(to, from, sizeof(DBT));
/macosx-10.9.5/Security-55471.14.18/libsecurity_apple_csp/open_ssl/rsa/
H A Drsa_none.c53 * The word 'cryptographic' can be left out if the rouines from the library
55 * 4. If you include any Windows specific code (or a derivative thereof) from
83 int RSA_padding_add_none(unsigned char *to, int tlen, unsigned char *from, argument
98 memcpy(to,from,(unsigned int)flen);
102 int RSA_padding_check_none(unsigned char *to, int tlen, unsigned char *from, argument
113 memcpy(to+tlen-flen,from,flen);
H A Drsa_null.c44 * endorse or promote products derived from this software without
48 * 5. Products derived from this software may not be called "OpenSSL"
90 static int RSA_null_public_encrypt(int flen, unsigned char *from,
92 static int RSA_null_private_encrypt(int flen, unsigned char *from,
94 static int RSA_null_public_decrypt(int flen, unsigned char *from,
96 static int RSA_null_private_decrypt(int flen, unsigned char *from,
121 static int RSA_null_public_encrypt(int flen, unsigned char *from, argument
128 static int RSA_null_private_encrypt(int flen, unsigned char *from, argument
135 static int RSA_null_private_decrypt(int flen, unsigned char *from, argument
142 static int RSA_null_public_decrypt(int flen, unsigned char *from, argument
[all...]
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/transforms/
H A DSkewTransformOperation.cpp29 PassRefPtr<TransformOperation> SkewTransformOperation::blend(const TransformOperation* from, double progress, bool blendToIdentity) argument
31 if (from && !from->isSameType(*this))
37 const SkewTransformOperation* fromOp = static_cast<const SkewTransformOperation*>(from);
H A DMatrixTransformOperation.cpp31 PassRefPtr<TransformOperation> MatrixTransformOperation::blend(const TransformOperation* from, double progress, bool blendToIdentity) argument
33 if (from && !from->isSameType(*this))
40 if (from) {
41 const MatrixTransformOperation* m = static_cast<const MatrixTransformOperation*>(from);
/macosx-10.9.5/network_cmds-433/natd.tproj/
H A Dnatd.test10 ipfw add divert 32000 ip from any to any via $1
11 ipfw add pass ip from any to any
/macosx-10.9.5/ppp-727.90.1/Drivers/PPTP/PPTP-extension/
H A Dpptp_ip.h31 int pptp_ip_output(mbuf_t m, u_int32_t from, u_int32_t to);
/macosx-10.9.5/ruby-104/ruby/ext/socket/
H A Dtcpserver.c50 struct sockaddr_storage from; local
54 fromlen = (socklen_t)sizeof(from);
56 (struct sockaddr*)&from, &fromlen);
96 struct sockaddr_storage from; local
100 fromlen = (socklen_t)sizeof(from);
102 (struct sockaddr *)&from, &fromlen);
123 struct sockaddr_storage from; local
127 fromlen = (socklen_t)sizeof(from);
128 return rsock_s_accept(0, fptr->fd, (struct sockaddr*)&from, &fromlen);
/macosx-10.9.5/emacs-92/emacs/lisp/international/
H A Diso-cvt.el1 ;;; iso-cvt.el --- translate ISO 8859-1 from/to various encodings -*- coding: iso-latin-1 -*-
44 ; can get the ISO 8859-1 FAQ via anonymous ftp from
67 (defun iso-translate-conventions (from to trans-tab)
71 (narrow-to-region from to)
72 (goto-char from)
85 (defun iso-spanish (from to &optional buffer)
90 (iso-translate-conventions from to iso-spanish-trans-tab))
126 (defun iso-german (from to &optional buffer)
131 (iso-translate-conventions from to iso-german-trans-tab))
198 (defun iso-iso2tex (from t
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/tdom/tdom/encodings/
H A DGenCompactCodings8 # converting tables from Unicode to 8bit encodings (ISO-8859*,CP850...)
9 # from the Tcl 8.2 encoding files (*.enc)
122 binary scan [binary format H4 $hex] S from
124 Log "$from -> $to"
129 set map($from) $to
131 if {$from > $info(max)} {set info(max) $from}
157 for {set from 1} {$from <= $info(max)} {incr from} {
[all...]
/macosx-10.9.5/RubyCocoa-80/RubyCocoa/sample/PassengerPane/test/fixtures/
H A Dfranky.vhost.conf7 Allow from all
H A Dstaging.vhost.conf7 Allow from all
/macosx-10.9.5/bind9-45.100/bind9/contrib/idn/idnkit-1.0-src/include/idn/
H A Dpunycode.h10 * license is obtained from Japan Network Information Center ("JPNIC"),
28 * derived from this Software without specific prior written approval of
60 const char *from, unsigned long *to, size_t tolen);
64 const unsigned long *from, char *to, size_t tolen);
H A Drace.h10 * license is obtained from Japan Network Information Center ("JPNIC"),
28 * derived from this Software without specific prior written approval of
62 const unsigned long *from, char *to, size_t tolen);
66 const char *from, unsigned long *to, size_t tolen);
/macosx-10.9.5/dcerpc-58/dcerpc/libdcethread/
H A Ddcethread_recvfrom.c16 * contributors may be used to endorse or promote products derived from
60 * may be used to endorse or promote products derived from this
90 struct sockaddr *from, socklen_t *fromlen)
92 DCETHREAD_SYSCALL(ssize_t, recvfrom(s, buf, len, flags, from, fromlen));
89 dcethread_recvfrom(int s, void *buf, size_t len, int flags, struct sockaddr *from, socklen_t *fromlen) argument
/macosx-10.9.5/ncurses-42/ncurses/ncurses/tinfo/
H A Dmake_keys.c74 char from[256]; local
84 from[sizeof(from) - 1] = '\0';
86 scanned = sscanf(buffer, "%255s %255s", to, from);
88 int code = lookup(from);
91 if ((int) strlen(from) > maxlen)
92 maxlen = strlen(from);
97 from);
/macosx-10.9.5/WebCore-7537.78.1/platform/text/
H A DLineEnding.cpp16 * contributors may be used to endorse or promote products derived from
97 void internalNormalizeLineEndingsToCRLF(const CString& from, OutputBuffer& buffer) argument
101 const char* p = from.data();
117 if (newLen < from.length())
120 if (newLen == from.length()) {
121 buffer.copy(from);
125 p = from.data();
152 void normalizeToCROrLF(const CString& from, Vector<char>& result, bool toCR);
155 void normalizeToCROrLF(const CString& from, Vector<char>& result, bool toCR) argument
160 const char* p = from
203 normalizeLineEndingsToCRLF(const CString& from) argument
211 normalizeLineEndingsToCR(const CString& from, Vector<char>& result) argument
216 normalizeLineEndingsToLF(const CString& from, Vector<char>& result) argument
221 normalizeLineEndingsToNative(const CString& from, Vector<char>& result) argument
[all...]
/macosx-10.9.5/bash-92/bash-3.2/lib/sh/
H A Drename.c42 rename (from, to)
43 const char *from, *to;
47 if (stat (from, &fb) < 0)
63 if (link (from, to) < 0)
66 if (unlink (from) < 0 && errno != ENOENT)
/macosx-10.9.5/bind9-45.100/bind9/contrib/idn/idnkit-1.0-src/lib/
H A Dapi.c14 * license is obtained from Japan Network Information Center ("JPNIC"),
32 * derived from this Software without specific prior written approval of
139 idn_encodename(idn_action_t actions, const char *from, char *to, size_t tolen) { argument
142 assert(from != NULL && to != NULL);
144 TRACE(("idn_encodename(actions=%s, from=\"%s\")\n",
146 idn__debug_xstring(from, 50)));
151 r = idn_res_encodename(default_conf, actions, from, to, tolen);
164 idn_decodename(idn_action_t actions, const char *from, char *to, size_t tolen) { argument
167 assert(from != NULL && to != NULL);
169 TRACE(("idn_decodename(actions=%s, from
189 idn_decodename2(idn_action_t actions, const char *from, char *to, size_t tolen, const char *auxencoding) argument
226 mdn_encodename(int actions, const char *from, char *to, size_t tolen) argument
242 mdn_decodename(int actions, const char *from, char *to, size_t tolen) argument
[all...]
/macosx-10.9.5/emacs-92/emacs/lisp/erc/
H A Derc-replace.el40 "Replace text from incoming messages"
64 "Function to run from `erc-insert-modify-hook'.
68 (let ((from (car elt))
70 (unless (stringp from)
71 (setq from (eval from)))
72 (while (re-search-forward from nil t)
/macosx-10.9.5/Chess-310.5/Sources/
H A DMBCMoveGenerator.mm3 Contains: Generate all legal moves from a position
23 derived from the Apple Software without specific prior written
24 permission from Apple. Except as expressly stated in this notice, no
72 - (void) validMove:(MBCPiece)piece from:(MBCSquare)from to:(MBCSquare)to
77 - (void) validMove:(MBCPiece)piece from:(MBCSquare)from to:(MBCSquare)to
115 - (void) validMove:(MBCPiece)piece from:(MBCSquare)from to:(MBCSquare)to
119 newPos.fBoard[to] = newPos.fBoard[from];
[all...]
/macosx-10.9.5/Heimdal-323.92.1/lib/asn1/
H A Dgen_copy.c18 * may be used to endorse or promote products derived from this software
41 copy_primitive (const char *typename, const char *from, const char *to) argument
44 typename, from, to);
49 copy_type (const char *from, const char *to, const Type *t, int preserve) argument
54 copy_type (from, to, t->symbol->type, preserve);
57 t->symbol->gen_name, from, to);
62 copy_primitive ("heim_integer", from, to);
67 fprintf(codefile, "*(%s) = *(%s);\n", to, from);
70 copy_primitive ("octet_string", from, to);
74 copy_primitive ("bit_string", from, t
[all...]
/macosx-10.9.5/bind9-45.100/bind9/contrib/idn/idnkit-1.0-src/wsock/common/
H A Dconvert.c14 * license is obtained from Japan Network Information Center ("JPNIC"),
32 * derived from this Software without specific prior written approval of
133 idnConvReq(idn_resconf_t ctx, const char FAR *from, char FAR *to, size_t tolen) argument
139 idnLogPrintf(idn_log_level_trace, "idnConvReq(from=%-.100s)\n", from);
142 if (strlen(from) >= tolen)
144 strcpy(to, from);
148 r = idn_res_encodename(ctx, IDN_ENCODE_APP, from, to, tolen);
164 idnConvRsp(idn_resconf_t ctx, const char FAR *from, char FAR *to, size_t tolen) argument
168 idnLogPrintf(idn_log_level_trace, "idnConvRsp(from
[all...]
/macosx-10.9.5/ruby-104/ruby/tool/
H A Denc-emoji4unicode.rb19 from = e.attribute(from_carrier.downcase).to_s
23 if from =~ /^(?:\*|\+)(.+)$/ # proposed or unified
24 from = $1
26 if from.empty? || from !~ /^[0-9A-F]+$/
29 from_utf8 = [from.hex].pack("U").unpack("H*").first
40 comment = "[%s] U+%X -> %s" % [name, from.hex, tos.map{|c| "U+%X"%c.hex}.join(' ')]
41 block.call(:from => from_utf8,
48 comment = "[%s] U+%X -> U+3013 (GETA)" % [name, from.hex]
49 block.call(:from
[all...]
/macosx-10.9.5/dyld-239.4/launch-cache/
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 146 milliseconds

1234567891011>>