Home
last modified time | relevance | path

Searched refs:ifile (Results 1 – 14 of 14) sorted by relevance

/third_party/ltp/testcases/kernel/syscalls/dup2/
Ddup205.c39 int ifile = -1, rc = 0; in run() local
43 for (ifile = fildes[0] + 1; ifile < min + 10; ifile++) { in run()
44 TEST(dup2(fildes[ifile - 1], ifile)); in run()
45 fildes[ifile] = TST_RET; in run()
46 if (fildes[ifile] == -1) in run()
48 if (fildes[ifile] != ifile) in run()
51 fildes[ifile], ifile); in run()
54 if (ifile < min) { in run()
57 } else if (ifile > min) { in run()
72 for (ifile = fildes[0]; ifile < min + 10; ifile++) { in run()
[all …]
/third_party/ltp/testcases/kernel/syscalls/open/
Dopen04.c41 static int fd, ifile, mypid, first; variable
105 for (ifile = first; ifile <= nfile; ifile++) { in setup()
106 sprintf(fname, "open04.%d.%d", ifile, mypid); in setup()
115 buf[ifile - first] = fd; in setup()
123 for (ifile = first; ifile < nfile; ifile++) { in cleanup()
124 sprintf(fname, "open04.%d.%d", ifile, mypid); in cleanup()
125 close(buf[ifile - first]); in cleanup()
/third_party/ffmpeg/tools/
Dnormalize.py6 ifile = sys.argv[1] variable
15 analysis_cmd += "amovie='%s',ebur128=metadata=1" % ifile
27 print 'No normalization needed for ' + ifile
29 print "Adjust %s by %.1fdB" % (ifile, adjust)
30 norm_cmd = ['ffmpeg', '-i', ifile, '-af', 'volume=%fdB' % adjust]
/third_party/ltp/tools/sparse/sparse-src/validation/
Dtest-suite138 ifile="$1"
143 grep "$patt:" "$ifile" | \
182 ifile="$1"
185 grep "$patt([0-9-]*\(, *\)*[0-9-]*):" "$ifile" | \
217 ifile="$1"
220 grep "$patt" "$ifile" | sed -e "s/^.*$patt(\(.*\)): *\(.*\)$/\1 \2/" | \
235 ifile="$1"
238 grep "$patt:" "$ifile" | sed -e "s/^.*$patt: *\(.*\)$/\1/" | \
/third_party/ffmpeg/fftools/
Dffprobe.c2140 static void show_packet(WriterContext *w, InputFile *ifile, AVPacket *pkt, int packet_idx) in show_packet() argument
2143 AVStream *st = ifile->streams[pkt->stream_index].st; in show_packet()
2366 InputFile *ifile, in process_frame() argument
2370 AVFormatContext *fmt_ctx = ifile->fmt_ctx; in process_frame()
2371 AVCodecContext *dec_ctx = ifile->streams[pkt->stream_index].dec_ctx; in process_frame()
2372 AVCodecParameters *par = ifile->streams[pkt->stream_index].st->codecpar; in process_frame()
2419 show_subtitle(w, &sub, ifile->streams[pkt->stream_index].st, fmt_ctx); in process_frame()
2421 show_frame(w, frame, ifile->streams[pkt->stream_index].st, fmt_ctx); in process_frame()
2452 static int read_interval_packets(WriterContext *w, InputFile *ifile, in read_interval_packets() argument
2455 AVFormatContext *fmt_ctx = ifile->fmt_ctx; in read_interval_packets()
[all …]
Dffmpeg.c3754 InputFile *ifile = input_files[i]; in transcode_init() local
3755 if (ifile->rate_emu) in transcode_init()
3756 for (j = 0; j < ifile->nb_streams; j++) in transcode_init()
3757 input_streams[j + ifile->ist_index]->start = av_gettime_relative(); in transcode_init()
3792 InputFile *ifile = input_files[i]; in transcode_init() local
3793 for (j = 0; j < ifile->ctx->nb_programs; j++) { in transcode_init()
3794 AVProgram *p = ifile->ctx->programs[j]; in transcode_init()
3798 if (!input_streams[ifile->ist_index + p->stream_index[k]]->discard) { in transcode_init()
4272 static int seek_to_start(InputFile *ifile, AVFormatContext *is) in seek_to_start() argument
4283 for (i = 0; i < ifile->nb_streams; i++) { in seek_to_start()
[all …]
Dffmpeg_opt.c2058 static int copy_chapters(InputFile *ifile, OutputFile *ofile, int copy_metadata) in copy_chapters() argument
2060 AVFormatContext *is = ifile->ctx; in copy_chapters()
2073 int64_t ts_off = av_rescale_q(start_time - ifile->ts_offset, in copy_chapters()
/third_party/mksh/
Dcheck.pl489 $ifile = $tempi;
491 $ifile = '/dev/null';
575 if (!open(STDIN, "< $ifile")) {
576 print STDERR "$prog: couldn't open $ifile in child - $!\n";
/third_party/python/Tools/pynche/
DPyncheWidget.py165 idir, ifile = os.path.split(self.__sb.colordb().filename())
171 initialfile=ifile)
/third_party/nghttp2/src/
Dh2load.cc2479 config.ifile = optarg; in main()
2588 config.ifile = optarg; in main()
2703 if (config.ifile.empty()) { in main()
2727 if (config.ifile.empty()) { in main()
2734 if (config.ifile == "-") { in main()
2737 std::ifstream infile(config.ifile); in main()
2739 std::cerr << "cannot read input file: " << config.ifile << std::endl; in main()
2746 if (config.ifile == "-") { in main()
2749 std::ifstream infile(config.ifile); in main()
2751 std::cerr << "cannot read input file: " << config.ifile << std::endl; in main()
Dh2load.h81 std::string ifile; member
/third_party/libffi/doc/
DMakefile.in715 for ifile in $$d/$$file $$d/$$file-[0-9] $$d/$$file-[0-9][0-9] \
717 if test -f $$ifile; then \
718 echo "$$ifile"; \
/third_party/gstreamer/gstplugins_bad/ext/hls/
Dm3u8.c170 gst_m3u8_init_file_ref (GstM3U8InitFile * ifile) in gst_m3u8_init_file_ref() argument
172 g_assert (ifile != NULL && ifile->ref_count > 0); in gst_m3u8_init_file_ref()
174 g_atomic_int_add (&ifile->ref_count, 1); in gst_m3u8_init_file_ref()
175 return ifile; in gst_m3u8_init_file_ref()
/third_party/skia/third_party/externals/microhttpd/doc/
DMakefile.in985 for ifile in $$d/$$file $$d/$$file-[0-9] $$d/$$file-[0-9][0-9] \
987 if test -f $$ifile; then \
988 echo "$$ifile"; \