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

/external/compiler-rt/lib/profile/
H A DInstrProfilingBuffer.c16 const uint64_t NamesSize = PROFILE_RANGE_SIZE(names) * sizeof(char); local
17 const uint64_t Padding = sizeof(uint64_t) - NamesSize % sizeof(uint64_t);
21 NamesSize + Padding;
39 const uint64_t NamesSize = NamesEnd - NamesBegin; local
40 const uint64_t Padding = sizeof(uint64_t) - NamesSize % sizeof(uint64_t);
51 Header[4] = NamesSize;
64 UPDATE_memcpy(NamesBegin, NamesSize * sizeof(char));
H A DInstrProfilingFile.c29 const uint64_t NamesSize = NamesEnd - NamesBegin; local
30 const uint64_t Padding = sizeof(uint64_t) - NamesSize % sizeof(uint64_t);
41 Header[4] = NamesSize;
51 CHECK_fwrite(NamesBegin, sizeof(char), NamesSize, File);
/external/llvm/lib/ProfileData/
H A DInstrProfReader.cpp217 auto NamesSize = swap(Header.NamesSize); local
222 size_t ProfileSize = NamesOffset + sizeof(char) * NamesSize;
/external/llvm/include/llvm/ProfileData/
H A DInstrProfReader.h157 const uint64_t NamesSize; member in struct:llvm::RawInstrProfReader::RawHeader

Completed in 2305 milliseconds