HomeSort by relevance Sort by last modified time
    Searched full:outfp (Results 1 - 24 of 24) sorted by null

  /external/lz4/examples/
blockStreaming_doubleBuffer.c 36 void test_compress(FILE* outFp, FILE* inpFp)
58 write_int(outFp, cmpBytes);
59 write_bin(outFp, cmpBuf, (size_t) cmpBytes);
65 write_int(outFp, 0);
69 void test_decompress(FILE* outFp, FILE* inpFp)
100 write_bin(outFp, decPtr, (size_t) decBytes);
154 FILE* outFp = fopen(lz4Filename, "wb");
157 test_compress(outFp, inpFp);
160 fclose(outFp);
167 FILE* outFp = fopen(decFilename, "wb")
    [all...]
blockStreaming_lineByLine.c 35 FILE* outFp,
66 write_uint16(outFp, (uint16_t) cmpBytes);
67 write_bin(outFp, cmpBuf, cmpBytes);
74 write_uint16(outFp, 0);
83 FILE* outFp,
106 write_bin(outFp, decPtr, decBytes);
172 FILE* outFp = fopen(lz4Filename, "wb");
174 test_compress(outFp, inpFp, MESSAGE_MAX_BYTES, RING_BUFFER_BYTES);
176 fclose(outFp);
183 FILE* outFp = fopen(decFilename, "wb")
    [all...]
blockStreaming_ringBuffer.c 51 void test_compress(FILE* outFp, FILE* inpFp)
70 write_int32(outFp, cmpBytes);
71 write_bin(outFp, cmpBuf, cmpBytes);
80 write_int32(outFp, 0);
84 void test_decompress(FILE* outFp, FILE* inpFp)
109 write_bin(outFp, decPtr, decBytes);
164 FILE* outFp = fopen(lz4Filename, "wb");
166 test_compress(outFp, inpFp);
168 fclose(outFp);
175 FILE* outFp = fopen(decFilename, "wb")
    [all...]
HCStreaming_ringBuffer.c 54 void test_compress(FILE* outFp, FILE* inpFp)
75 write_int32(outFp, cmpBytes);
76 write_bin(outFp, cmpBuf, cmpBytes);
86 write_int32(outFp, 0);
90 void test_decompress(FILE* outFp, FILE* inpFp)
121 write_bin(outFp, decPtr, decBytes);
197 FILE* outFp = fopen(lz4Filename, "wb");
199 test_compress(outFp, inpFp);
201 fclose(outFp);
208 FILE* outFp = fopen(decFilename, "wb")
    [all...]
  /external/selinux/checkpolicy/
checkmodule.c 112 static int write_binary_policy(policydb_t * p, FILE *outfp)
122 pf.fp = outfp;
288 FILE *outfp = fopen(outfile, "w"); local
290 if (!outfp) {
299 if (write_binary_policy(&modpolicydb, outfp) != 0) {
306 if (sepol_module_policydb_to_cil(outfp, &modpolicydb, 0) != 0) {
312 fclose(outfp);
checkpolicy.c 397 FILE *outfp = NULL; local
615 outfp = fopen(outfile, "w");
616 if (!outfp) {
631 pf.fp = outfp;
640 ret = sepol_module_policydb_to_cil(outfp, policydbp, 1);
648 fclose(outfp);
  /prebuilts/gdb/darwin-x86/lib/python2.7/
quopri.py 110 outfp = StringIO()
111 encode(infp, outfp, quotetabs, header)
112 return outfp.getvalue()
164 outfp = StringIO()
165 decode(infp, outfp, header = header)
166 return outfp.getvalue()
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_base64.py 47 outfp = StringIO()
48 base64.encode(infp, outfp)
49 eq(outfp.getvalue(),
57 outfp = StringIO()
58 base64.decode(infp, outfp)
59 self.assertEqual(outfp.getvalue(), 'www.python.org')
test_quopri.py 149 outfp = cStringIO.StringIO()
150 quopri.encode(infp, outfp, quotetabs=False)
151 self.assertTrue(outfp.getvalue() == e)
157 outfp = cStringIO.StringIO()
158 quopri.decode(infp, outfp)
159 self.assertTrue(outfp.getvalue() == p)
  /prebuilts/gdb/linux-x86/lib/python2.7/
quopri.py 110 outfp = StringIO()
111 encode(infp, outfp, quotetabs, header)
112 return outfp.getvalue()
164 outfp = StringIO()
165 decode(infp, outfp, header = header)
166 return outfp.getvalue()
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_base64.py 47 outfp = StringIO()
48 base64.encode(infp, outfp)
49 eq(outfp.getvalue(),
57 outfp = StringIO()
58 base64.decode(infp, outfp)
59 self.assertEqual(outfp.getvalue(), 'www.python.org')
test_quopri.py 149 outfp = cStringIO.StringIO()
150 quopri.encode(infp, outfp, quotetabs=False)
151 self.assertTrue(outfp.getvalue() == e)
157 outfp = cStringIO.StringIO()
158 quopri.decode(infp, outfp)
159 self.assertTrue(outfp.getvalue() == p)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
quopri.py 110 outfp = StringIO()
111 encode(infp, outfp, quotetabs, header)
112 return outfp.getvalue()
164 outfp = StringIO()
165 decode(infp, outfp, header = header)
166 return outfp.getvalue()
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_base64.py 47 outfp = StringIO()
48 base64.encode(infp, outfp)
49 eq(outfp.getvalue(),
57 outfp = StringIO()
58 base64.decode(infp, outfp)
59 self.assertEqual(outfp.getvalue(), 'www.python.org')
test_quopri.py 149 outfp = cStringIO.StringIO()
150 quopri.encode(infp, outfp, quotetabs=False)
151 self.assertTrue(outfp.getvalue() == e)
157 outfp = cStringIO.StringIO()
158 quopri.decode(infp, outfp)
159 self.assertTrue(outfp.getvalue() == p)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
quopri.py 110 outfp = StringIO()
111 encode(infp, outfp, quotetabs, header)
112 return outfp.getvalue()
164 outfp = StringIO()
165 decode(infp, outfp, header = header)
166 return outfp.getvalue()
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_base64.py 47 outfp = StringIO()
48 base64.encode(infp, outfp)
49 eq(outfp.getvalue(),
57 outfp = StringIO()
58 base64.decode(infp, outfp)
59 self.assertEqual(outfp.getvalue(), 'www.python.org')
test_quopri.py 149 outfp = cStringIO.StringIO()
150 quopri.encode(infp, outfp, quotetabs=False)
151 self.assertTrue(outfp.getvalue() == e)
157 outfp = cStringIO.StringIO()
158 quopri.decode(infp, outfp)
159 self.assertTrue(outfp.getvalue() == p)
  /art/runtime/interpreter/mterp/
gen_mterp.py 400 def emitAsmHeader(outfp, dict, prefix):
401 outfp.write("/* ------------------------------ */\n")
408 outfp.write(prefix + "_%(opcode)s: /* 0x%(opnum)02x */\n" % dict)
414 def emitAsmStub(outfp, dict):
415 emitAsmHeader(outfp, dict, label_prefix)
418 outfp.write(templ.substitute(dict))
421 # Append the file specified by "source" to the open "outfp". Each line will
435 def appendSourceFile(source, dict, outfp, sister_list):
436 outfp.write("/* File: %s */\n" % source)
455 appendSourceFile(alt_source, new_dict, outfp, sister_list
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/email/
generator.py 43 def __init__(self, outfp, mangle_from_=True, maxheaderlen=78):
46 outfp is the output file-like object for writing the message to. It
60 self._fp = outfp
305 def __init__(self, outfp, mangle_from_=True, maxheaderlen=78, fmt=None):
327 Generator.__init__(self, outfp, mangle_from_, maxheaderlen)
  /prebuilts/gdb/linux-x86/lib/python2.7/email/
generator.py 43 def __init__(self, outfp, mangle_from_=True, maxheaderlen=78):
46 outfp is the output file-like object for writing the message to. It
60 self._fp = outfp
305 def __init__(self, outfp, mangle_from_=True, maxheaderlen=78, fmt=None):
327 Generator.__init__(self, outfp, mangle_from_, maxheaderlen)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/email/
generator.py 43 def __init__(self, outfp, mangle_from_=True, maxheaderlen=78):
46 outfp is the output file-like object for writing the message to. It
60 self._fp = outfp
305 def __init__(self, outfp, mangle_from_=True, maxheaderlen=78, fmt=None):
327 Generator.__init__(self, outfp, mangle_from_, maxheaderlen)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/email/
generator.py 43 def __init__(self, outfp, mangle_from_=True, maxheaderlen=78):
46 outfp is the output file-like object for writing the message to. It
60 self._fp = outfp
305 def __init__(self, outfp, mangle_from_=True, maxheaderlen=78, fmt=None):
327 Generator.__init__(self, outfp, mangle_from_, maxheaderlen)
  /external/curl/docs/examples/
curlx.c 453 FILE *outfp; local
454 BIO_get_fp(out,&outfp);
455 curl_easy_setopt(p.curl, CURLOPT_WRITEDATA, outfp);

Completed in 416 milliseconds