Home
last modified time | relevance | path

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

/external/swiftshader/src/Reactor/
DDLL.cpp242 memset(&exportsSection, 0, sizeof(exportsSection)); in emit()
243 strcpy((char*)&exportsSection.Name, ".edata"); in emit()
244 exportsSection.Misc.VirtualSize = pageAlign(exportsSize); in emit()
245 exportsSection.VirtualAddress = exportsPage; in emit()
246 exportsSection.SizeOfRawData = fileAlign(exportsSize); in emit()
247 exportsSection.PointerToRawData = textSection.PointerToRawData + fileAlign(codeSize); in emit()
248 exportsSection.PointerToRelocations = 0; in emit()
249 exportsSection.PointerToLinenumbers = 0; in emit()
250 exportsSection.NumberOfRelocations = 0; in emit()
251 exportsSection.NumberOfLinenumbers = 0; in emit()
[all …]
DDLL.hpp52 IMAGE_SECTION_HEADER exportsSection; member in sw::DLL