HomeSort by relevance Sort by last modified time
    Searched full:infile (Results 251 - 275 of 710) sorted by null

<<11121314151617181920>>

  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/rx/
explode 34 $infile = shift;
37 $inbase = $infile;
53 open(I, $infile) || die("$infile: $!");
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/zlib/
minigzip.c 227 char *infile, *outfile; local
235 infile = file;
240 infile = buf;
241 strcat(infile, GZ_SUFFIX);
243 in = gzopen(infile, "rb");
245 fprintf(stderr, "%s: can't gzopen %s\n", prog, infile);
256 unlink(infile);
  /external/chromium-trace/catapult/common/py_vulcanize/third_party/rcssmin/_setup/py2/
shell.py 253 def _filepipespawn(infile, outfile, argv, env):
267 infile = pickle.loads(%(infile)s)
272 if infile is not None:
273 infile = open(infile, 'rb')
274 os.dup2(infile.fileno(), 0)
275 infile.close()
285 'infile': repr(_pickle.dumps(_os.path.abspath(infile))),
    [all...]
  /external/chromium-trace/catapult/common/py_vulcanize/third_party/rjsmin/_setup/py2/
shell.py 253 def _filepipespawn(infile, outfile, argv, env):
267 infile = pickle.loads(%(infile)s)
272 if infile is not None:
273 infile = open(infile, 'rb')
274 os.dup2(infile.fileno(), 0)
275 infile.close()
285 'infile': repr(_pickle.dumps(_os.path.abspath(infile))),
    [all...]
  /external/clang/lib/Frontend/
FrontendActions.cpp 38 InitOnlyAction::CreateASTConsumer(CompilerInstance &CI, StringRef InFile) {
50 ASTPrintAction::CreateASTConsumer(CompilerInstance &CI, StringRef InFile) {
51 if (raw_ostream *OS = CI.createDefaultOutputFile(false, InFile))
57 ASTDumpAction::CreateASTConsumer(CompilerInstance &CI, StringRef InFile) {
64 ASTDeclListAction::CreateASTConsumer(CompilerInstance &CI, StringRef InFile) {
69 ASTViewAction::CreateASTConsumer(CompilerInstance &CI, StringRef InFile) {
75 StringRef InFile) {
80 GeneratePCHAction::CreateASTConsumer(CompilerInstance &CI, StringRef InFile) {
84 ComputeASTConsumerArguments(CI, InFile, Sysroot, OutputFile);
100 CI, InFile, OutputFile, OS, Buffer))
    [all...]
  /external/icu/icu4c/source/test/iotest/
trnstst.c 123 FILE *infile; local
189 infile = fopen(STANDARD_TEST_FILE, "rb");
190 if(infile == NULL)
196 len=fread(ubuf, sizeof(UChar), u_strlen(compare), infile);
218 fclose(infile);
  /external/libpng/contrib/gregbook/
readppm.c 81 int readpng_init(FILE *infile, ulg *pWidth, ulg *pHeight)
87 saved_infile = infile;
89 fgets(ppmline, 256, infile);
107 fgets(ppmline, 256, infile);
112 fgets(ppmline, 256, infile);
  /external/libvpx/libvpx/examples/
set_maps.c 58 fprintf(stderr, "Usage: %s <codec> <width> <height> <infile> <outfile>\n",
154 FILE *infile = NULL; local
208 if (!(infile = fopen(argv[4], "rb")))
215 while (vpx_img_read(&raw, infile)) {
234 fclose(infile);
  /external/vboot_reference/tests/futility/
test_sign_firmware.sh 36 for infile in $INFILES; do
38 base=${infile##*/}
51 # infile
64 #OLD ${infile} \
86 ${infile} ${outfile}
  /frameworks/compile/libbcc/bcinfo/include/bcinfo/Wrap/
bitcode_wrapperer.h 53 BitcodeWrapperer(WrapperInput* infile, WrapperOutput* outfile);
103 // Returns the number of bytes in infile.
133 // Parse the bitcode wrapper header in the infile, if any. Return true
153 // Copies size bytes of infile to outfile, using the buffer.
156 // Discards the old infile and replaces it with the given file.
  /toolchain/binutils/binutils-2.27/libiberty/
pex-msdos.c 167 char *infile; local
197 infile = "";
202 infile = ms->files[inindex];
219 + strlen (infile)
227 infile,
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/EfiRom/
EfiRom.c 179 FILE_LIST *InFile,
189 FILE_LIST *InFile,
196 FILE_LIST *InFile
410 FILE_LIST *InFile,
422 InFile - structure contains information on the binary file to process
447 if ((InFptr = fopen (InFile->FileName, "rb")) == NULL) {
448 fprintf (stdout, "ERROR: Failed to open input file %s\n", InFile->FileName);
533 InFile->FileName,
549 if ((InFile->Next == NULL) && (mOptions.NoLast == 0)) {
580 fprintf (stdout, "Error processing binary file %s\n", InFile->FileName);
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/C/GenFfs/
GenFfs.c 281 FILE *InFile;
311 InFile = fopen (LongFilePath (InputFileName[Index]), "rb");
312 if (InFile == NULL) {
317 fseek (InFile, 0, SEEK_END);
318 FileSize = ftell (InFile);
319 fseek (InFile, 0, SEEK_SET);
332 fread (&TempSectHeader, 1, HeaderSize, InFile);
335 fread (&TeHeader, 1, sizeof (TeHeader), InFile);
342 fseek (InFile, 0, SEEK_SET);
344 fread (&GuidSectHeader2, 1, sizeof (GuidSectHeader2), InFile);
    [all...]
  /external/zlib/src/examples/
gun.c 82 int infile; member in struct:ind
103 ret = (int)read(me->infile, next, ret);
371 /* Decompress a gzip file from infile to outfile. strm is assumed to have been
383 local int gunpipe(z_stream *strm, int infile, int outfile)
392 ind.infile = infile;
551 int infile, outfile; local
556 infile = 0; /* stdin */
559 infile = open(inname, O_RDONLY, 0);
560 if (infile == -1)
    [all...]
  /toolchain/binutils/binutils-2.27/zlib/examples/
gun.c 82 int infile; member in struct:ind
103 ret = (int)read(me->infile, next, ret);
371 /* Decompress a gzip file from infile to outfile. strm is assumed to have been
383 local int gunpipe(z_stream *strm, int infile, int outfile)
392 ind.infile = infile;
551 int infile, outfile; local
556 infile = 0; /* stdin */
559 infile = open(inname, O_RDONLY, 0);
560 if (infile == -1)
    [all...]
  /external/one-true-awk/
lib.c 35 FILE *infile = NULL; variable
104 infile = stdin; /* no filenames, so use stdin */
128 while (argno < *ARGC || infile == stdin) {
130 if (infile == NULL) { /* have to open a new file */
144 infile = stdin;
145 else if ((infile = fopen(file, "r")) == NULL)
149 c = readrec(&buf, &bufsize, infile);
168 if (infile != stdin)
169 fclose(infile);
170 infile = NULL
    [all...]
  /system/extras/app-launcher/
app-launcher 52 infile=$1
62 fgrep TotalTime $infile | awk '{print $2}' | computestats
66 fgrep cpu-cycles $infile | awk '{print $1}' | sed s/,//g | computestats
70 fgrep 'Total CPU util' $infile | awk '{print $5}' | computestatsf
72 fgrep 'User CPU util' $infile | awk '{print $5}' | computestatsf
74 fgrep 'Sys CPU util' $infile | awk '{print $5}' | computestatsf
78 fgrep instructions $infile | awk '{print $1}' | sed s/,//g | computestats
81 fgrep instructions $infile | awk '{print $4}' | sed s/,//g | computestatsf
84 fgrep branch-misses $infile | awk '{print $1}' | sed s/,//g | computestats
87 fgrep context-switches $infile | awk '{print $1}' | sed s/,//g | computestat
    [all...]
  /external/clang/include/clang/Frontend/
FrontendAction.h 45 StringRef InFile);
60 /// \param InFile - The current input file, provided as a convenience, see
65 StringRef InFile) = 0;
242 StringRef InFile) override = 0;
273 StringRef InFile) override;
290 StringRef InFile) override;
  /external/icu/icu4j/tools/build/src/com/ibm/icu/dev/tool/docs/
SwatDeprecated.java 164 public void processFile(File inFile) {
167 String inPath = inFile.getCanonicalPath();
181 tmpFile = File.createTempFile(inFile.getName(), null, inFile.getParentFile());
195 InputStream is = new FileInputStream(inFile);
299 outFile.setLastModified(inFile.lastModified());
  /external/llvm/tools/bugpoint/
OptimizerDriver.cpp 157 tool_output_file InFile(InputFilename, InputFD);
159 WriteBitcodeToFile(Program, InFile.os(), PreserveBitcodeUseListOrder);
160 InFile.os().close();
161 if (InFile.os().has_error()) {
163 InFile.os().clear_error();
193 InFile.keep();
  /external/swiftshader/third_party/LLVM/tools/bugpoint/
OptimizerDriver.cpp 132 tool_output_file InFile(inputFilename.c_str(), ErrInfo,
140 WriteBitcodeToFile(Program, InFile.os());
141 InFile.os().close();
142 if (InFile.os().has_error()) {
144 InFile.os().clear_error();
156 InFile.keep();
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/Frontend/
FrontendAction.h 45 StringRef InFile);
60 /// \param InFile - The current input file, provided as a convenience, see
65 StringRef InFile) = 0;
242 StringRef InFile) override = 0;
273 StringRef InFile) override;
290 StringRef InFile) override;
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/clang/Frontend/
FrontendAction.h 45 StringRef InFile);
60 /// \param InFile - The current input file, provided as a convenience, see
65 StringRef InFile) = 0;
243 StringRef InFile) override = 0;
274 StringRef InFile) override;
291 StringRef InFile) override;
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/clang/Frontend/
FrontendAction.h 45 StringRef InFile);
60 /// \param InFile - The current input file, provided as a convenience, see
65 StringRef InFile) = 0;
243 StringRef InFile) override = 0;
274 StringRef InFile) override;
291 StringRef InFile) override;
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/clang/Frontend/
FrontendAction.h 45 StringRef InFile);
60 /// \param InFile - The current input file, provided as a convenience, see
65 StringRef InFile) = 0;
243 StringRef InFile) override = 0;
274 StringRef InFile) override;
291 StringRef InFile) override;

Completed in 1146 milliseconds

<<11121314151617181920>>