Searched refs:out (Results 201 - 225 of 4004) sorted by relevance

1234567891011>>

/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/samba-3.0.13/source/lib/
H A Dutil_uuid.c69 char *out; local
71 asprintf(&out, "%08x-%04x-%04x-%02x%02x-%02x%02x%02x%02x%02x%02x",
77 return out;
82 static char out[37]; local
84 slprintf(out, sizeof(out),
90 return out;
101 if (!in || !uu) goto out;
104 if ((end - ptr) != 8 || *end != '-') goto out;
108 if ((end - ptr) != 4 || *end != '-') goto out;
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/openssl/crypto/x509v3/
H A Dv3_prn.c67 static int unknown_ext_print(BIO *out, X509_EXTENSION *ext, unsigned long flag, int indent, int supported);
69 /* Print out a name+value stack */
71 void X509V3_EXT_val_prn(BIO *out, STACK_OF(CONF_VALUE) *val, int indent, int ml) argument
77 BIO_printf(out, "%*s", indent, "");
78 if(!sk_CONF_VALUE_num(val)) BIO_puts(out, "<EMPTY>\n");
81 if(ml) BIO_printf(out, "%*s", indent, "");
82 else if(i > 0) BIO_printf(out, ", ");
84 if(!nval->name) BIO_puts(out, nval->value);
85 else if(!nval->value) BIO_puts(out, nval->name);
87 else BIO_printf(out, "
108 X509V3_EXT_print(BIO *out, X509_EXTENSION *ext, unsigned long flag, int indent) argument
197 unknown_ext_print(BIO *out, X509_EXTENSION *ext, unsigned long flag, int indent, int supported) argument
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/openssl-0.9.8e/crypto/x509v3/
H A Dv3_prn.c67 static int unknown_ext_print(BIO *out, X509_EXTENSION *ext, unsigned long flag, int indent, int supported);
69 /* Print out a name+value stack */
71 void X509V3_EXT_val_prn(BIO *out, STACK_OF(CONF_VALUE) *val, int indent, int ml) argument
77 BIO_printf(out, "%*s", indent, "");
78 if(!sk_CONF_VALUE_num(val)) BIO_puts(out, "<EMPTY>\n");
81 if(ml) BIO_printf(out, "%*s", indent, "");
82 else if(i > 0) BIO_printf(out, ", ");
84 if(!nval->name) BIO_puts(out, nval->value);
85 else if(!nval->value) BIO_puts(out, nval->name);
87 else BIO_printf(out, "
108 X509V3_EXT_print(BIO *out, X509_EXTENSION *ext, unsigned long flag, int indent) argument
198 unknown_ext_print(BIO *out, X509_EXTENSION *ext, unsigned long flag, int indent, int supported) argument
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/openssl/ms/
H A Dmw.bat18 dllwrap --dllname libeay32.dll --output-lib out/libeay32.a --def ms/libeay32.def out/libcrypto.a -lwsock32 -lgdi32
20 dllwrap --dllname libssl32.dll --output-lib out/libssl32.a --def ms/ssleay32.def out/libssl.a out/libeay32.a
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/openssl-0.9.8e/ms/
H A Dmw.bat18 dllwrap --dllname libeay32.dll --output-lib out/libeay32.a --def ms/libeay32.def out/libcrypto.a -lwsock32 -lgdi32
20 dllwrap --dllname libssl32.dll --output-lib out/libssl32.a --def ms/ssleay32.def out/libssl.a out/libeay32.a
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/drivers/net/mlx4/
H A Dreset.c77 goto out;
89 goto out;
98 goto out;
101 /* grab HW semaphore to lock out flash updates */
115 goto out;
135 goto out;
146 goto out;
154 goto out;
166 goto out;
175 goto out;
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/openssl/crypto/asn1/
H A Dtasn_enc.c66 static int asn1_i2d_ex_primitive(ASN1_VALUE **pval, unsigned char **out, const ASN1_ITEM *it, int tag, int aclass);
67 static int asn1_set_seq_out(STACK_OF(ASN1_VALUE) *seq, unsigned char **out, int skcontlen, const ASN1_ITEM *item, int isset);
70 * standard 'i2d' function. 'out' points to
77 * buffer is NULL (i.e. *out == NULL) then a buffer is
82 int ASN1_item_i2d(ASN1_VALUE *val, unsigned char **out, const ASN1_ITEM *it)
84 if(out && !*out) {
93 *out = buf;
97 return ASN1_item_ex_i2d(&val, out, it, -1, 0);
105 int ASN1_item_ex_i2d(ASN1_VALUE **pval, unsigned char **out, cons argument
213 ASN1_template_i2d(ASN1_VALUE **pval, unsigned char **out, const ASN1_TEMPLATE *tt) argument
357 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/ap/gpl/minidlna/ffmpeg-0.5.1/libavcodec/
H A Droqaudioenc.c124 unsigned char *out; local
135 out = frame;
138 bytestream_put_byte(&out, stereo ? 0x21 : 0x20);
139 bytestream_put_byte(&out, 0x10);
140 bytestream_put_le32(&out, avctx->frame_size*avctx->channels);
143 bytestream_put_byte(&out, (context->lastSample[1])>>8);
144 bytestream_put_byte(&out, (context->lastSample[0])>>8);
146 bytestream_put_le16(&out, context->lastSample[0]);
152 *out++ = dpcm_predict(&context->lastSample[ch], *in++);
158 return out
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/sound/aoa/soundbus/i2sbus/
H A Di2sbus-interface.h91 static inline int i2s_sf_mclkdiv(int div, int *out) argument
96 case 1: *out |= I2S_SF_MCLKDIV_1; return 0;
97 case 3: *out |= I2S_SF_MCLKDIV_3; return 0;
98 case 5: *out |= I2S_SF_MCLKDIV_5; return 0;
99 case 14: *out |= I2S_SF_MCLKDIV_14; return 0;
105 *out |= I2S_SF_MCLKDIV_OTHER(div);
118 static inline int i2s_sf_sclkdiv(int div, int *out) argument
123 case 1: *out |= I2S_SF_SCLKDIV_1; return 0;
124 case 3: *out |= I2S_SF_SCLKDIV_3; return 0;
129 *out |
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/minidlna/libvorbis-1.2.3/vq/
H A Dbookutil.c232 fprintf(stderr,"out of data while reading codebook %s\n",filename);
242 fprintf(stderr,"out of data while reading codebook %s\n",filename);
253 fprintf(stderr,"out of data while reading codebook %s\n",filename);
263 fprintf(stderr,"out of data while reading codebook %s\n",filename);
289 fprintf(stderr,"out of data 1 while reading codebook %s\n",filename);
298 fprintf(stderr,"out of data 2 while reading codebook %s\n",filename);
325 fprintf(stderr,"out of data (pigeonmap) while reading codebook %s\n",filename);
334 fprintf(stderr,"out of data (fitlist) while reading codebook %s\n",filename);
344 fprintf(stderr,"out of data (fitmap) while reading codebook %s\n",filename);
354 fprintf(stderr,"out o
530 write_codebook(FILE *out,char *name,const static_codebook *c) argument
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/openssl/crypto/perlasm/
H A Dalpha.pl15 sub main'asm_init_output { @out=(); }
16 sub main'asm_get_output { return(@out); }
98 push(@out,@_);
154 push(@out,"\t$name\t");
156 push(@out,$p1.",");
159 push(@out,$tmp1);
162 push(@out,$p2.",");
165 push(@out,$tmp1);
167 push(@out,&conv($p3)."\n");
176 push(@out,"\
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/minidlna/flac-1.2.1/src/share/utf8/
H A Dutf8.c51 unsigned char *out; local
70 out = safe_malloc_add_2op_(size, /*+*/1);
71 if (out == NULL)
79 out[out_index++] = (unsigned char)c;
81 out[out_index++] = 0xc0 | (c >> 6);
82 out[out_index++] = 0x80 | (c & 0x3f);
84 out[out_index++] = 0xe0 | (c >> 12);
85 out[out_index++] = 0x80 | ((c >> 6) & 0x3f);
86 out[out_index++] = 0x80 | (c & 0x3f);
90 out[out_inde
99 wchar_t *out; local
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/libiconv-1.11/tests/
H A Dtable-from.c48 static int try (iconv_t cd, unsigned char buf[], unsigned int buflen, unsigned int* out) argument
52 char* outbuf = (char*) out;
82 /* Returns the out[] buffer as a Unicode value, formatted as 0x%04X. */
83 static const char* ucs4_decode (const unsigned int* out, unsigned int outlen) argument
90 sprintf (p, "0x%04X", out[0]);
91 out += 1; outlen -= 1;
127 unsigned int out[3]; local
133 result = try(cd,buf,1,out);
136 const char* unicode = ucs4_decode(out,result);
142 result = try(cd,buf,2,out);
[all...]
H A Dcheck-subst14 $iconv $options_ascii -f ASCII -t ASCII < tmp-in > tmp-out
18 cmp tmp-out tmp-ok
26 $iconv $options_utf8 -f ASCII -t UTF-8 2>/dev/null < tmp-in > tmp-out
30 cmp tmp-out tmp-ok
37 $iconv $options_utf8 -f ASCII -t ISO-8859-1 2>/dev/null < tmp-in > tmp-out
38 $iconv -f ISO-8859-1 -t UTF-8 < tmp-out > tmp-out2
50 $iconv --byte-subst='<0x%010000x>' -f ASCII -t ASCII < tmp-in > tmp-out
52 cmp tmp-out tmp-ok
59 $iconv $options_ascii -f UTF-8 -t ASCII < tmp-in > tmp-out
63 cmp tmp-out tm
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/netatalk-2.2.0/etc/papd/
H A Dqueries.c60 int cq_default( struct papfile *in, struct papfile *out) argument
103 append( out, p, stop - p + crlflength );
120 int cq_k4login( struct papfile *in, struct papfile *out) argument
158 append( out, LoginFailed, strlen( LoginFailed ));
168 append( out, LoginOK, strlen( LoginOK ));
176 int cq_uameth( struct papfile *in, struct papfile *out) argument
205 append( out, uameth, strlen( uameth ));
216 int gq_true( struct papfile *out) argument
219 append( out, "true\n", 5 );
226 int gq_pagecost( struct papfile *out) argument
248 gq_balance( struct papfile *out) argument
268 gq_rbispoolerid( struct papfile *out) argument
282 gq_rbiuamlist( struct papfile *out) argument
317 cq_query( struct papfile *in, struct papfile *out) argument
386 cq_font_answer( char *start, char *stop, struct papfile *out) argument
423 cq_font(struct papfile *in, struct papfile *out) argument
484 cq_feature( struct papfile *in, struct papfile *out) argument
545 cq_printer(struct papfile *in, struct papfile *out) argument
625 cq_rmjob( struct papfile *in, struct papfile *out) argument
668 cq_listq( struct papfile *in, struct papfile *out) argument
707 cq_rbilogin( struct papfile *in, struct papfile *out) argument
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/java/src/com/sleepycat/asm/
H A DLabel.java157 * @param out the bytecode of the method.
167 final ByteVector out,
173 out.putInt(position - source);
175 out.putShort(position - source);
179 addReference(-1 - source, out.length);
180 out.putInt(-1);
182 addReference(source, out.length);
183 out.putShort(-1);
165 put( final MethodWriter owner, final ByteVector out, final int source, final boolean wideOffset) argument
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/openssl/crypto/des/
H A Dpcbc_enc.c35 * The word 'cryptographic' can be left out if the rouines from the library
68 unsigned char *out,*iv; local
71 out=output;
94 l2c(tout0,out);
95 l2c(tout1,out);
112 l2c(tout0,out);
113 l2c(tout1,out);
116 l2cn(tout0,tout1,out,length);
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/openssl/crypto/rc4/
H A Drc4.c35 * The word 'cryptographic' can be left out if the rouines from the library
68 " -out arg - output file - default stdout\n",
75 FILE *in=NULL,*out=NULL; local
92 else if (strcmp(*argv,"-out") == 0)
133 out=stdout;
136 out=fopen(outfile,"w");
137 if (out == NULL)
149 setmode(fileno(out),O_BINARY);
180 i=fwrite(buf,(unsigned int)i,1,out);
187 fclose(out);
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/openssl-0.9.8e/crypto/rc4/
H A Drc4.c35 * The word 'cryptographic' can be left out if the rouines from the library
69 " -out arg - output file - default stdout\n",
76 FILE *in=NULL,*out=NULL; local
93 else if (strcmp(*argv,"-out") == 0)
134 out=stdout;
137 out=fopen(outfile,"w");
138 if (out == NULL)
150 setmode(fileno(out),O_BINARY);
181 i=fwrite(buf,(unsigned int)i,1,out);
188 fclose(out);
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/netatalk-2.2.0/libatalk/unicode/charsets/
H A Dmac_chinese_trad.c46 static size_t mac_chinese_trad_char_push(u_int8_t* out, const ucs2_t* in, size_t* size) argument
53 out[0] = 0x80;
56 out[0] = (u_int8_t)wc;
75 mac_chinese_trad_uni2_charset), out);
85 static size_t mac_chinese_trad_char_pull(ucs2_t* out, const u_int8_t* in, size_t* size) argument
91 *out = c;
113 out, mac_chinese_trad_compose);
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/openssl-0.9.8e/crypto/des/
H A Dpcbc_enc.c35 * The word 'cryptographic' can be left out if the rouines from the library
68 unsigned char *out,*iv; local
71 out=output;
94 l2c(tout0,out);
95 l2c(tout1,out);
112 l2c(tout0,out);
113 l2c(tout1,out);
116 l2cn(tout0,tout1,out,length);
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/mm/
H A Dmsync.c25 * write out the dirty pages and wait on the writeout and check the result.
40 goto out;
42 goto out;
44 goto out;
49 goto out;
52 goto out;
88 goto out;
101 out:
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/drivers/parisc/
H A Dpdc_stable.c186 * pointer, from which it'll find out the corresponding hardware path.
238 char *out = buf; local
256 out += sprintf(out, "%u/", (unsigned char)devpath->bc[i]);
258 out += sprintf(out, "%u\n", (unsigned char)devpath->mod);
260 return out - buf;
340 char *out = buf; local
356 out += sprintf(out, "
502 char *out = buf; local
522 char *out = buf; local
571 char *out = buf; local
597 char *out = buf; local
618 char *out = buf; local
645 char *out = buf; local
670 char *out = buf; local
699 char *out = buf; local
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/drivers/net/wireless/bcm43xx/
H A Dbcm43xx_power.c161 goto out;
188 out:
201 goto out;
203 goto out;
207 goto out;
216 out:
234 goto out;
240 goto out;
269 out:
276 u32 in, out, outenabl local
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/minidlna/jpeg-7/
H A Dansi2knr.c65 lpd 2000-04-12 backs out Eggert's changes because of bugs:
234 FILE *out = stdout; local
280 out = fopen(output_name, "w");
281 if ( out == NULL ) {
301 fprintf(out, "#line 1 \"%s\"\n", filename);
315 convert1(buf, out, 1, convert_varargs);
328 convert1(buf, out, 0, convert_varargs);
329 fputs(more, out);
339 fputs(buf, out);
350 wl: fputs(buf, out);
[all...]

Completed in 318 milliseconds

1234567891011>>