Searched refs:in (Results 51 - 75 of 4382) sorted by relevance

1234567891011>>

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/crypto/camellia/
H A Dcmll_ecb.c5 * Redistribution and use in source and binary forms, with or without
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in
20 * for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
28 * nor may "OpenSSL" appear in their names without prior written
34 * for use in the OpenSSL Toolkit (http://www.openssl.org/)"
62 void Camellia_ecb_encrypt(const unsigned char *in, unsigned char *out, argument
66 assert(in && out && key);
70 Camellia_encrypt(in, out, key);
72 Camellia_decrypt(in, ou
[all...]
H A Dcamellia.h5 * Redistribution and use in source and binary forms, with or without
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in
20 * for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
28 * nor may "OpenSSL" appear in their names without prior written
34 * for use in the OpenSSL Toolkit (http://www.openssl.org/)"
64 /* Because array size can't be a const in C, the following two are macros.
65 Both sizes are in bytes. */
93 void Camellia_encrypt(const unsigned char *in, unsigned char *out,
95 void Camellia_decrypt(const unsigned char *in, unsigne
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/ppc/boot/of1275/
H A Dofstdio.c16 ihandle in, out; local
23 if (getprop(chosen, "stdin", &in, sizeof(in)) != 4)
26 *stdin = in;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/avahi-0.6.25/initscript/lfs/
H A DMakefile.am10 # avahi is distributed in the hope that it will be useful, but WITHOUT
22 EXTRA_DIST = avahi.in
28 avahi: avahi.in
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/net/sctp/
H A Dssnmap.c14 * The SCTP reference implementation is distributed in the hope that it
45 static struct sctp_ssnmap *sctp_ssnmap_init(struct sctp_ssnmap *map, __u16 in,
49 * specific needs of in or out streams.
51 static inline size_t sctp_ssnmap_size(__u16 in, __u16 out) argument
53 return sizeof(struct sctp_ssnmap) + (in + out) * sizeof(__u16);
60 struct sctp_ssnmap *sctp_ssnmap_new(__u16 in, __u16 out, argument
66 size = sctp_ssnmap_size(in, out);
75 if (!sctp_ssnmap_init(retval, in, out))
94 static struct sctp_ssnmap *sctp_ssnmap_init(struct sctp_ssnmap *map, __u16 in, argument
97 memset(map, 0x00, sctp_ssnmap_size(in, ou
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/crypto/x509/
H A Dx509_set.c11 * apply to all code found in this distribution, be it the RC4, RSA,
16 * Copyright remains Eric Young's, and as such any Copyright notices in
18 * If this package is used in a product, Eric Young should be given attribution
20 * This can be in the form of a textual message at program startup or
21 * in documentation (online or textual) provided with the package.
23 * Redistribution and use in source and binary forms, with or without
28 * 2. Redistributions in binary form must reproduce the above copyright
29 * notice, this list of conditions and the following disclaimer in the
79 ASN1_INTEGER *in; local
82 in
109 ASN1_TIME *in; local
127 ASN1_TIME *in; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/crypto/x509/
H A Dx509_set.c11 * apply to all code found in this distribution, be it the RC4, RSA,
16 * Copyright remains Eric Young's, and as such any Copyright notices in
18 * If this package is used in a product, Eric Young should be given attribution
20 * This can be in the form of a textual message at program startup or
21 * in documentation (online or textual) provided with the package.
23 * Redistribution and use in source and binary forms, with or without
28 * 2. Redistributions in binary form must reproduce the above copyright
29 * notice, this list of conditions and the following disclaimer in the
79 ASN1_INTEGER *in; local
82 in
109 ASN1_TIME *in; local
127 ASN1_TIME *in; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/source/lib/
H A Dmd5.c4 * written by Colin Plumb in 1993, no copyright is claimed.
5 * This code is in the public domain; do with it what you wish.
25 static void MD5Transform(uint32 buf[4], uint32 const in[16]);
71 t = (t >> 3) & 0x3f; /* Bytes already in shsInfo->data */
76 unsigned char *p = (unsigned char *) ctx->in + t;
84 byteReverse(ctx->in, 16);
85 MD5Transform(ctx->buf, (uint32 *) ctx->in);
89 /* Process data in 64-byte chunks */
92 memmove(ctx->in, buf, 64);
93 byteReverse(ctx->in, 1
166 MD5Transform(uint32 buf[4], uint32 const in[16]) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/cifs/
H A Dmd5.c4 * written by Colin Plumb in 1993, no copyright is claimed.
5 * This code is in the public domain; do with it what you wish.
26 static void MD5Transform(__u32 buf[4], __u32 const in[16]);
75 t = (t >> 3) & 0x3f; /* Bytes already in shsInfo->data */
80 unsigned char *p = (unsigned char *) ctx->in + t;
88 byteReverse(ctx->in, 16);
89 MD5Transform(ctx->buf, (__u32 *) ctx->in);
93 /* Process data in 64-byte chunks */
96 memmove(ctx->in, buf, 64);
97 byteReverse(ctx->in, 1
172 MD5Transform(__u32 buf[4], __u32 const in[16]) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/l2tpd-0.69/
H A Dmd5.c15 * written by Colin Plumb in 1993, no copyright is claimed.
16 * This code is in the public domain; do with it what you wish.
86 t = (t >> 3) & 0x3f; /* Bytes already in shsInfo->data */
92 unsigned char *p = (unsigned char *) ctx->in + t;
101 byteReverse (ctx->in, 16);
102 MD5Transform (ctx->buf, (uint32 *) ctx->in);
106 /* Process data in 64-byte chunks */
110 memcpy (ctx->in, buf, 64);
111 byteReverse (ctx->in, 16);
112 MD5Transform (ctx->buf, (uint32 *) ctx->in);
189 MD5Transform(uint32 buf[4], uint32 const in[16]) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/djgpp/
H A DMakefile.maint10 config.sed: config.in fnchange.in
13 -e 's|\.h\.in|\\\\\\\\.h\\\\\\\\.in|' \
14 -e 's|\.in\.in|\\\\\\\\.in\\\\\\\\.in|' \
15 -e 's|\.sh\.in|\\\\\\\\.sh\\\\\\\\.in|' \
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/crypto/comp/
H A Dc_rle.c8 unsigned int olen, unsigned char *in, unsigned int ilen);
10 unsigned int olen, unsigned char *in, unsigned int ilen);
29 unsigned int olen, unsigned char *in, unsigned int ilen)
40 memcpy(out,in,ilen);
45 unsigned int olen, unsigned char *in, unsigned int ilen)
55 i= *(in++);
58 memcpy(out,in,ilen-1);
28 rle_compress_block(COMP_CTX *ctx, unsigned char *out, unsigned int olen, unsigned char *in, unsigned int ilen) argument
44 rle_expand_block(COMP_CTX *ctx, unsigned char *out, unsigned int olen, unsigned char *in, unsigned int ilen) argument
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/crypto/comp/
H A Dc_rle.c8 unsigned int olen, unsigned char *in, unsigned int ilen);
10 unsigned int olen, unsigned char *in, unsigned int ilen);
29 unsigned int olen, unsigned char *in, unsigned int ilen)
40 memcpy(out,in,ilen);
45 unsigned int olen, unsigned char *in, unsigned int ilen)
55 i= *(in++);
58 memcpy(out,in,ilen-1);
28 rle_compress_block(COMP_CTX *ctx, unsigned char *out, unsigned int olen, unsigned char *in, unsigned int ilen) argument
44 rle_expand_block(COMP_CTX *ctx, unsigned char *out, unsigned int olen, unsigned char *in, unsigned int ilen) argument
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/libvorbis-1.2.3/vq/
H A Dbookutil.h26 extern char *get_line(FILE *in);
27 extern char *setup_line(FILE *in);
28 extern int get_line_value(FILE *in,float *value);
29 extern int get_next_value(FILE *in,float *value);
30 extern int get_next_ivalue(FILE *in,long *ivalue);
32 extern int get_vector(codebook *b,FILE *in,int start,int num,float *a);
33 extern char *find_seek_to(FILE *in,char *s);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/netatalk-2.2.0/etc/papd/
H A Dheaders.c83 int ch_for( struct papfile *in, struct papfile *out _U_) argument
88 switch ( markline( in, &start, &linelength, &crlflength )) {
106 in->pf_state |= PF_TRANSLATE;
107 lp_write( in, start, linelength + crlflength );
108 in->pf_state &= ~PF_TRANSLATE;
110 CONSUME( in, linelength + crlflength );
114 int ch_title( struct papfile *in, struct papfile *out _U_) argument
119 switch ( markline( in, &start, &linelength, &crlflength )) {
141 in->pf_state |= PF_TRANSLATE;
142 lp_write( in, star
160 ch_creator( struct papfile *in, struct papfile *out _U_) argument
192 ch_endcomm( struct papfile *in, struct papfile *out _U_) argument
221 ch_starttranslate( struct papfile *in, struct papfile *out _U_) argument
248 ch_endtranslate(struct papfile *in, struct papfile *out _U_) argument
275 ch_translateone( struct papfile *in, struct papfile *out _U_) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/netatalk-2.2.5/etc/papd/
H A Dheaders.c83 int ch_for( struct papfile *in, struct papfile *out _U_) argument
88 switch ( markline( in, &start, &linelength, &crlflength )) {
106 in->pf_state |= PF_TRANSLATE;
107 lp_write( in, start, linelength + crlflength );
108 in->pf_state &= ~PF_TRANSLATE;
110 CONSUME( in, linelength + crlflength );
114 int ch_title( struct papfile *in, struct papfile *out _U_) argument
119 switch ( markline( in, &start, &linelength, &crlflength )) {
141 in->pf_state |= PF_TRANSLATE;
142 lp_write( in, star
160 ch_creator( struct papfile *in, struct papfile *out _U_) argument
192 ch_endcomm( struct papfile *in, struct papfile *out _U_) argument
221 ch_starttranslate( struct papfile *in, struct papfile *out _U_) argument
248 ch_endtranslate(struct papfile *in, struct papfile *out _U_) argument
275 ch_translateone( struct papfile *in, struct papfile *out _U_) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gettext-runtime/man/
H A DMakefile.am9 ## This program is distributed in the hope that it will be useful,
17 ## Process this file with automake to produce Makefile.in.
24 # A manual page for each of the bin_PROGRAMS in src/Makefile.am.
31 man_MAN1IN = gettext.1.in ngettext.1.in
36 man_MAN3IN = gettext.3.in ngettext.3.in \
37 textdomain.3.in bindtextdomain.3.in bind_textdomain_codeset.3.in
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/curl-7.23.1/source/lib/
H A Descape.c10 * This software is licensed as described in the file COPYING, which
23 /* Escape and unescape URL encoding in strings. The functions return a new
45 static bool Curl_isunreserved(unsigned char in) argument
47 switch (in) {
85 unsigned char in; /* we need to treat the characters unsigned */ local
97 in = *string;
99 if(Curl_isunreserved(in))
101 ns[strindex++]=in;
117 res = Curl_convert_to_network(handle, &in, 1);
124 snprintf(&ns[strindex], 4, "%%%02X", in);
145 unsigned char in; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/ffmpeg-0.5.1/libavcodec/sparc/
H A Dsimple_idct_vis.c15 * FFmpeg is distributed in the hope that it will be useful,
57 #define LOADSCALE(in) \
58 "ldd [" in "], %%f0 \n\t"\
59 "ldd [" in "+16], %%f2 \n\t"\
60 "ldd [" in "+32], %%f4 \n\t"\
61 "ldd [" in "+48], %%f6 \n\t"\
62 "ldd [" in "+64], %%f8 \n\t"\
63 "ldd [" in "+80], %%f10 \n\t"\
64 "ldd [" in "+96], %%f12 \n\t"\
65 "ldd [" in "
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/demos/bio/
H A Dsaccept.c20 BIO *in=NULL; variable
24 if (in != NULL)
25 BIO_free(in);
68 if ((in=BIO_new_accept(port)) == NULL) goto err;
70 /* This means that when a new connection is acceptede on 'in',
74 BIO_set_accept_bios(in,ssl_bio);
79 * will occur in the BIO_read() function. */
81 if (BIO_do_accept(in) <= 0) goto err;
85 i=BIO_read(in,buf,512);
93 tmp=BIO_pop(in);
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/include/openssl/
H A Daes.h5 * Redistribution and use in source and binary forms, with or without
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in
20 * for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
28 * nor may "OpenSSL" appear in their names without prior written
34 * for use in the OpenSSL Toolkit (http://www.openssl.org/)"
64 /* Because array size can't be a const in C, the following two are macros.
65 Both sizes are in bytes. */
91 void AES_encrypt(const unsigned char *in, unsigned char *out,
93 void AES_decrypt(const unsigned char *in, unsigne
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/crypto/aes/
H A Daes.h5 * Redistribution and use in source and binary forms, with or without
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in
20 * for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
28 * nor may "OpenSSL" appear in their names without prior written
34 * for use in the OpenSSL Toolkit (http://www.openssl.org/)"
64 /* Because array size can't be a const in C, the following two are macros.
65 Both sizes are in bytes. */
91 void AES_encrypt(const unsigned char *in, unsigned char *out,
93 void AES_decrypt(const unsigned char *in, unsigne
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/demos/bio/
H A Dsaccept.c20 BIO *in=NULL; variable
24 if (in != NULL)
25 BIO_free(in);
68 if ((in=BIO_new_accept(port)) == NULL) goto err;
70 /* This means that when a new connection is acceptede on 'in',
74 BIO_set_accept_bios(in,ssl_bio);
79 * will occur in the BIO_read() function. */
81 if (BIO_do_accept(in) <= 0) goto err;
85 i=BIO_read(in,buf,512);
93 tmp=BIO_pop(in);
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/lib/
H A Dhalfmd4.c13 * good macro practice, in favor of extra legibility.
25 __u32 half_md4_transform(__u32 buf[4], __u32 const in[8]) argument
30 ROUND(F, a, b, c, d, in[0] + K1, 3);
31 ROUND(F, d, a, b, c, in[1] + K1, 7);
32 ROUND(F, c, d, a, b, in[2] + K1, 11);
33 ROUND(F, b, c, d, a, in[3] + K1, 19);
34 ROUND(F, a, b, c, d, in[4] + K1, 3);
35 ROUND(F, d, a, b, c, in[5] + K1, 7);
36 ROUND(F, c, d, a, b, in[6] + K1, 11);
37 ROUND(F, b, c, d, a, in[
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/crypto/
H A Dmd5.c7 * public domain implementation written by Colin Plumb in 1993.
35 #define MD5STEP(f, w, x, y, z, in, s) \
36 (w += f(x, y, z) + in, w = (w<<s | w>>(32-s)) + x)
44 static void md5_transform(u32 *hash, u32 const *in) argument
53 MD5STEP(F1, a, b, c, d, in[0] + 0xd76aa478, 7);
54 MD5STEP(F1, d, a, b, c, in[1] + 0xe8c7b756, 12);
55 MD5STEP(F1, c, d, a, b, in[2] + 0x242070db, 17);
56 MD5STEP(F1, b, c, d, a, in[3] + 0xc1bdceee, 22);
57 MD5STEP(F1, a, b, c, d, in[4] + 0xf57c0faf, 7);
58 MD5STEP(F1, d, a, b, c, in[
[all...]

Completed in 322 milliseconds

1234567891011>>