HomeSort by relevance Sort by last modified time
    Searched refs:inf (Results 1 - 25 of 76) sorted by null

1 2 3 4

  /external/zlib/contrib/iostream3/
test.cc 14 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.close()
    [all...]
  /external/zlib/examples/
fitblk.c 92 /* recompress from inf's input to def's output; the input for inf and
96 local int recompress(z_streamp inf, z_streamp def)
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.zalloc = Z_NULL
    [all...]
zpipe.c 10 1.3 6 Apr 2005 Remove incorrect assertion in inf()
77 inf() returns Z_OK on success, Z_MEM_ERROR if memory could not be
82 int inf(FILE *source, FILE *dest) function
180 ret = inf(stdin, stdout);
  /external/openssl/crypto/x509v3/
v3prin.c 70 FILE *inf; local
79 if(!(inf = fopen(argv[1], "r"))) {
83 if(!(cert = PEM_read_X509(inf, NULL, NULL))) {
88 fclose(inf);
v3conf.c 73 FILE *inf; local
93 inf = fopen(argv[1], "r");
94 if(!inf) {
98 cert = PEM_read_X509(inf, NULL, NULL);
103 fclose(inf);
  /dalvik/libcore/archive/src/main/java/java/util/zip/
InflaterInputStream.java 42 protected Inflater inf; field in class:InflaterInputStream
86 * @param inf
89 public InflaterInputStream(InputStream is, Inflater inf) {
90 this(is, inf, BUF_SIZE);
99 * @param inf
104 public InflaterInputStream(InputStream is, Inflater inf, int bsize) {
106 if (is == null || inf == null) {
112 this.inf = inf;
182 if (inf.needsInput())
    [all...]
ZipInputStream.java 140 inB = inf.getTotalIn();
141 out = inf.getTotalOut();
160 inf.reset();
309 if (inf.finished() || currentEntry == null) {
341 if (inf.needsInput()) {
349 read = inf.inflate(buffer, start, length);
353 if (read == 0 && inf.finished()) {
GZIPInputStream.java 193 int size = inf.getRemaining();
204 if ((int) getLong(b, 4) != inf.getTotalOut()) {
  /external/openssl/crypto/asn1/
x_crl.c 125 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;
a_bool.c 83 int inf,tag,xclass; local
87 inf=ASN1_get_object(&p,&len,&tag,&xclass,length);
88 if (inf & 0x80)
a_bytes.c 73 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 & 1
    [all...]
asn1_lib.c 65 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)
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 & 1))
    [all...]
tasn_dec.c 69 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,
770 char cst, inf, free_cont = 0; local
824 ret = asn1_check_tlen(&plen, NULL, NULL, &inf, &cst,
855 if (inf)
857 if (!asn1_find_end(&p, plen, inf))
879 if (!asn1_collect(&buf, &p, plen, inf, -1, V_ASN1_UNIVERSAL, 0))
1086 static int asn1_find_end(const unsigned char **in, long len, char inf)
1092 if (inf == 0
    [all...]
a_d2i_fp.c 190 c.inf=ASN1_get_object(&(c.p),&(c.slen),&(c.tag),&(c.xclass),
192 if (c.inf & 0x80)
205 if (c.inf & 1)
a_set.c 186 c.inf=ASN1_get_object(&c.p,&c.slen,&c.tag,&c.xclass,c.max-c.p);
187 if (c.inf & 0x80) goto err;
205 if (c.inf == (V_ASN1_CONSTRUCTED+1))
  /dalvik/libcore-disabled/sound/src/main/java/javax/sound/sampled/
DataLine.java 82 DataLine.Info inf = (DataLine.Info)info; local
84 && inf.getMinBufferSize() != AudioSystem.NOT_SPECIFIED
85 && minBufferSize < inf.getMinBufferSize())
87 && inf.getMaxBufferSize() != AudioSystem.NOT_SPECIFIED
88 && maxBufferSize > inf.getMaxBufferSize())) {
93 if (!inf.isFormatSupported(supported)) {
  /external/libpng/contrib/pngminim/encoder/
gather.sh 9 rm inf*.[ch]
  /external/openssl/crypto/ocsp/
ocsp_prn.c 141 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/quake/quake/src/QW/client/
gl_vidlinux_svga.c 142 float gamma, f, inf; local
153 inf = f*255 + 0.5;
154 if (inf < 0)
155 inf = 0;
156 if (inf > 255)
157 inf = 255;
158 palette[i] = inf;
  /external/quake/quake/src/WinQuake/
gl_vidandroid.cpp 273 float f, inf; local
287 inf = f*255 + 0.5;
288 if (inf < 0)
289 inf = 0;
290 if (inf > 255)
291 inf = 255;
292 palette[i] = (unsigned char) inf;
  /dalvik/libcore/xml/src/main/java/org/apache/xalan/templates/
DecimalFormatProperties.java 184 * @param inf String to use as the "infinity" attribute.
186 public void setInfinity(String inf)
188 m_dfs.setInfinity(inf);
  /external/openssl/crypto/x509/
by_file.c 266 STACK_OF(X509_INFO) *inf;
277 inf = PEM_X509_INFO_read_bio(in, NULL, NULL, NULL);
279 if(!inf) {
283 for(i = 0; i < sk_X509_INFO_num(inf); i++) {
284 itmp = sk_X509_INFO_value(inf, i);
294 sk_X509_INFO_pop_free(inf, X509_INFO_free);
  /dalvik/libcore/archive/src/test/java/org/apache/harmony/archive/tests/java/util/zip/
InflaterTest.java 604 Inflater inf = new Inflater(); local
605 assertFalse(inf.needsDictionary());
606 assertEquals(0, inf.getTotalIn());
607 assertEquals(0, inf.getTotalOut());
608 assertEquals(0, inf.getBytesRead());
609 assertEquals(0, inf.getBytesWritten());
791 Inflater inf = new Inflater(); local
804 inf.setInput(output);
805 int compressedDataLength = inf.inflate(input);
806 assertEquals(16, inf.getTotalIn())
824 Inflater inf = new Inflater(); local
855 Inflater inf = new Inflater(); local
    [all...]
  /external/webkit/WebKitTools/simplejson/
decoder.py 16 nan, inf = struct.unpack('dd', _BYTES)
17 return nan, inf, -inf
  /external/openssl/apps/
enc.c 122 char *inf=NULL,*outf=NULL; local
162 inf= *(++argv);
383 if (inf == NULL)
391 if (BIO_read_filename(in,inf) <= 0)
393 perror(inf);

Completed in 651 milliseconds

1 2 3 4