Searched refs:inf (Results 1 - 25 of 165) sorted by relevance

1234567

/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/zlib-1.2.3/contrib/iostream3/
H A Dtest.cc14 gzifstream inf; local
26 inf.open("test1.txt.gz");
27 while (inf.getline(buf,80,'\n')) {
28 std::cout << buf << "\t(" << inf.rdbuf()->in_avail() << " chars left in buffer)\n";
30 inf.close();
41 inf.rdbuf()->pubsetbuf(0,0);
42 inf.open("test2.txt.gz");
43 while (inf.getline(buf,80,'\n')) {
44 std::cout << buf << "\t(" << inf.rdbuf()->in_avail() << " chars left in buffer)\n";
46 inf
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/minidlna/zlib-1.2.3/contrib/iostream3/
H A Dtest.cc14 gzifstream inf; local
26 inf.open("test1.txt.gz");
27 while (inf.getline(buf,80,'\n')) {
28 std::cout << buf << "\t(" << inf.rdbuf()->in_avail() << " chars left in buffer)\n";
30 inf.close();
41 inf.rdbuf()->pubsetbuf(0,0);
42 inf.open("test2.txt.gz");
43 while (inf.getline(buf,80,'\n')) {
44 std::cout << buf << "\t(" << inf.rdbuf()->in_avail() << " chars left in buffer)\n";
46 inf
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/udhcpd/
H A Dsocket.h6 int listen_socket(unsigned int ip, int port, char *inf);
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/zlib-1.2.3/examples/
H A Dfitblk.c92 /* recompress from inf's input to def's output; the input for inf and
96 local int recompress(z_streamp inf, z_streamp def) argument
104 inf->avail_out = RAWLEN;
105 inf->next_out = raw;
106 ret = inflate(inf, Z_NO_FLUSH);
113 def->avail_in = RAWLEN - inf->avail_out;
115 if (inf->avail_out != 0)
134 z_stream def, inf; /* zlib deflate and inflate states */ local
180 inf
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/minidlna/zlib-1.2.3/examples/
H A Dfitblk.c92 /* recompress from inf's input to def's output; the input for inf and
96 local int recompress(z_streamp inf, z_streamp def) argument
104 inf->avail_out = RAWLEN;
105 inf->next_out = raw;
106 ret = inflate(inf, Z_NO_FLUSH);
113 def->avail_in = RAWLEN - inf->avail_out;
115 if (inf->avail_out != 0)
134 z_stream def, inf; /* zlib deflate and inflate states */ local
180 inf
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/samba-3.0.13/source/rpc_parse/
H A Dparse_wks.c75 void init_wks_info_100(WKS_INFO_100 *inf, argument
81 inf->platform_id = platform_id; /* 0x0000 01f4 - unknown */
82 inf->ver_major = ver_major; /* os major version */
83 inf->ver_minor = ver_minor; /* os minor version */
85 init_buf_unistr2(&inf->uni_compname, &inf->ptr_compname, my_name );
86 init_buf_unistr2(&inf->uni_lan_grp, &inf->ptr_lan_grp, domain_name);
93 static BOOL wks_io_wks_info_100(const char *desc, WKS_INFO_100 *inf, prs_struct *ps, int depth) argument
95 if (inf
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/sound/oss/
H A Dhex2hex.c15 int loadhex(FILE *inf, unsigned char *buf) argument
19 while ((c=getc(inf))!=EOF)
28 if (fscanf(inf, "%02x", &n) != 1)
32 if (fscanf(inf, "%04x", &addr) != 1)
37 if (fscanf(inf, "%02x", &linetype) != 1)
46 if (fscanf(inf, "%02x", &c) != 1)
56 if (fscanf(inf, "%02x", &check) != 1)
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/openssl/crypto/x509v3/
H A Dv3prin.c70 FILE *inf; local
79 if(!(inf = fopen(argv[1], "r"))) {
83 if(!(cert = PEM_read_X509(inf, NULL, NULL))) {
88 fclose(inf);
H A Dv3conf.c73 FILE *inf; local
93 inf = fopen(argv[1], "r");
94 if(!inf) {
98 cert = PEM_read_X509(inf, NULL, NULL);
103 fclose(inf);
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/openssl-0.9.8e/crypto/x509v3/
H A Dv3prin.c70 FILE *inf; local
79 if(!(inf = fopen(argv[1], "r"))) {
83 if(!(cert = PEM_read_X509(inf, NULL, NULL))) {
88 fclose(inf);
H A Dv3conf.c73 FILE *inf; local
93 inf = fopen(argv[1], "r");
94 if(!inf) {
98 cert = PEM_read_X509(inf, NULL, NULL);
103 fclose(inf);
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/openssl-0.9.8e/crypto/asn1/
H A Dx_crl.c125 X509_CRL_INFO *inf;
126 inf = crl->crl;
127 if(!inf->revoked)
128 inf->revoked = sk_X509_REVOKED_new(X509_REVOKED_cmp);
129 if(!inf->revoked || !sk_X509_REVOKED_push(inf->revoked, rev)) {
133 inf->enc.modified = 1;
H A Da_bool.c83 int inf,tag,xclass; local
87 inf=ASN1_get_object(&p,&len,&tag,&xclass,length);
88 if (inf & 0x80)
H A Da_bytes.c73 int inf,tag,xclass; local
77 inf=ASN1_get_object(&p,&len,&tag,&xclass,length);
78 if (inf & 0x80) goto err;
164 int inf,tag,xclass; local
175 inf=ASN1_get_object(&p,&len,&tag,&xclass,length);
176 if (inf & 0x80)
188 if (inf & V_ASN1_CONSTRUCTED)
194 c.inf=inf;
271 if (c->inf
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/openssl/crypto/asn1/
H A Dx_crl.c125 X509_CRL_INFO *inf;
126 inf = crl->crl;
127 if(!inf->revoked)
128 inf->revoked = sk_X509_REVOKED_new(X509_REVOKED_cmp);
129 if(!inf->revoked || !sk_X509_REVOKED_push(inf->revoked, rev)) {
133 inf->enc.modified = 1;
H A Da_bool.c83 int inf,tag,xclass; local
87 inf=ASN1_get_object(&p,&len,&tag,&xclass,length);
88 if (inf & 0x80)
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/minidlna/minidlna/tagutils/
H A Dtagutils-ogg.c88 ogg_misc_vorbis_info *inf = stream->data; local
92 if(inf->doneheaders < 3)
97 if(inf->doneheaders < 3)
99 if(vorbis_synthesis_headerin(&inf->vi, &inf->vc, &packet) < 0)
105 inf->doneheaders++;
106 if(inf->doneheaders == 3)
112 DPRINTF(E_DEBUG, L_SCANNER, "Channels: %d\n", inf->vi.channels);
113 DPRINTF(E_DEBUG, L_SCANNER, "Rate: %ld\n\n", inf->vi.rate);
115 psong->samplerate = inf
199 ogg_misc_vorbis_info *inf = stream->data; local
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/minidlna/minidlna.03.14/tagutils/
H A Dtagutils-ogg.c87 ogg_misc_vorbis_info *inf = stream->data; local
91 if(inf->doneheaders < 3)
96 if(inf->doneheaders < 3)
98 if(vorbis_synthesis_headerin(&inf->vi, &inf->vc, &packet) < 0)
104 inf->doneheaders++;
105 if(inf->doneheaders == 3)
111 DPRINTF(E_DEBUG, L_SCANNER, "Channels: %d\n", inf->vi.channels);
112 DPRINTF(E_DEBUG, L_SCANNER, "Rate: %ld\n\n", inf->vi.rate);
114 psong->samplerate = inf
198 ogg_misc_vorbis_info *inf = stream->data; local
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/minidlna/minidlna.07.26/tagutils/
H A Dtagutils-ogg.c88 ogg_misc_vorbis_info *inf = stream->data; local
92 if(inf->doneheaders < 3)
97 if(inf->doneheaders < 3)
99 if(vorbis_synthesis_headerin(&inf->vi, &inf->vc, &packet) < 0)
105 inf->doneheaders++;
106 if(inf->doneheaders == 3)
112 DPRINTF(E_DEBUG, L_SCANNER, "Channels: %d\n", inf->vi.channels);
113 DPRINTF(E_DEBUG, L_SCANNER, "Rate: %ld\n\n", inf->vi.rate);
115 psong->samplerate = inf
199 ogg_misc_vorbis_info *inf = stream->data; local
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/drivers/video/
H A Dpxafb.c270 struct pxafb_mach_info *inf = fbi->dev->platform_data; local
277 if (inf->fixed_modes) {
280 mode = pxafb_getmode(inf, var);
285 if (var->xres > inf->modes->xres)
287 if (var->yres > inf->modes->yres)
289 if (var->bits_per_pixel > inf->modes->bpp)
1071 struct pxafb_mach_info *inf = dev->platform_data; local
1072 struct pxafb_mode_info *mode = inf->modes;
1109 fbi->cmap_inverse = inf->cmap_inverse;
1110 fbi->cmap_static = inf
1133 struct pxafb_mach_info *inf = dev->platform_data; local
1285 struct pxafb_mach_info *inf; local
[all...]
H A Dimxfb.c440 struct imxfb_mach_info *inf = dev->platform_data; local
475 fbi->max_xres = inf->xres;
476 info->var.xres = inf->xres;
477 info->var.xres_virtual = inf->xres;
478 fbi->max_yres = inf->yres;
479 info->var.yres = inf->yres;
480 info->var.yres_virtual = inf->yres;
481 fbi->max_bpp = inf->bpp;
482 info->var.bits_per_pixel = inf->bpp;
483 info->var.pixclock = inf
535 struct imxfb_mach_info *inf; local
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/drivers/isdn/divert/
H A Ddivert_procfs.c79 struct divert_info *inf; local
87 if (!(inf = *((struct divert_info **) file->private_data)))
90 inf->usage_cnt--; /* new usage count */
91 file->private_data = &inf->next; /* next structure */
92 if ((len = strlen(inf->info_start)) <= count) {
93 if (copy_to_user(buf, inf->info_start, len))
152 struct divert_info *inf; local
157 inf = *((struct divert_info **) filep->private_data);
158 while (inf) {
159 inf
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/drivers/usb/host/
H A Dohci-pxa27x.c79 struct pxaohci_platform_data *inf; local
81 inf = dev->platform_data;
93 if (inf->init)
94 retval = inf->init(dev);
112 struct pxaohci_platform_data *inf; local
114 inf = dev->platform_data;
116 if (inf->exit)
117 inf->exit(dev);
149 struct pxaohci_platform_data *inf; local
151 inf
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/samba-3.0.13/source/rpc_server/
H A Dsrv_wkssvc_nt.c35 static void create_wks_info_100(WKS_INFO_100 *inf) argument
48 init_wks_info_100(inf,
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/drivers/isdn/hysdn/
H A Dhysdn_proclog.c204 struct log_data *inf; local
228 if (!(inf = *((struct log_data **) file->private_data)))
231 inf->usage_cnt--; /* new usage count */
232 file->private_data = &inf->next; /* next structure */
233 if ((len = strlen(inf->log_start)) <= count) {
234 if (copy_to_user(buf, inf->log_start, len))
296 struct log_data *inf; local
309 inf = *((struct log_data **) filep->private_data); /* get first log entry */
310 if (inf)
311 pd = (struct procdata *) inf
[all...]

Completed in 130 milliseconds

1234567