Home
last modified time | relevance | path

Searched refs:DataStart (Results 1 – 6 of 6) sorted by relevance

/freebsd/contrib/llvm-project/compiler-rt/lib/profile/
H A DInstrProfilingPlatformWindows.c44 __llvm_profile_data COMPILER_RT_SECTION(".lprfd$A") DataStart = {0};
60 return &DataStart + 1; in __llvm_profile_begin_data()
H A DInstrProfilingPlatformDarwin.c19 DataStart __asm("section$start$__DATA$" INSTR_PROF_DATA_SECT_NAME);
62 return &DataStart; in __llvm_profile_begin_data()
H A DInstrProfilingFile.c327 static uint32_t orderFileWriter(FILE *File, const uint32_t *DataStart) { in orderFileWriter() argument
328 if (fwrite(DataStart, sizeof(uint32_t), INSTR_ORDER_FILE_BUFFER_SIZE, File) != in orderFileWriter()
/freebsd/contrib/llvm-project/llvm/lib/ProfileData/
H A DInstrProfCorrelator.cpp76 C->DataStart = DataOrErr->data(); in get()
448 const RawProfData *DataStart = (const RawProfData *)this->Ctx->DataStart; in correlateProfileDataImpl() local
451 for (const RawProfData *I = DataStart; I < DataEnd; ++I) { in correlateProfileDataImpl()
461 (I - DataStart) * sizeof(RawProfData)); in correlateProfileDataImpl()
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DOnDiskHashTable.h197 uint64_t DataStart = Out.tell(); in Emit() local
200 assert(offset_type(DataStart - KeyStart) == Len.first && in Emit()
202 assert(offset_type(End - DataStart) == Len.second && in Emit()
/freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DDXContainerEmitter.cpp128 uint64_t DataStart = OS.tell(); in writeParts() local
265 uint64_t BytesWritten = OS.tell() - DataStart; in writeParts()