Home
last modified time | relevance | path

Searched refs:textSection (Results 1 – 2 of 2) sorted by relevance

/external/swiftshader/src/Reactor/
DDLL.cpp228 memset(&textSection, 0, sizeof(textSection)); in emit()
229 strcpy((char*)&textSection.Name, ".text"); in emit()
230 textSection.Misc.VirtualSize = pageAlign(codeSize); in emit()
231 textSection.VirtualAddress = codePage; in emit()
232 textSection.SizeOfRawData = fileAlign(codeSize); in emit()
233textSection.PointerToRawData = fileAlign(sizeof(DOSheader) + (AMD64 ? sizeof(COFFheader64) : sizeo… in emit()
234 textSection.PointerToRelocations = 0; in emit()
235 textSection.PointerToLinenumbers = 0; in emit()
236 textSection.NumberOfRelocations = 0; in emit()
237 textSection.NumberOfLinenumbers = 0; in emit()
[all …]
DDLL.hpp51 IMAGE_SECTION_HEADER textSection; member in sw::DLL