Searched defs:outFile (Results 1 - 25 of 27) sorted by relevance

12

/external/llvm/lib/Target/NVPTX/
H A Dgen-register-defs.py5 outFile = open('NVPTXRegisterInfo.td', 'w') variable
7 outFile.write('''
41 outFile.write('''
45 outFile.write('def P%d : NVPTXReg<"%%p%d">;\n' % (i, i))
48 outFile.write('''
52 outFile.write('def RC%d : NVPTXReg<"%%rc%d">;\n' % (i, i))
55 outFile.write('''
59 outFile.write('def RS%d : NVPTXReg<"%%rs%d">;\n' % (i, i))
62 outFile.write('''
66 outFile
179 outFile = open('NVPTXNumRegisters.h', 'w') variable
[all...]
/external/emma/core/java12/com/vladium/emma/rt/
H A DRTCoverageDataPersister.java38 final File outFile, final boolean merge)
54 DataFactory.persist (cdataView, outFile, merge);
61 log.info ("runtime coverage data " + (merge ? "merged into" : "written to") + " [" + outFile.getAbsolutePath () + "] {in " + (end - start) + " ms}");
37 dumpCoverageData(final ICoverageData cdata, final boolean useSnapshot, final File outFile, final boolean merge) argument
H A DRTExitHook.java105 RTExitHook (final Class RT, final ICoverageData cdata, final File outFile, final boolean merge) argument
110 m_outFile = outFile;
H A DRT.java144 * @param outFile
148 public static synchronized void dumpCoverageData (File outFile, final boolean merge, final boolean stopDataCollection) argument
151 outFile = outFile != null ? outFile : getCoverageOutFile ();
156 RTCoverageDataPersister.dumpCoverageData (cdata, ! stopDataCollection, outFile, merge);
159 public static synchronized void dumpCoverageData (File outFile, final boolean stopDataCollection) argument
161 outFile = outFile != null ? outFile
[all...]
/external/llvm/runtime/libprofile/
H A DCommonProfiling.c141 int outFile = getOutFile(); local
145 if( write(outFile, &PTy, sizeof(int)) < 0 ||
146 write(outFile, &NumElements, sizeof(unsigned)) < 0 ||
147 write(outFile, Start, NumElements*sizeof(unsigned)) < 0 ) {
H A DPathProfiling.c56 int outFile = getOutFile(); local
77 arrayHeaderLocation = lseek(outFile, 0, SEEK_CUR);
78 lseek(outFile, sizeof(PathProfileHeader), SEEK_CUR);
84 if (write(outFile, &pte, sizeof(PathProfileTableEntry)) < 0) {
97 arrayCurrentLocation = lseek(outFile, 0, SEEK_CUR);
98 lseek(outFile, arrayHeaderLocation, SEEK_SET);
100 if (write(outFile, &fHeader, sizeof(PathProfileHeader)) < 0) {
106 lseek(outFile, arrayCurrentLocation, SEEK_SET);
117 int outFile = getOutFile(); local
124 if (write(outFile,
222 int outFile = getOutFile(); local
[all...]
/external/emma/core/java12/com/vladium/emma/report/
H A DReportProperties.java65 public void setOutFile (final File outFile) argument
67 if ($assert.ENABLED) $assert.ASSERT (outFile != null, "null input: outFile");
69 m_outFile = outFile;
/external/bzip2/
H A Dbzip2recover.c304 FILE* outFile; local
436 outFile = NULL;
446 if (outFile != NULL && bitsRead >= rbStart[wrBlock]
454 if (outFile != NULL) {
489 outFile = fopen ( outFileName, "wb" );
490 if (outFile == NULL) {
495 bsWr = bsOpenWriteStream ( outFile );
/external/emma/core/java12/com/vladium/emma/instr/
H A DInstrProcessorST.java181 File outFile = null;
190 outFile = new File (className.replace ('.', File.separatorChar).concat (".class"));
191 fullOutFile = getFullOutFile (null, outFile, IN_CLASSES);
199 // BUG_SF989071: using outFile here instead resulted in
212 if (log.atVERBOSE ()) log.verbose ("destination file [" + outFile + "] skipped: more recent than the source");
252 outFile = new File (className.replace ('.', File.separatorChar).concat (".class"));
253 fullOutFile = getFullOutFile (null, outFile, IN_CLASSES);
560 final File outFile = getFullOutFile (pathDir, file, IN_CLASSES);
562 addJob (new FileWriteJob (outFile, data, mkdir));
803 static void writeFile (final byte [] data, final File outFile, fina argument
886 FileWriteJob(final File outFile, final byte [] data, final boolean mkdirs) argument
[all...]
/external/webkit/Tools/DumpRenderTree/chromium/
H A DImageDiff.cpp317 static bool writeFile(const char* outFile, const unsigned char* data, size_t dataSize) argument
319 FILE* file = fopen(outFile, "wb");
321 fprintf(stderr, "ImageDiff: Unable to create file \"%s\"\n", outFile);
326 fprintf(stderr, "ImageDiff: Unable to write data to file \"%s\"\n", outFile);
333 int diffImages(const char* file1, const char* file2, const char* outFile) argument
355 if (!writeFile(outFile, &pngData.front(), pngData.size()))
/external/yaffs2/yaffs2/utils/
H A Dmkyaffs2image.c78 static int outFile; variable
230 error = write(outFile,data,chunkSize);
255 // return write(outFile,&pt,sizeof(yaffs_PackedTags2));
256 return write(outFile,spare, spareSize);
627 outFile = open(image,O_CREAT | O_TRUNC | O_WRONLY, S_IREAD | S_IWRITE);
630 if(outFile < 0)
679 close(outFile);
695 close(outFile);
H A Dmkyaffsimage.c56 static int outFile; variable
239 error = write(outFile,data,512);
261 return write(outFile,&s,sizeof(yaffs_Spare));
561 outFile = open(argv[2],O_CREAT | O_TRUNC | O_WRONLY, S_IREAD | S_IWRITE);
564 if(outFile < 0)
575 close(outFile);
589 close(outFile);
/external/webrtc/src/modules/audio_processing/aec/
H A Daec_core.h151 FILE *outFile; member in struct:__anon15107
/external/webkit/Tools/android/webkitmerge/
H A Dwebkitmerge.cpp204 const char* outFile)
209 sandboxBase, oldDir, oldFile, oldBase, oldDir, oldFile, newBase, newDir, newFile, outFile);
203 Merge(const char* oldDir, const char* oldFile, const char* newDir, const char* newFile, const char* outFile) argument
/external/webrtc/src/modules/audio_processing/aecm/
H A Daecm_core.h202 FILE *outFile; member in struct:__anon15119
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
H A Dant-junit.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...
H A Dant.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.equinox.p2.core_2.0.2.R36x_v20100804.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.equinox.p2.touchpoint.natives_1.0.200.v20100503a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.test.performance_3.6.0.v20091014.jarMETA-INF/MANIFEST.MF plugin.properties about.html scripts/cs.sh scripts/derby. ...
H A Dorg.eclipse.osgi_3.6.1.R36x_v20100806.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.osgi_3.6.2.R36x_v20101103.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.help.base_3.5.2.v201011171123.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.pde.api.tools_1.0.202.v20100820_r361.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/emma/lib/
H A Demma.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/vladium/ com/vladium/app/ com/vladium/app/IAppVersion ...

Completed in 257 milliseconds

12