HomeSort by relevance Sort by last modified time
    Searched refs:ProfileFile (Results 1 - 2 of 2) sorted by null

  /external/swiftshader/third_party/LLVM/utils/
profile.pl 24 my $ProfileFile = "";
38 $ProfileFile = $ARGV[0];
74 system "llvm-prof $LLVMProfOpts $BytecodeFile $ProfileFile";
  /external/compiler-rt/lib/profile/
InstrProfilingFile.c 118 /* Read profile data in \c ProfileFile and merge with in-memory
122 static int doProfileMerging(FILE *ProfileFile) {
126 if (fseek(ProfileFile, 0L, SEEK_END) == -1) {
131 ProfileFileSize = ftell(ProfileFile);
134 if (fseek(ProfileFile, 0L, SEEK_SET) == -1) {
149 fileno(ProfileFile), 0);
179 FILE *ProfileFile;
182 ProfileFile = lprofOpenFileEx(ProfileFileName);
183 if (!ProfileFile)
186 rc = doProfileMerging(ProfileFile);
    [all...]

Completed in 54 milliseconds