Searched refs:ProfileFileSize (Results 1 - 1 of 1) sorted by relevance

/freebsd-12-stable/contrib/llvm-project/compiler-rt/lib/profile/
H A DInstrProfilingFile.c189 * \p ProfileFileSize. */
191 uint64_t *ProfileFileSize) {
197 *ProfileFileSize = ftell(ProfileFile);
206 if (*ProfileFileSize > 0 &&
207 *ProfileFileSize < sizeof(__llvm_profile_header)) {
216 * exclusive lock is held on the file and that \p ProfileFileSize is the
220 static int mmapProfileForMerging(FILE *ProfileFile, uint64_t ProfileFileSize, argument
222 *ProfileBuffer = mmap(NULL, ProfileFileSize, PROT_READ, MAP_SHARED | MAP_FILE,
230 if (__llvm_profile_check_compatibility(*ProfileBuffer, ProfileFileSize)) {
231 (void)munmap(*ProfileBuffer, ProfileFileSize);
190 getProfileFileSizeForMerging(FILE *ProfileFile, uint64_t *ProfileFileSize) argument
245 uint64_t ProfileFileSize; local
[all...]

Completed in 91 milliseconds