Lines Matching refs:section_filesz
332 size_t section_filesz; in process_section() local
359 section_filesz = ( ( flags & SEC_LOAD ) ? in process_section()
361 new = xmalloc ( sizeof ( *new ) + section_filesz ); in process_section()
362 memset ( new, 0, sizeof ( *new ) + section_filesz ); in process_section()
369 new->hdr.SizeOfRawData = section_filesz; in process_section()
505 size_t section_filesz; in create_reloc_section() local
510 section_filesz = efi_file_align ( section_memsz ); in create_reloc_section()
511 reloc = xmalloc ( sizeof ( *reloc ) + section_filesz ); in create_reloc_section()
512 memset ( reloc, 0, sizeof ( *reloc ) + section_filesz ); in create_reloc_section()
519 reloc->hdr.SizeOfRawData = section_filesz; in create_reloc_section()
530 pe_header->nt.OptionalHeader.SizeOfImage += section_filesz; in create_reloc_section()
549 size_t section_filesz; in create_debug_section() local
559 section_filesz = efi_file_align ( section_memsz ); in create_debug_section()
560 debug = xmalloc ( sizeof ( *debug ) + section_filesz ); in create_debug_section()
561 memset ( debug, 0, sizeof ( *debug ) + section_filesz ); in create_debug_section()
569 debug->hdr.SizeOfRawData = section_filesz; in create_debug_section()
588 pe_header->nt.OptionalHeader.SizeOfImage += section_filesz; in create_debug_section()