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

1234567891011>>

/barrelfish-master/kernel/
H A Dmemmove.c17 uintptr_t from = (uintptr_t)s2; local
20 if (to <= from) {
23 if (((from ^ to) & LOWBITS) == 0) {
27 while (n != 0 && ((from & LOWBITS) != 0)) {
28 *(char *)to = *(const char *)from;
29 from++;
36 *(uintptr_t *)to = *(const uintptr_t *)from;
37 from += sizeof(uintptr_t);
45 *(char *)to = *(const char *)from;
46 from
[all...]
/barrelfish-master/lib/libc/string/
H A Dstpcpy.c16 * may be used to endorse or promote products derived from this software
41 stpcpy(char * __restrict to, const char * __restrict from) argument
44 for (; (*to = *from); ++from, ++to);
H A Dstrcpy.c14 * may be used to endorse or promote products derived from this software
39 strcpy(char * __restrict to, const char * __restrict from) argument
43 for (; (*to = *from); ++from, ++to);
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);
H A Dswab.c5 * This code is derived from software contributed to Berkeley by
17 * may be used to endorse or promote products derived from this software
42 swab(const void * __restrict from, void * __restrict to, ssize_t len) argument
51 fp = (char *)from;
/barrelfish-master/lib/devif/backends/net/mlx4/include/asm/
H A Duaccess.h36 static inline long copy_to_user(void *to, const void *from, unsigned long n) { argument
37 memcpy(to, from, n);
41 static inline long copy_from_user(void *to, const void *from, unsigned long n) { argument
42 memcpy(to, from, n);
/barrelfish-master/lib/libc/amd64/string/
H A Dstrcpy.c34 strcpy(char * __restrict to, const char * __restrict from) argument
36 __stpcpy(to, from);
/barrelfish-master/lib/openssl-1.0.0d/crypto/rsa/
H A Drsa_none.c35 * The word 'cryptographic' can be left out if the rouines from the library
37 * 4. If you include any Windows specific code (or a derivative thereof) from
66 const unsigned char *from, int flen)
80 memcpy(to,from,(unsigned int)flen);
85 const unsigned char *from, int flen, int num)
95 memcpy(to+tlen-flen,from,flen);
65 RSA_padding_add_none(unsigned char *to, int tlen, const unsigned char *from, int flen) argument
84 RSA_padding_check_none(unsigned char *to, int tlen, const unsigned char *from, int flen, int num) argument
H A Drsa_null.c26 * endorse or promote products derived from this software without
30 * 5. Products derived from this software may not be called "OpenSSL"
72 static int RSA_null_public_encrypt(int flen, const unsigned char *from,
74 static int RSA_null_private_encrypt(int flen, const unsigned char *from,
76 static int RSA_null_public_decrypt(int flen, const unsigned char *from,
78 static int RSA_null_private_decrypt(int flen, const unsigned char *from,
107 static int RSA_null_public_encrypt(int flen, const unsigned char *from, argument
114 static int RSA_null_private_encrypt(int flen, const unsigned char *from, argument
121 static int RSA_null_private_decrypt(int flen, const unsigned char *from, argument
128 static int RSA_null_public_decrypt(int flen, const unsigned char *from, argument
[all...]
H A Drsa_pk1.c35 * The word 'cryptographic' can be left out if the rouines from the library
37 * 4. If you include any Windows specific code (or a derivative thereof) from
66 const unsigned char *from, int flen)
87 memcpy(p,from,(unsigned int)flen);
92 const unsigned char *from, int flen, int num)
97 p=from;
144 const unsigned char *from, int flen)
177 memcpy(p,from,(unsigned int)flen);
182 const unsigned char *from, int flen, int num)
187 p=from;
65 RSA_padding_add_PKCS1_type_1(unsigned char *to, int tlen, const unsigned char *from, int flen) argument
91 RSA_padding_check_PKCS1_type_1(unsigned char *to, int tlen, const unsigned char *from, int flen, int num) argument
143 RSA_padding_add_PKCS1_type_2(unsigned char *to, int tlen, const unsigned char *from, int flen) argument
181 RSA_padding_check_PKCS1_type_2(unsigned char *to, int tlen, const unsigned char *from, int flen, int num) argument
[all...]
H A Drsa_ssl.c35 * The word 'cryptographic' can be left out if the rouines from the library
37 * 4. If you include any Windows specific code (or a derivative thereof) from
66 const unsigned char *from, int flen)
101 memcpy(p,from,(unsigned int)flen);
106 const unsigned char *from, int flen, int num)
111 p=from;
65 RSA_padding_add_SSLv23(unsigned char *to, int tlen, const unsigned char *from, int flen) argument
105 RSA_padding_check_SSLv23(unsigned char *to, int tlen, const unsigned char *from, int flen, int num) argument
H A Drsa_x931.c26 * endorse or promote products derived from this software without
30 * 5. Products derived from this software may not be called "OpenSSL"
67 const unsigned char *from, int flen)
73 * nibble and 2 trailer bytes: but 1 hash if is already in 'from'.
99 memcpy(p,from,(unsigned int)flen);
106 const unsigned char *from, int flen, int num)
111 p=from;
66 RSA_padding_add_X931(unsigned char *to, int tlen, const unsigned char *from, int flen) argument
105 RSA_padding_check_X931(unsigned char *to, int tlen, const unsigned char *from, int flen, int num) argument
/barrelfish-master/usr/eclipseclp/ecrc_solvers/propia/dicts/
H A Dexport_all.pl1 % export_all.pl: Export all predicates from a module
/barrelfish-master/lib/zlib/
H A Dinffast.c78 unsigned dmax; /* maximum distance from zlib header */
95 unsigned char FAR *from; /* where to copy match from */ local
187 if (dist > op) { /* see if copy from window */
194 from = window - OFF;
196 from += wsize - op;
197 if (op < len) { /* some from window */
200 PUP(out) = PUP(from);
202 from = out - dist; /* rest from outpu
[all...]
/barrelfish-master/lib/devif/backends/net/mlx4/include/linux/
H A Dio.h112 static inline void __iowrite64_copy(void *to, void *from, size_t count) { argument
118 for (i = 0, src = from, dst = to; i < count; i++, src++, dst++)
126 for (i = 0, src = from, dst = to; i < count; i++, src++, dst++)
/barrelfish-master/lib/libc/gen/
H A Dstatvfs.c43 static int sfs2svfs(const struct statfs *from, struct statvfs *to);
98 sfs2svfs(const struct statfs *from, struct statvfs *to) argument
104 if (from->f_flags & MNT_RDONLY)
106 if (from->f_flags & MNT_NOSUID)
112 to->field = from->field; \
113 if (from->field != to->field) { \
124 to->f_bsize = from->f_iosize;
125 to->f_frsize = from->f_bsize;
/barrelfish-master/lib/libc/sys/
H A Drecvfrom.c6 * under sponsorship from the FreeBSD Foundation.
46 struct sockaddr * __restrict from, socklen_t * __restrict fromlen)
52 from, fromlen));
45 recvfrom(int s, void *buf, size_t len, int flags, struct sockaddr * __restrict from, socklen_t * __restrict fromlen) argument
/barrelfish-master/usr/eclipseclp/Kernel/src/
H A Dhandle.c32 * from Prolog to external objects
154 * Get the data pointer from a handle (expect the given type)
212 pword *from, /* a heap or global stack location */
216 to[0] = from[0];
217 if (ExternalClass(from)->copy && ExternalData(from))
218 to[1].val.ptr = (pword *) ExternalClass(from)->copy(ExternalData(from));
220 to[1].val.ptr = (pword *) ExternalData(from);
221 to[1].tag.kernel = from[
211 handle_copy_anchor( pword *from, pword *to, int trail) argument
[all...]
H A Daddrmap.c103 static void _addr_map(char *from, char *to, long int increment),
104 _addr_init(char *from),
106 _write_range(char *from, char *to, int state);
137 ec_layout(int flags, char *from, char *to, long int increment) argument
145 _addr_init(from);
146 _addr_map(from, to, increment);
150 _addr_init(char *from) argument
182 addr = addr_range_addr = from;
321 _addr_map(char *from, char *to, long int increment) argument
328 if (from !
391 _write_range(char *from, char *to, int state) argument
[all...]
/barrelfish-master/lib/openssl-1.0.0d/demos/engines/rsaref/
H A Drsaref.c51 static int rsaref_private_decrypt(int len, const unsigned char *from,
53 static int rsaref_private_encrypt(int len, const unsigned char *from,
55 static int rsaref_public_encrypt(int len, const unsigned char *from,
57 static int rsaref_public_decrypt(int len, const unsigned char *from,
265 /* Copied from eng_[openssl|dyn].c */
311 static int RSAref_bn2bin(BIGNUM *from, unsigned char *to, int max) argument
315 i=BN_num_bytes(from);
323 if (!BN_bn2bin(from,&(to[max-i])))
329 /* unsigned char *from: [max] */
330 static BIGNUM *RSAref_bin2bn(unsigned char *from, BIGNU argument
342 RSAref_Public_ref2eay(RSArefPublicKey *from, RSA *to) argument
351 RSAref_Public_eay2ref(RSA *from, R_RSA_PUBLIC_KEY *to) argument
360 RSAref_Private_ref2eay(RSArefPrivateKey *from, RSA *to) argument
384 RSAref_Private_eay2ref(RSA *from, R_RSA_PRIVATE_KEY *to) argument
398 rsaref_private_decrypt(int len, const unsigned char *from, unsigned char *to, RSA *rsa, int padding) argument
416 rsaref_private_encrypt(int len, const unsigned char *from, unsigned char *to, RSA *rsa, int padding) argument
439 rsaref_public_decrypt(int len, const unsigned char *from, unsigned char *to, RSA *rsa, int padding) argument
457 rsaref_public_encrypt(int len, const unsigned char *from, unsigned char *to, RSA *rsa, int padding) argument
[all...]
/barrelfish-master/lib/lwip2/src/apps/smtp/
H A Dsmtp.h43 * from interrupt context, e.g. like this:
52 const char *from; member in struct:smtp_send_request
59 * but used from the pointers supplied in this struct.
99 err_t smtp_send_mail_bodycback(const char *from, const char* to, const char* subject,
108 err_t smtp_send_mail(const char *from, const char* to, const char* subject, const char* body,
110 err_t smtp_send_mail_static(const char *from, const char* to, const char* subject, const char* body,
/barrelfish-master/lib/openssl-1.0.0d/demos/engines/cluster_labs/
H A Dcluster_labs.h8 typedef int cl_rsa_pub_enc(int flen, const unsigned char *from,
10 typedef int cl_rsa_pub_dec(int flen, const unsigned char *from,
12 typedef int cl_rsa_priv_enc(int flen, const unsigned char *from,
14 typedef int cl_rsa_priv_dec(int flen, const unsigned char *from,
/barrelfish-master/lib/openssl-1.0.0d/engines/ccgost/
H A Dgost_md.c18 static int gost_digest_copy(EVP_MD_CTX *to,const EVP_MD_CTX *from);
60 int gost_digest_copy(EVP_MD_CTX *to,const EVP_MD_CTX *from) argument
63 if (to->md_data && from->md_data) {
64 memcpy(to->md_data,from->md_data,sizeof(struct ossl_gost_digest_ctx));
/barrelfish-master/lib/openssl-1.0.0d/util/
H A Dmklink.pl6 # specifying the "from" directory.
10 # For each of these files, we create in the "from" directory a link
15 # Apart from this, this script should be able to handle even the most
20 my $from = shift;
23 my @from_path = split(/[\\\/]/, $from);
33 # In this loop, @to_path always is a relative path from
36 # At the end, @from_path (as a relative path from the original pwd)
38 # which means that @to_path then is a path from there to the original pwd.
58 unlink "$from/$file";
59 symlink("$to/$file", "$from/
[all...]
/barrelfish-master/lib/openssl-1.0.0d/crypto/conf/
H A Dconf_def.c35 * The word 'cryptographic' can be left out if the rouines from the library
37 * 4. If you include any Windows specific code (or a derivative thereof) from
75 static int str_copy(CONF *conf,char *section,char **to, char *from);
503 static int str_copy(CONF *conf, char *section, char **pto, char *from) argument
511 len=strlen(from)+1;
516 if (IS_QUOTE(conf,*from))
518 q= *from;
519 from++;
520 while (!IS_EOF(conf,*from) && (*from !
[all...]

Completed in 271 milliseconds

1234567891011>>