Searched refs:SecEnd (Results 1 – 3 of 3) sorted by relevance
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-readobj/ |
H A D | ObjDumper.cpp | 115 const uint8_t *SecEnd = SectionContent.bytes_end(); in printSectionsAsString() local 117 while (CurrentWord <= SecEnd) { in printSectionsAsString() 119 SecEnd - CurrentWord); in printSectionsAsString() 147 const uint8_t *SecEnd = SecContent + SectionContent.size(); in printSectionsAsHex() local 149 for (const uint8_t *SecPtr = SecContent; SecPtr < SecEnd; SecPtr += 16) { in printSectionsAsHex() 157 for (i = 0; TmpSecPtr < SecEnd && i < 4; ++i) { in printSectionsAsHex() 158 for (k = 0; TmpSecPtr < SecEnd && k < 4; k++, TmpSecPtr++) { in printSectionsAsHex() 176 for (i = 0; TmpSecPtr + i < SecEnd && i < 16; ++i) in printSectionsAsHex()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/MC/ |
H A D | ELFObjectWriter.cpp | 758 uint64_t SecEnd = W.OS.tell(); in computeSymbolTable() local 759 SectionOffsets[SymtabSection] = std::make_pair(SecStart, SecEnd); in computeSymbolTable() 773 SecEnd = W.OS.tell(); in computeSymbolTable() 774 SectionOffsets[SymtabShndxSection] = std::make_pair(SecStart, SecEnd); in computeSymbolTable() 1100 uint64_t SecEnd = W.OS.tell(); in writeObject() local 1101 SectionOffsets[&Section] = std::make_pair(SecStart, SecEnd); in writeObject() 1150 uint64_t SecEnd = W.OS.tell(); in writeObject() local 1151 SectionOffsets[Group] = std::make_pair(SecStart, SecEnd); in writeObject() 1177 uint64_t SecEnd = W.OS.tell(); in writeObject() local 1178 SectionOffsets[RelSection] = std::make_pair(SecStart, SecEnd); in writeObject() [all …]
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Instrumentation/ |
H A D | SanitizerCoverage.cpp | 342 GlobalVariable *SecEnd = in CreateSecStartEnd() local 345 SecEnd->setVisibility(GlobalValue::HiddenVisibility); in CreateSecStartEnd() 348 return std::make_pair(SecStart, SecEnd); in CreateSecStartEnd() 355 return std::make_pair(IRB.CreatePointerCast(GEP, Ty), SecEnd); in CreateSecStartEnd() 363 auto SecEnd = SecStartEnd.second; in CreateInitCallsForSections() local 366 M, CtorName, InitFunctionName, {Ty, Ty}, {SecStart, SecEnd}); in CreateInitCallsForSections()
|