Lines Matching refs:Sec
312 Section Sec;
313 std::memset(&Sec.Header, 0, sizeof(Sec.Header));
334 std::fill_n(Sec.Header.Name, unsigned(COFF::NameSize), 0);
336 std::copy(Name.begin(), Name.end(), Sec.Header.Name);
345 Sec.Header.Name[0] = '/';
346 std::copy(str.begin(), str.end(), Sec.Header.Name + 1);
349 if (!getAs(Value, Sec.Header.VirtualSize)) {
354 if (!getAs(Value, Sec.Header.VirtualAddress)) {
359 if (!getAs(Value, Sec.Header.SizeOfRawData)) {
364 if (!getAs(Value, Sec.Header.PointerToRawData)) {
369 if (!getAs(Value, Sec.Header.PointerToRelocations)) {
374 if (!getAs(Value, Sec.Header.PointerToLineNumbers)) {
379 if (!getAs(Value, Sec.Header.NumberOfRelocations)) {
384 if (!getAs(Value, Sec.Header.NumberOfLineNumbers)) {
397 if (!getAs(Value, Sec.Header.Characteristics)) {
488 Sec.Header.Characteristics |= Characteristic;
495 if (!hexStringToByteArray(Data, Sec.Data)) {
503 Sections.push_back(Sec);