Searched refs:fin (Results 26 - 50 of 116) sorted by relevance

12345

/external/brotli/tools/
H A Dbro.c315 static int Decompress(FILE* fin, FILE* fout, const char* dictionary_path) { argument
345 if (feof(fin)) {
348 available_in = fread(input, 1, kFileBufferSize, fin);
350 if (ferror(fin)) {
385 static int Compress(int quality, int lgwin, FILE* fin, FILE* fout, argument
414 available_in = fread(input, 1, kFileBufferSize, fin);
416 if (ferror(fin)) break;
417 is_eof = feof(fin);
449 } else if (ferror(fin)) {
473 FILE* fin local
[all...]
/external/ltp/testcases/kernel/mem/vma/
H A Dvma04.c71 static void fin(void);
138 static void fin(void) function
238 fin();
255 fin();
272 fin();
289 fin();
306 fin();
/external/brotli/research/
H A Dfind_opt_references.cc43 void ReadInput(FILE* fin, input_type* storage, size_t input_size) { argument
46 fseek(fin, 0, SEEK_SET);
48 available_in = fread(storage + last_pos, 1, kFileBufferSize, fin);
204 FILE* fin = fopen(argv[1], "rb"); local
207 fseek(fin, 0, SEEK_END);
208 int input_size = ftell(fin);
209 fseek(fin, 0, SEEK_SET);
214 ReadInput(fin, storage, input_size);
215 fclose(fin);
H A Ddraw_histogram.cc67 void BuildHistogram(FILE* fin, int** histo) { argument
86 while (ReadBackwardReference(fin, &copy, &pos, &distance)) {
178 FILE* fin = fopen(argv[1], "r"); local
188 BuildHistogram(fin, histo);
189 fclose(fin);
/external/wpa_supplicant_8/hostapd/src/eap_peer/
H A Deap_pwd.c369 goto fin;
380 goto fin;
389 goto fin;
395 goto fin;
405 goto fin;
413 goto fin;
419 goto fin;
425 goto fin;
437 goto fin;
452 goto fin;
[all...]
/external/wpa_supplicant_8/hostapd/src/eap_server/
H A Deap_server_pwd.c219 goto fin;
229 goto fin;
237 goto fin;
244 goto fin;
252 goto fin;
259 goto fin;
266 goto fin;
288 goto fin;
295 fin:
327 goto fin;
[all...]
/external/wpa_supplicant_8/src/eap_peer/
H A Deap_pwd.c369 goto fin;
380 goto fin;
389 goto fin;
395 goto fin;
405 goto fin;
413 goto fin;
419 goto fin;
425 goto fin;
437 goto fin;
452 goto fin;
[all...]
/external/wpa_supplicant_8/src/eap_server/
H A Deap_server_pwd.c219 goto fin;
229 goto fin;
237 goto fin;
244 goto fin;
252 goto fin;
259 goto fin;
266 goto fin;
288 goto fin;
295 fin:
327 goto fin;
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/eap_peer/
H A Deap_pwd.c369 goto fin;
380 goto fin;
389 goto fin;
395 goto fin;
405 goto fin;
413 goto fin;
419 goto fin;
425 goto fin;
437 goto fin;
452 goto fin;
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/eap_server/
H A Deap_server_pwd.c219 goto fin;
229 goto fin;
237 goto fin;
244 goto fin;
252 goto fin;
259 goto fin;
266 goto fin;
288 goto fin;
295 fin:
327 goto fin;
[all...]
/external/javassist/src/main/javassist/
H A DClassPoolTail.java285 InputStream fin = openClassfile(classname);
286 if (fin == null)
290 copyStream(fin, out);
293 fin.close();
307 InputStream fin = openClassfile(classname);
309 fin.close();
384 public static byte[] readStream(InputStream fin) throws IOException { argument
393 len = fin.read(bufs[i], size, bufsize - size);
419 public static void copyStream(InputStream fin, OutputStream fout) argument
428 len = fin
[all...]
/external/libopus/celt/arm/
H A Darm_celt_map.c99 const kiss_fft_cpx *fin,
108 const kiss_fft_cpx *fin,
/external/trappy/tests/trappy/nbexport/
H A Dexporter.py82 with open(import_file) as fin:
83 final_lines.extend([l[:-1] for l in fin.readlines()])
/external/trappy/trappy/nbexport/
H A Dexporter.py82 with open(import_file) as fin:
83 final_lines.extend([l[:-1] for l in fin.readlines()])
/external/javassist/src/main/javassist/tools/web/
H A DWebserver.java274 FileInputStream fin = new FileInputStream(file);
277 len = fin.read(filebuffer);
284 fin.close();
292 InputStream fin
294 if (fin != null) {
298 len = fin.read(filebuffer);
308 fin.close();
H A DViewer.java189 private byte[] readStream(InputStream fin) throws IOException { argument
201 len = fin.read(buf, size, buf.length - size);
/external/python/cpython2/PC/VS9.0/
H A Dbuild_ssl.py84 with open(m32) as fin:
86 for line in fin:
103 fin = open(makefile)
104 with open(makefile) as fin:
105 lines = fin.readlines()
/external/nanohttpd/websocket/src/main/java/fi/iki/elonen/
H A DNanoWSD.java435 boolean fin = (head & 0x80) != 0;
442 } else if (opCode.isControlFrame() && !fin) {
446 WebSocketFrame frame = new WebSocketFrame(opCode, fin);
462 private boolean fin; field in class:NanoWSD.WebSocketFrame
474 private WebSocketFrame(OpCode opCode, boolean fin) { argument
476 setFin(fin);
479 public WebSocketFrame(OpCode opCode, boolean fin, byte[] payload) { argument
480 this(opCode, fin, payload, null);
483 public WebSocketFrame(OpCode opCode, boolean fin, byte[] payload, byte[] maskingKey) { argument
484 this(opCode, fin);
489 WebSocketFrame(OpCode opCode, boolean fin, String payload) argument
493 WebSocketFrame(OpCode opCode, boolean fin, String payload, byte[] maskingKey) argument
655 setFin(boolean fin) argument
[all...]
/external/icu/icu4j/tools/build/src/com/ibm/icu/dev/tool/docs/
H A DCodeMangler.java271 File fin = new File(indir, name);
273 fin = fin.getCanonicalFile();
277 if (!fin.exists()) {
278 System.err.println("File " + fin.getAbsolutePath() + " does not exist.");
281 if (fin.isFile()) {
282 if (verbose) System.out.println("processing file: '" + fin.getAbsolutePath() + "'");
292 if (processFile(fin, fout)) {
295 } else if (fin.isDirectory()) {
296 if (verbose) System.out.println("recursing on directory '" + fin
[all...]
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/tracks/
H A DAC3TrackImpl.java41 public AC3TrackImpl(InputStream fin, String lang) throws IOException { argument
43 parse(fin);
46 public AC3TrackImpl(InputStream fin) throws IOException { argument
47 parse(fin);
50 private void parse(InputStream fin) throws IOException { argument
51 inputStream = fin;
H A DEC3TrackImpl.java40 public EC3TrackImpl(InputStream fin, String lang) throws IOException { argument
42 parse(fin);
45 public EC3TrackImpl(InputStream fin) throws IOException { argument
46 parse(fin);
49 private void parse(InputStream fin) throws IOException { argument
50 inputStream = new BufferedInputStream(fin);
/external/libopus/src/
H A Dopus_demo.c221 FILE *fin, *fout; local
495 fin = fopen(inFile, "rb");
496 if (!fin)
504 fseek(fin, 0, SEEK_END);
505 size = ftell(fin);
507 fseek(fin, 0, SEEK_SET);
517 fclose(fin);
527 fclose(fin);
551 fclose(fin);
655 err = fread(ch, 1, 4, fin);
[all...]
/external/python/cpython2/PC/VS8.0/
H A Dbuild_ssl.py105 with open(m32) as fin:
107 for line in fin:
124 with open(makefile) as fin:
125 lines = fin.readlines()
/external/iproute2/include/linux/
H A Dtcp.h32 fin:1, member in struct:tcphdr
50 fin:1; member in struct:tcphdr
/external/iproute2/include/netinet/
H A Dtcp.h99 u_int16_t fin:1; member in struct:tcphdr
115 u_int16_t fin:1; member in struct:tcphdr

Completed in 874 milliseconds

12345