Searched defs:inf (Results 1 - 25 of 43) sorted by relevance

12

/external/zlib/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...]
/external/fdlibm/
H A Dk_standard.c86 #define HUGE_VAL inf
87 double inf = 0.0; local
89 __HI(inf) = 0x7ff00000; /* set inf to infinite */
196 /* ieee_y0(0) = -inf */
230 /* ieee_y1(0) = -inf */
264 /* ieee_yn(n,0) = -inf */
566 exc.retval = x/zero; /* sign(x)*inf */
/external/openssl/crypto/x509v3/
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);
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);
/external/openssl/crypto/asn1/
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...]
H A Da_int.c278 int inf,tag,xclass; local
290 inf=ASN1_get_object(&p,&len,&tag,&xclass,length);
291 if (inf & 0x80)
H A Da_object.c264 int inf,i; local
267 inf=ASN1_get_object(&p,&len,&tag,&xclass,length);
268 if (inf & 0x80)
H A Dasn1_lib.c65 static int asn1_get_length(const unsigned char **pp,int *inf,long *rl,int max);
100 int tag,xclass,inf; local
132 if (!asn1_get_length(&p,&inf,plength,(int)max)) goto err;
148 return(ret|inf);
154 static int asn1_get_length(const unsigned char **pp, int *inf, long *rl, int max) argument
163 *inf=1;
169 *inf=0;
287 if ((c->inf == (1|V_ASN1_CONSTRUCTED)) && (!c->eos))
295 if ( ((c->slen != 0) && !(c->inf & 1)) ||
296 ((c->slen < 0) && (c->inf
[all...]
H A Dtasn_dec.c69 static int asn1_find_end(const unsigned char **in, long len, char inf);
72 char inf, int tag, int aclass, int depth);
77 char *inf, char *cst,
773 char cst, inf, free_cont = 0; local
827 ret = asn1_check_tlen(&plen, NULL, NULL, &inf, &cst,
858 if (inf)
860 if (!asn1_find_end(&p, plen, inf))
882 if (!asn1_collect(&buf, &p, plen, inf, -1, V_ASN1_UNIVERSAL, 0))
1089 static int asn1_find_end(const unsigned char **in, long len, char inf) argument
1095 if (inf
1154 asn1_collect(BUF_MEM *buf, const unsigned char **in, long len, char inf, int tag, int aclass, int depth) argument
1259 asn1_check_tlen(long *olen, int *otag, unsigned char *oclass, char *inf, char *cst, const unsigned char **in, long len, int exptag, int expclass, char opt, ASN1_TLC *ctx) argument
[all...]
/external/zlib/examples/
H A Dzpipe.c10 1.3 6 Apr 2005 Remove incorrect assertion in inf()
87 inf() returns Z_OK on success, Z_MEM_ERROR if memory could not be
92 int inf(FILE *source, FILE *dest) function
194 ret = inf(stdin, stdout);
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...]
/external/openssl/crypto/dso/
H A Ddso_dl.c359 struct shl_descriptor inf; local
369 for (i=-1;shl_get_r(i,&inf)==0;i++)
371 if (((size_t)addr >= inf.tstart && (size_t)addr < inf.tend) ||
372 ((size_t)addr >= inf.dstart && (size_t)addr < inf.dend))
374 len = (int)strlen(inf.filename);
377 memcpy(path,inf.filename,len);
/external/openssl/crypto/ocsp/
H A Docsp_prn.c141 OCSP_REQINFO *inf = o->tbsRequest; local
145 l=ASN1_INTEGER_get(inf->version);
147 if (inf->requestorName != NULL)
151 GENERAL_NAME_print(bp, inf->requestorName);
154 for (i = 0; i < sk_OCSP_ONEREQ_num(inf->requestList); i++)
156 one = sk_OCSP_ONEREQ_value(inf->requestList, i);
165 inf->requestExtensions, flags, 4))
/external/apache-xml/src/main/java/org/apache/xalan/templates/
H A DDecimalFormatProperties.java184 * @param inf String to use as the "infinity" attribute.
186 public void setInfinity(String inf) argument
188 m_dfs.setInfinity(inf);
/external/icu4c/test/intltest/
H A Ddtifmtts.cpp132 const DateIntervalInfo* inf = another->getDateIntervalInfo(); local
133 dtitvfmt->setDateIntervalInfo(*inf, status);
135 if ( (*inf) != (*anotherInf) || U_FAILURE(status) ) {
141 DateIntervalInfo* nonConstInf = inf->clone();
144 if ( (*inf) != (*anotherInf) || U_FAILURE(status) ) {
189 inf = dtitvfmt->getDateIntervalInfo()->clone();
192 DateIntervalFormat* dtifmt = new DateIntervalFormat(fmt, inf, status);
/external/iptables/utils/
H A Dnfnl_osf.c392 FILE *inf; local
396 inf = fopen(path, "r");
397 if (!inf) {
402 while(fgets(buf, sizeof(buf), inf)) {
422 fclose(inf);
/external/openssl/apps/
H A Denc.c124 char *inf=NULL,*outf=NULL; local
172 inf= *(++argv);
394 if (inf == NULL)
404 if (BIO_read_filename(in,inf) <= 0)
406 perror(inf);
/external/openssl/crypto/pkcs7/
H A Dbio_ber.c81 int inf; member in struct:ber_struct
91 int inf; member in struct:bio_ber_struct
/external/valgrind/main/none/tests/ppc32/
H A Dpower5+_round.c44 double inf, neg0, nan; local
52 inf = strtod("inf", NULL);
59 double set[] = { inf, 1.5, 0, neg0, -1.5, -inf, nan };
84 double set[] = { inf, 1.9, 1.1, 0, neg0, -1.1, -1.9, -inf, nan };
85 double frin[] = { inf, 2.0, 1.0, 0, neg0, -1.0, -2.0, -inf, nan };
86 double friz[] = { inf, 1.
[all...]
/external/openssl/crypto/
H A Dmem_dbg.c204 static void app_info_free(APP_INFO *inf) argument
206 if (--(inf->references) <= 0)
208 if (inf->next != NULL)
210 app_info_free(inf->next);
212 OPENSSL_free(inf);
/external/zlib/contrib/blast/
H A Dblast.c414 local unsigned inf(void *how, unsigned char **buf) function
433 ret = blast(inf, stdin, outf, stdout);
/external/opencv/cv/src/
H A Dcvdistransform.cpp455 const float inf = 1e6f; local
490 sqr_tab[i] = inf;
546 z[0] = -inf;
547 z[1] = inf;
564 z[k+1] = inf;
/external/opencv/cvaux/src/
H A Dcvmorphcontours.cpp55 #define inf DBL_MAX macro
265 k_zero = inf;
272 k_zero = inf;
640 //double inf; // infinity
683 //inf=1;
694 W[1][1].w_east = inf;
695 W[1][1].w_south = inf;
705 W[i][0].w_south = inf;
706 W[i][0].w_southeast = inf;
711 W[0][j].w_east = inf;
[all...]
/external/quake/quake/src/QW/client/
H A Dview.c277 int i, inf; local
288 inf = 255 * pow ( (i+0.5)/255.5 , g ) + 0.5;
289 if (inf < 0)
290 inf = 0;
291 if (inf > 255)
292 inf = 255;
293 gammatable[i] = inf;

Completed in 443 milliseconds

12