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

/freebsd-12-stable/contrib/llvm-project/compiler-rt/lib/profile/
H A DInstrProfilingPlatformFuchsia.c110 static uint32_t lprofVMOWriter(ProfDataWriter *This, ProfDataIOVec *IOVecs, argument
115 Length += IOVecs[I].ElmSize * IOVecs[I].NumElm;
125 size_t Length = IOVecs[I].ElmSize * IOVecs[I].NumElm;
126 if (IOVecs[I].Data) {
127 Status = _zx_vmo_write(__llvm_profile_vmo, IOVecs[I].Data,
131 } else if (IOVecs[I].UseZeroPadding) {
H A DInstrProfilingWriter.c36 ProfDataIOVec *IOVecs,
41 size_t Length = IOVecs[I].ElmSize * IOVecs[I].NumElm;
42 if (IOVecs[I].Data)
43 memcpy(*Buffer, IOVecs[I].Data, Length);
44 else if (IOVecs[I].UseZeroPadding) {
35 lprofBufferWriter(ProfDataWriter *This, ProfDataIOVec *IOVecs, uint32_t NumIOVecs) argument
H A DInstrProfilingFile.c121 static uint32_t fileWriter(ProfDataWriter *This, ProfDataIOVec *IOVecs, argument
127 if (IOVecs[I].Data) {
128 if (fwrite(IOVecs[I].Data, IOVecs[I].ElmSize, IOVecs[I].NumElm, File) !=
129 IOVecs[I].NumElm)
131 } else if (IOVecs[I].UseZeroPadding) {
132 size_t BytesToWrite = IOVecs[I].ElmSize * IOVecs[I].NumElm;
143 if (fseek(File, IOVecs[
[all...]
H A DInstrProfilingInternal.h110 uint32_t lprofBufferWriter(ProfDataWriter *This, ProfDataIOVec *IOVecs,

Completed in 54 milliseconds