Searched refs:out (Results 226 - 250 of 4004) sorted by relevance

1234567891011>>

/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/openssl-0.9.8e/apps/
H A Drand.c69 /* -out file - write to file
87 BIO *out = NULL; local
106 if (strcmp(argv[i], "-out") == 0)
158 BIO_printf(bio_err, "-out file - write to file\n");
176 out = BIO_new(BIO_s_file());
177 if (out == NULL)
180 r = BIO_write_filename(out, outfile);
183 r = BIO_set_fp(out, stdout, BIO_NOCLOSE | BIO_FP_TEXT);
187 out = BIO_push(tmpbio, out);
[all...]
H A Dnseq.c73 BIO *in = NULL, *out = NULL; local
89 } else if (!strcmp (*args, "-out")) {
103 BIO_printf (bio_err, "-out file output file\n");
117 if (!(out = BIO_new_file (outfile, "w"))) {
123 out = BIO_new_fp(stdout, BIO_NOCLOSE);
127 out = BIO_push(tmpbio, out);
143 PEM_write_bio_NETSCAPE_CERT_SEQUENCE(out, seq);
156 dump_cert_text(out, x509);
157 PEM_write_bio_X509(out, x50
[all...]
H A Dpkcs8.c75 BIO *in = NULL, *out = NULL; local
193 else if (!strcmp (*args, "-out"))
215 BIO_printf(bio_err, "-out file output file\n");
258 if (!(out = BIO_new_file (outfile, "wb")))
267 out = BIO_new_fp (stdout, BIO_NOCLOSE);
271 out = BIO_push(tmpbio, out);
282 BIO_free_all(out);
290 BIO_free_all(out);
296 PEM_write_bio_PKCS8_PRIV_KEY_INFO(out, p8in
[all...]
H A Drsa.c35 * The word 'cryptographic' can be left out if the rouines from the library
80 * -out arg - output file - default stdout
106 BIO *out=NULL; local
151 else if (strcmp(*argv,"-out") == 0)
207 BIO_printf(bio_err," -out arg output file\n");
223 BIO_printf(bio_err," -noout don't print key out\n");
250 out=BIO_new(BIO_s_file());
279 BIO_set_fp(out,stdout,BIO_NOCLOSE);
283 out = BIO_push(tmpbio, out);
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/openssl-0.9.8e/crypto/asn1/
H A Dtasn_enc.c67 static int asn1_i2d_ex_primitive(ASN1_VALUE **pval, unsigned char **out,
70 static int asn1_set_seq_out(STACK_OF(ASN1_VALUE) *sk, unsigned char **out,
73 static int asn1_template_ex_i2d(ASN1_VALUE **pval, unsigned char **out,
76 static int asn1_item_flags_i2d(ASN1_VALUE *val, unsigned char **out,
83 int ASN1_item_ndef_i2d(ASN1_VALUE *val, unsigned char **out, argument
86 return asn1_item_flags_i2d(val, out, it, ASN1_TFLG_NDEF);
89 int ASN1_item_i2d(ASN1_VALUE *val, unsigned char **out, const ASN1_ITEM *it) argument
91 return asn1_item_flags_i2d(val, out, it, 0);
95 * standard 'i2d' function. 'out' points to
99 * buffer is NULL (i.e. *out
103 asn1_item_flags_i2d(ASN1_VALUE *val, unsigned char **out, const ASN1_ITEM *it, int flags) argument
130 ASN1_item_ex_i2d(ASN1_VALUE **pval, unsigned char **out, const ASN1_ITEM *it, int tag, int aclass) argument
264 ASN1_template_i2d(ASN1_VALUE **pval, unsigned char **out, const ASN1_TEMPLATE *tt) argument
270 asn1_template_ex_i2d(ASN1_VALUE **pval, unsigned char **out, const ASN1_TEMPLATE *tt, int tag, int iclass) argument
504 asn1_i2d_ex_primitive(ASN1_VALUE **pval, unsigned char **out, const ASN1_ITEM *it, int tag, int aclass) argument
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/fs/
H A Dsync.c21 * sync everything. Start out by waking pdflush, because that writes back
87 goto out;
104 out:
134 * zero then sys_sync_file_range() will operate from offset out to EOF.
172 * It should be noted that none of these operations write out the file's
188 goto out;
193 goto out;
195 goto out;
197 goto out;
206 goto out;
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/openssl/apps/
H A Drand.c69 /* -out file - write to file
87 BIO *out = NULL; local
106 if (strcmp(argv[i], "-out") == 0)
158 BIO_printf(bio_err, "-out file - write to file\n");
176 out = BIO_new(BIO_s_file());
177 if (out == NULL)
180 r = BIO_write_filename(out, outfile);
183 r = BIO_set_fp(out, stdout, BIO_NOCLOSE | BIO_FP_TEXT);
187 out = BIO_push(tmpbio, out);
[all...]
H A Dnseq.c73 BIO *in = NULL, *out = NULL; local
89 } else if (!strcmp (*args, "-out")) {
103 BIO_printf (bio_err, "-out file output file\n");
117 if (!(out = BIO_new_file (outfile, "w"))) {
123 out = BIO_new_fp(stdout, BIO_NOCLOSE);
127 out = BIO_push(tmpbio, out);
143 PEM_write_bio_NETSCAPE_CERT_SEQUENCE(out, seq);
156 dump_cert_text(out, x509);
157 PEM_write_bio_X509(out, x50
[all...]
H A Dpkcs8.c75 BIO *in = NULL, *out = NULL; local
193 else if (!strcmp (*args, "-out"))
215 BIO_printf(bio_err, "-out file output file\n");
258 if (!(out = BIO_new_file (outfile, "wb")))
267 out = BIO_new_fp (stdout, BIO_NOCLOSE);
271 out = BIO_push(tmpbio, out);
282 BIO_free_all(out);
290 BIO_free_all(out);
296 PEM_write_bio_PKCS8_PRIV_KEY_INFO(out, p8in
[all...]
H A Drsa.c35 * The word 'cryptographic' can be left out if the rouines from the library
78 * -out arg - output file - default stdout
101 BIO *out=NULL; local
146 else if (strcmp(*argv,"-out") == 0)
202 BIO_printf(bio_err," -out arg output file\n");
214 BIO_printf(bio_err," -noout don't print key out\n");
241 out=BIO_new(BIO_s_file());
270 BIO_set_fp(out,stdout,BIO_NOCLOSE);
274 out = BIO_push(tmpbio, out);
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/openssl/crypto/des/
H A Dncbc_enc.c40 * The word 'cryptographic' can be left out if the rouines from the library
67 void DES_cbc_encrypt(const unsigned char *in, unsigned char *out, long length, argument
70 void DES_ncbc_encrypt(const unsigned char *in, unsigned char *out, long length,
93 tout0=tin[0]; l2c(tout0,out);
94 tout1=tin[1]; l2c(tout1,out);
102 tout0=tin[0]; l2c(tout0,out);
103 tout1=tin[1]; l2c(tout1,out);
122 l2c(tout0,out);
123 l2c(tout1,out);
134 l2cn(tout0,tout1,out,
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/wget-1.12/lib/
H A Dgetpass.c90 FILE *in, *out; local
104 out = stderr;
111 out = in = tty;
114 flockfile (out);
129 fputs_unlocked (prompt, out);
130 fflush_unlocked (out);
137 positioning function. Suppose in == out; then without this fseek
141 == fileno (out). The POSIX restrictions are tricky and change
143 fseek even if in != out. */
144 fseeko (out,
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/openssl-0.9.8e/crypto/des/
H A Dncbc_enc.c40 * The word 'cryptographic' can be left out if the rouines from the library
67 void DES_cbc_encrypt(const unsigned char *in, unsigned char *out, long length, argument
70 void DES_ncbc_encrypt(const unsigned char *in, unsigned char *out, long length,
93 tout0=tin[0]; l2c(tout0,out);
94 tout1=tin[1]; l2c(tout1,out);
102 tout0=tin[0]; l2c(tout0,out);
103 tout1=tin[1]; l2c(tout1,out);
122 l2c(tout0,out);
123 l2c(tout1,out);
134 l2cn(tout0,tout1,out,
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/minidlna/ffmpeg-0.5.1/libavcodec/sparc/
H A Dsimple_idct_vis.c305 #define STOREROWS(out) \
306 "std %%f48, [" out "+112] \n\t"\
307 "std %%f50, [" out "+96] \n\t"\
308 "std %%f52, [" out "+80] \n\t"\
309 "std %%f54, [" out "+64] \n\t"\
310 "std %%f16, [" out "] \n\t"\
311 "std %%f20, [" out "+16] \n\t"\
312 "std %%f24, [" out "+32] \n\t"\
313 "std %%f28, [" out "+48] \n\t"\
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/openssl/crypto/perlasm/
H A Dx86ms.pl27 sub main'asm_init_output { @out=(); }
28 sub main'asm_get_output { return(@out); }
170 push(@out,"\t$name\t");
173 push(@out,$t);
175 push(@out,"\t" x $l);
176 push(@out,&conv($p2));
177 push(@out,"\n");
184 push(@out,"\t$name\n");
192 push(@out,"\t$name\t".&conv($p1)."\n");
207 grep(s/\.386/\.486/,@out);
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/crypto/
H A Dscatterwalk.h66 static inline void scatterwalk_unmap(void *vaddr, int out) argument
68 crypto_kunmap(vaddr, out);
73 size_t nbytes, int out);
74 void *scatterwalk_map(struct scatter_walk *walk, int out);
75 void scatterwalk_done(struct scatter_walk *walk, int out, int more);
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/drivers/acpi/resources/
H A Drsxface.c52 #define ACPI_COPY_FIELD(out, in, field) ((out)->field = (in)->field)
53 #define ACPI_COPY_ADDRESS(out, in) \
54 ACPI_COPY_FIELD(out, in, resource_type); \
55 ACPI_COPY_FIELD(out, in, producer_consumer); \
56 ACPI_COPY_FIELD(out, in, decode); \
57 ACPI_COPY_FIELD(out, in, min_address_fixed); \
58 ACPI_COPY_FIELD(out, in, max_address_fixed); \
59 ACPI_COPY_FIELD(out, in, info); \
60 ACPI_COPY_FIELD(out, i
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/fs/nls/
H A Dnls_koi8-ru.c17 unsigned char *out, int boundlen)
25 out[0] = 0xbe;
27 out[0] = 0xae;
31 return p_nls->uni2char(uni, out, boundlen);
36 return p_nls->uni2char(uni, out, boundlen);
16 uni2char(const wchar_t uni, unsigned char *out, int boundlen) argument
H A Dnls_utf8.c14 static int uni2char(wchar_t uni, unsigned char *out, int boundlen) argument
18 if ( (n = utf8_wctomb(out, uni, boundlen)) == -1) {
19 *out = '?';
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/test/scr024/src/com/sleepycat/bind/tuple/test/
H A DTupleOrderingTest.java23 private TupleOutput out; field in class:TupleOrderingTest
54 out = new TupleOutput();
61 out = null;
77 byte[] buf = new byte[out.size()];
78 System.arraycopy(out.getBufferBytes(), out.getBufferOffset(),
137 out.reset();
143 out.reset();
156 out.writeString(DATA[i]);
160 out
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/arch/sparc/kernel/
H A Dsys_sparc.c100 goto out;
103 out:
124 goto out;
127 goto out;
130 goto out;
135 goto out;
139 goto out;
141 goto out;
145 goto out;
152 goto out;
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/openssl/crypto/evp/
H A Ddigest.c35 * The word 'cryptographic' can be left out if the rouines from the library
288 int EVP_MD_CTX_copy(EVP_MD_CTX *out, const EVP_MD_CTX *in) argument
290 EVP_MD_CTX_init(out);
291 return EVP_MD_CTX_copy_ex(out, in);
294 int EVP_MD_CTX_copy_ex(EVP_MD_CTX *out, const EVP_MD_CTX *in) argument
311 if (out->digest == in->digest)
313 tmp_buf = out->md_data;
314 EVP_MD_CTX_set_flags(out,EVP_MD_CTX_FLAG_REUSE);
317 EVP_MD_CTX_cleanup(out);
318 memcpy(out,i
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/openssl-0.9.8e/crypto/evp/
H A Ddigest.c35 * The word 'cryptographic' can be left out if the rouines from the library
243 int EVP_MD_CTX_copy(EVP_MD_CTX *out, const EVP_MD_CTX *in) argument
245 EVP_MD_CTX_init(out);
246 return EVP_MD_CTX_copy_ex(out, in);
249 int EVP_MD_CTX_copy_ex(EVP_MD_CTX *out, const EVP_MD_CTX *in) argument
266 if (out->digest == in->digest)
268 tmp_buf = out->md_data;
269 EVP_MD_CTX_set_flags(out,EVP_MD_CTX_FLAG_REUSE);
272 EVP_MD_CTX_cleanup(out);
273 memcpy(out,i
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/minidlna/libvorbis-1.2.3/vq/
H A Dbuild.c30 static char *rline(FILE *in,FILE *out){ argument
82 FILE *out=NULL; local
114 out=fopen(filename,"w");
115 if(out==NULL){
124 line=rline(in,out);
126 line=rline(in,out);
136 line=rline(in,out);
151 line=rline(in,out);
159 for(j=0;j<entries;j++)line=rline(in,out);
170 line=rline(in,out);
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/net/sunrpc/auth_gss/
H A Dgss_spkm3_token.c91 decode_asn1_bitstring(struct xdr_netobj *out, char *in, int enclen, int explen) argument
93 if (!(out->data = kzalloc(explen,GFP_KERNEL)))
95 out->len = explen;
96 memcpy(out->data, in, enclen);
213 goto out;
221 goto out;
227 goto out;
233 goto out;
239 goto out;
245 goto out;
[all...]

Completed in 119 milliseconds

1234567891011>>