Searched refs:fin (Results 1 - 25 of 116) sorted by relevance

12345

/external/brotli/research/
H A Dread_dist.h28 bool ReadBackwardReference(FILE* fin, int* copy, int* pos, int* dist) { argument
29 int c = getc(fin);
32 CHECK(fread(copy, sizeof(int), 1, fin) == 1);
33 if ((c = getc(fin)) != 1) {
34 ungetc(c, fin);
37 CHECK(fread(pos, sizeof(int), 1, fin) == 1);
38 CHECK(fread(dist, sizeof(int), 1, fin) == 1);
43 CHECK(fread(pos, sizeof(int), 1, fin) == 1);
44 CHECK(fread(dist, sizeof(int), 1, fin) == 1);
/external/v8/src/js/
H A Darraybuffer.js46 var fin;
48 fin = MaxSimple(byte_length + relativeEnd, 0);
50 fin = MinSimple(relativeEnd, byte_length);
53 if (fin < first) {
54 fin = first;
56 var newLen = fin - first;
/external/autotest/client/site_tests/firmware_TouchMTB/
H A Dcommon_util.py46 fin = sys.stdin
47 old_attrs = termios.tcgetattr(fin)
48 tty.setraw(fin.fileno())
50 char = fin.read(1)
54 termios.tcsetattr(fin, termios.TCSADRAIN, old_attrs)
/external/libopus/celt/arm/
H A Dcelt_ne10_fft.c113 const kiss_fft_cpx *fin,
124 opus_fft_c(st, fin, fout);
133 (NE10_FFT_CPX_TYPE_T *)fin,
137 (NE10_FFT_CPX_TYPE_T *)fin,
145 const kiss_fft_cpx *fin,
156 opus_ifft_c(st, fin, fout);
165 (NE10_FFT_CPX_TYPE_T *)fin,
169 (NE10_FFT_CPX_TYPE_T *)fin,
112 opus_fft_neon(const kiss_fft_state *st, const kiss_fft_cpx *fin, kiss_fft_cpx *fout) argument
144 opus_ifft_neon(const kiss_fft_state *st, const kiss_fft_cpx *fin, kiss_fft_cpx *fout) argument
H A Dfft_arm.h46 const kiss_fft_cpx *fin,
50 const kiss_fft_cpx *fin,
/external/speex/libspeex/
H A Dkiss_fft.h81 * fin should be f[0] , f[1] , ... ,f[nfft-1]
86 void kiss_fft(kiss_fft_cfg cfg,const kiss_fft_cpx *fin,kiss_fft_cpx *fout);
91 void kiss_fft_stride(kiss_fft_cfg cfg,const kiss_fft_cpx *fin,kiss_fft_cpx *fout,int fin_stride);
/external/libopus/src/
H A Drepacketizer_demo.c61 FILE *fin, *fout; local
99 fin = fopen(argv[argc-2], "r");
100 if(fin==NULL)
109 fclose(fin);
122 err = fread(ch, 1, 4, fin);
127 if (feof(fin))
132 fclose(fin);
138 err = fread(ch, 1, 4, fin);
140 err = fread(packets[i], 1, len[i], fin);
141 if (feof(fin))
[all...]
/external/libopus/celt/
H A Dopus_custom_demo.c46 FILE *fin, *fout; local
89 fin = fopen(inFile, "rb");
90 if (!fin)
100 fclose(fin);
108 fclose(fin);
116 fclose(fin);
131 while (!feof(fin))
134 err = fread(in, sizeof(short), frame_size*channels, fin);
135 if (feof(fin))
192 fclose(fin);
[all...]
H A Dkiss_fft.h137 * fin should be f[0] , f[1] , ... ,f[nfft-1]
142 void opus_fft_c(const kiss_fft_state *cfg,const kiss_fft_cpx *fin,kiss_fft_cpx *fout);
143 void opus_ifft_c(const kiss_fft_state *cfg,const kiss_fft_cpx *fin,kiss_fft_cpx *fout);
170 const kiss_fft_cpx *fin, kiss_fft_cpx *fout);
175 const kiss_fft_cpx *fin, kiss_fft_cpx *fout);
/external/libvpx/libvpx/vpx_ports/
H A Darm_cpudetect.c118 FILE *fin; local
129 fin = fopen("/proc/cpuinfo", "r");
130 if (fin != NULL) {
135 while (fgets(buf, 511, fin) != NULL) {
146 fclose(fin);
/external/webrtc/webrtc/examples/androidapp/src/org/appspot/apprtc/
H A DCpuMonitor.java93 FileReader fin = new FileReader("/sys/devices/system/cpu/present");
95 BufferedReader rdr = new BufferedReader(fin);
103 fin.close();
246 FileReader fin = new FileReader(fileName);
248 BufferedReader rdr = new BufferedReader(fin);
255 fin.close();
273 FileReader fin = new FileReader("/proc/stat");
275 BufferedReader rdr = new BufferedReader(fin);
288 fin.close();
/external/libopus/doc/
H A Dtrivial_example.c51 FILE *fin; local
88 fin = fopen(inFile, "r");
89 if (fin==NULL)
118 fread(pcm_bytes, sizeof(short)*CHANNELS, FRAME_SIZE, fin);
119 if (feof(fin))
157 fclose(fin);
/external/trappy/tests/
H A Dtest_trappy.py82 with open("trace.txt") as fin:
83 for line in fin:
98 with open("trace.txt") as fin:
99 for line in fin:
115 with open("trace.txt") as fin:
116 for line in fin:
H A Dtest_copyright.py26 with open(fname) as fin:
29 lines = fin.readlines(2048)
74 with open(fname) as fin:
75 lines = fin.readlines()
/external/protobuf/src/google/protobuf/testing/
H A Dzcgunzip.cc62 FileInputStream fin(STDIN_FILENO);
63 GzipInputStream in(&fin);
/external/jsoncpp/devtools/
H A Dlicenseupdater.py25 with open( path, 'rt' ) as fin:
26 original_text = fin.read().replace('\r\n','\n')
27 newline = fin.newlines and fin.newlines[0] or '\n'
/external/zlib/src/contrib/minizip/
H A Dminizip.c189 FILE * fin = FOPEN_FUNC(filenameinzip,"rb"); local
193 if (fin==NULL)
202 size_read = (int)fread(buf,1,size_buf,fin);
204 if (feof(fin)==0)
216 if (fin)
217 fclose(fin);
398 FILE * fin; local
463 fin = FOPEN_FUNC(filenameinzip,"rb");
464 if (fin==NULL)
475 size_read = (int)fread(buf,1,size_buf,fin);
[all...]
/external/python/cpython2/PCbuild/
H A Dprepare_ssl.py71 with open(makefile) as fin, open(asm_makefile, 'w') as fout:
72 for line in fin:
78 for line in fin:
83 line = next(fin)
99 with open(makefile) as fin:
100 for line in fin:
/external/clang/test/SemaCXX/
H A Dfunction-overload-typo-crash.cpp10 fin(); //expected-error {{use of undeclared identifier 'fin'; did you mean 'min'}}
/external/libvpx/libvpx/examples/
H A Dresize_util.c48 char *fin, *fout; local
64 fin = argv[1];
77 fpin = fopen(fin, "rb");
79 printf("Can't open file %s to read\n", fin);
/external/javassist/sample/evolve/
H A DDemoServer.java90 FileInputStream fin
95 int len = fin.read(buf);
/external/python/cpython2/Lib/test/
H A Dtest_uu.py135 fin = fout = None
138 fin = open(self.tmpin, 'wb')
139 fin.write(plaintext)
140 fin.close()
142 fin = open(self.tmpin, 'rb')
144 uu.encode(fin, fout, self.tmpin, mode=0644)
145 fin.close()
161 self._kill(fin)
/external/python/cpython2/PC/VS9.0/
H A Dvs9to8.py14 with open(filename, 'rU') as fin:
15 lines = fin.read()
/external/trappy/tests/trappy/wa/
H A Dsysfs_extractor.py65 with open(property_path) as fin:
66 contents = fin.read()
/external/trappy/trappy/wa/
H A Dsysfs_extractor.py65 with open(property_path) as fin:
66 contents = fin.read()

Completed in 953 milliseconds

12345