Home
last modified time | relevance | path

Searched refs:section_headers (Results 1 – 25 of 295) sorted by relevance

12345678910>>...12

/dports/editors/hte/ht-e9e63373148da5d7df397d8075740d8c096ecb1d/
H A Dhtcoff.cc196 COFF_SECTION_HEADER *s=section_headers->sections; in coff_rva_to_section()
197 for (uint i=0; i<section_headers->section_count; i++) { in coff_rva_to_section()
209 COFF_SECTION_HEADER *s = section_headers->sections; in coff_rva_to_ofs()
223 COFF_SECTION_HEADER *s=section_headers->sections; in coff_rva_is_valid()
235 COFF_SECTION_HEADER *s=section_headers->sections; in coff_rva_is_physical()
252 COFF_SECTION_HEADER *s=section_headers->sections; in coff_ofs_to_rva()
254 if ((ofs>=s->data_offset+section_headers->hdr_ofs) && in coff_ofs_to_rva()
266 COFF_SECTION_HEADER *s=section_headers->sections; in coff_ofs_to_section()
268 if ((ofs>=s->data_offset+section_headers->hdr_ofs) && in coff_ofs_to_section()
280 int r = coff_ofs_to_rva(section_headers, ofs, rva); in coff_ofs_to_rva_and_section()
[all …]
H A Dhtxbe.cc188 XBE_SECTION_HEADER *s=section_headers->sections; in xbe_rva_to_ofs()
190 for (uint i=0; i<section_headers->number_of_sections; i++) { in xbe_rva_to_ofs()
203 XBE_SECTION_HEADER *s=section_headers->sections; in xbe_rva_to_section()
218 XBE_SECTION_HEADER *s=section_headers->sections; in xbe_rva_is_valid()
231 XBE_SECTION_HEADER *s=section_headers->sections; in xbe_rva_is_physical()
249 XBE_SECTION_HEADER *s=section_headers->sections; in xbe_ofs_to_rva()
263 XBE_SECTION_HEADER *s=section_headers->sections; in xbe_ofs_to_section()
277 bool r = xbe_ofs_to_rva(section_headers, ofs, rva); in xbe_ofs_to_rva_and_section()
279 r = xbe_ofs_to_section(section_headers, ofs, section); in xbe_ofs_to_rva_and_section()
287 return xbe_ofs_to_rva(section_headers, ofs, &rva); in xbe_ofs_is_valid()
[all …]
H A Dhtpe.cc224 COFF_SECTION_HEADER *s=section_headers->sections; in pe_rva_to_ofs()
225 for (uint i=0; i<section_headers->section_count; i++) { in pe_rva_to_ofs()
238 COFF_SECTION_HEADER *s=section_headers->sections; in pe_rva_to_section()
252 COFF_SECTION_HEADER *s=section_headers->sections; in pe_rva_is_valid()
265 COFF_SECTION_HEADER *s=section_headers->sections; in pe_rva_is_physical()
282 COFF_SECTION_HEADER *s=section_headers->sections; in pe_ofs_to_rva()
296 COFF_SECTION_HEADER *s=section_headers->sections; in pe_ofs_to_section()
310 bool r = pe_ofs_to_rva(section_headers, ofs, rva); in pe_ofs_to_rva_and_section()
312 r = pe_ofs_to_section(section_headers, ofs, section); in pe_ofs_to_rva_and_section()
320 return pe_ofs_to_rva(section_headers, ofs, &rva); in pe_ofs_is_valid()
[all …]
H A Dhtxbe.h92 bool xbe_rva_to_section(xbe_section_headers *section_headers, RVA rva, int *section);
93 bool xbe_rva_to_ofs(xbe_section_headers *section_headers, RVA rva, FileOfs *ofs);
94 bool xbe_rva_is_valid(xbe_section_headers *section_headers, RVA rva);
95 bool xbe_rva_is_physical(xbe_section_headers *section_headers, RVA rva);
97 bool xbe_ofs_to_rva(xbe_section_headers *section_headers, FileOfs ofs, RVA *rva);
98 bool xbe_ofs_to_section(xbe_section_headers *section_headers, FileOfs ofs, int *section);
99 bool xbe_ofs_to_rva_and_section(xbe_section_headers *section_headers, FileOfs ofs, RVA *rva, int *s…
101 bool xbe_section_name_to_section(xbe_section_headers *section_headers, const char *name, int *secti…
H A Dhtpef.cc175 PEF_SECTION_HEADER *s = section_headers->sheaders; in pef_addr_to_ofs()
176 for (uint i=0; i < section_headers->count; i++) { in pef_addr_to_ofs()
189 PEF_SECTION_HEADER *s = section_headers->sheaders; in pef_addr_to_section()
190 for (uint i = 0; i < section_headers->count; i++) { in pef_addr_to_section()
201 bool pef_addr_is_valid(pef_section_headers *section_headers, PEFAddress addr) in pef_addr_is_valid() argument
203 PEF_SECTION_HEADER *s = section_headers->sheaders; in pef_addr_is_valid()
204 for (uint i=0; i<section_headers->count; i++) { in pef_addr_is_valid()
220 PEF_SECTION_HEADER *s = section_headers->sheaders; in pef_ofs_to_addr()
221 for (uint i = 0; i < section_headers->count; i++) { in pef_ofs_to_addr()
234 PEF_SECTION_HEADER *s=section_headers->sheaders; in pef_ofs_to_section()
[all …]
H A Dhtpe.h124 bool pe_rva_to_section(pe_section_headers *section_headers, RVA rva, int *section);
125 bool pe_rva_to_ofs(pe_section_headers *section_headers, RVA rva, FileOfs *ofs);
126 bool pe_rva_is_valid(pe_section_headers *section_headers, RVA rva);
127 bool pe_rva_is_physical(pe_section_headers *section_headers, RVA rva);
129 bool pe_ofs_to_rva(pe_section_headers *section_headers, FileOfs ofs, RVA *rva);
130 bool pe_ofs_to_section(pe_section_headers *section_headers, FileOfs ofs, int *section);
131 bool pe_ofs_to_rva_and_section(pe_section_headers *section_headers, FileOfs ofs, RVA *rva, int *sec…
133 bool pe_section_name_to_section(pe_section_headers *section_headers, const char *name, int *section…
H A Dhtcoff.h81 bool coff_rva_to_section(coff_section_headers *section_headers, RVA rva, int *section);
82 bool coff_rva_to_ofs(coff_section_headers *section_headers, RVA rva, FileOfs *ofs);
83 bool coff_rva_is_valid(coff_section_headers *section_headers, RVA rva);
84 bool coff_rva_is_physical(coff_section_headers *section_headers, RVA rva);
86 bool coff_ofs_to_rva(coff_section_headers *section_headers, uint32 ofs, RVA *rva);
87 bool coff_ofs_to_section(coff_section_headers *section_headers, uint32 ofs, uint *section);
88 int coff_ofs_to_rva_and_section(coff_section_headers *section_headers, uint32 ofs, RVA *rva, uint *…
H A Dhtelf.cc533 for (uint i=0; i < section_headers->count; i++) { in elf_addr_to_ofs()
544 for (uint i=0; i < section_headers->count; i++) { in elf_addr_to_ofs()
562 for (uint i = 0; i < section_headers->count; i++) { in elf_addr_to_section()
573 for (uint i = 0; i < section_headers->count; i++) { in elf_addr_to_section()
591 for (uint i=0; i<section_headers->count; i++) { in elf_addr_is_valid()
601 for (uint i=0; i<section_headers->count; i++) { in elf_addr_is_valid()
628 for (uint i = 0; i < section_headers->count; i++) { in elf_ofs_to_addr()
640 for (uint i = 0; i < section_headers->count; i++) { in elf_ofs_to_addr()
657 ELF_SECTION_HEADER32 *s=section_headers->sheaders32; in elf_ofs_to_section()
658 for (uint i=0; i<section_headers->count; i++) { in elf_ofs_to_section()
[all …]
H A Dhtpef.h83 bool pef_addr_to_section(pef_section_headers *section_headers, PEFAddress addr, int *section);
84 bool pef_addr_to_ofs(pef_section_headers *section_headers, PEFAddress addr, uint32 *ofs);
85 bool pef_addr_is_valid(pef_section_headers *section_headers, PEFAddress addr);
87 bool pef_ofs_to_addr(pef_section_headers *section_headers, uint32 ofs, PEFAddress *addr);
88 bool pef_ofs_to_section(pef_section_headers *section_headers, uint32 ofs, uint32 *section);
H A Dhtmacho.h71 bool macho_addr_to_section(MACHO_SECTION_U *section_headers, uint section_count, MACHOAddress addr,…
72 bool macho_addr_to_ofs(MACHO_SECTION_U *section_headers, uint section_count, MACHOAddress addr, Fil…
73 bool macho_addr_is_valid(MACHO_SECTION_U *section_headers, uint section_count, MACHOAddress addr);
75 bool macho_ofs_to_addr(MACHO_SECTION_U *section_headers, uint section_count, FileOfs ofs, MACHOAddr…
76 bool macho_ofs_to_section(MACHO_SECTION_U *section_headers, uint section_count, FileOfs ofs, int *s…
H A Dhtelf.h192 bool elf_addr_to_section(elf_section_headers *section_headers, uint elfclass, ELFAddress addr, int …
193 bool elf_addr_to_ofs(elf_section_headers *section_headers, uint elfclass, ELFAddress addr, FileOfs …
194 bool elf_addr_is_valid(elf_section_headers *section_headers, uint elfclass, ELFAddress addr);
196 bool elf_ofs_to_addr(elf_section_headers *section_headers, uint elfclass, FileOfs ofs, ELFAddress *…
197 bool elf_ofs_to_section(elf_section_headers *section_headers, uint elfclass, FileOfs ofs, uint32 *s…
/dports/www/chromium-legacy/chromium-88.0.4324.182/build/toolchain/win/
H A Dml.py89 section_headers = []
95 section_headers.append(section_header)
106 assert section_headers[debug_section_index].VirtualSize == 0
116 for header in section_headers[:debug_section_index]:
122 for header in section_headers[debug_section_index + 1:]:
130 for section_header in section_headers:
141 section_headers[-1].PointerToRawData + section_headers[-1].SizeOfRawData)
199 for header in section_headers[0:debug_section_index]:
209 for header in section_headers:
229 header = section_headers[i]
[all …]
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/build/toolchain/win/
H A Dml.py89 section_headers = []
95 section_headers.append(section_header)
106 assert section_headers[debug_section_index].VirtualSize == 0
116 for header in section_headers[:debug_section_index]:
122 for header in section_headers[debug_section_index + 1:]:
130 for section_header in section_headers:
141 section_headers[-1].PointerToRawData + section_headers[-1].SizeOfRawData)
199 for header in section_headers[0:debug_section_index]:
209 for header in section_headers:
229 header = section_headers[i]
[all …]
/dports/lang/v8/v8-9.6.180.12/build/toolchain/win/
H A Dml.py89 section_headers = []
95 section_headers.append(section_header)
106 assert section_headers[debug_section_index].VirtualSize == 0
116 for header in section_headers[:debug_section_index]:
122 for header in section_headers[debug_section_index + 1:]:
130 for section_header in section_headers:
141 section_headers[-1].PointerToRawData + section_headers[-1].SizeOfRawData)
199 for header in section_headers[0:debug_section_index]:
209 for header in section_headers:
229 header = section_headers[i]
[all …]
/dports/www/firefox/firefox-99.0/third_party/libwebrtc/build/toolchain/win/
H A Dml.py89 section_headers = []
95 section_headers.append(section_header)
106 assert section_headers[debug_section_index].VirtualSize == 0
116 for header in section_headers[:debug_section_index]:
122 for header in section_headers[debug_section_index + 1:]:
130 for section_header in section_headers:
141 section_headers[-1].PointerToRawData + section_headers[-1].SizeOfRawData)
199 for header in section_headers[0:debug_section_index]:
209 for header in section_headers:
229 header = section_headers[i]
[all …]
/dports/games/libretro-yabause/yabause-ea5b118/yabause/src/
H A Dcoffelf.c117 section_header_struct *section_headers=NULL; in MappedMemoryLoadCoff() local
168 DoubleWordSwap(section_headers[i].physaddr); in MappedMemoryLoadCoff()
172 DoubleWordSwap(section_headers[i].relptr); in MappedMemoryLoadCoff()
174 WordSwap(section_headers[i].numreloc); in MappedMemoryLoadCoff()
175 WordSwap(section_headers[i].numlineno); in MappedMemoryLoadCoff()
176 DoubleWordSwap(section_headers[i].flags); in MappedMemoryLoadCoff()
188 if (section_headers[i].sectionsize == 0 || in MappedMemoryLoadCoff()
189 section_headers[i].sectionptr == 0) in MappedMemoryLoadCoff()
196 free(section_headers); in MappedMemoryLoadCoff()
205 SH2WriteNotify(section_headers[i].physaddr, in MappedMemoryLoadCoff()
[all …]
/dports/devel/sentry-cli/sentry-cli-1.71.0/cargo-crates/goblin-0.4.3/src/elf/
H A Dmod.rs99 pub section_headers: SectionHeaders,
184 for sect in &self.section_headers {
228 section_headers: Default::default(),
273 if section_idx >= section_headers.len() {
277 let shdr = &section_headers[section_idx];
284 let shdr_strtab = get_strtab(&section_headers, strtab_idx)?;
288 for shdr in &section_headers {
343 for (idx, section) in section_headers.iter().enumerate() {
359 section_headers,
484 assert!(!binary.section_headers.is_empty()); in parse_crt1_64bit()
[all …]
/dports/math/py-statsmodels/statsmodels-0.13.1/statsmodels/tsa/vector_ar/tests/JMulTi_results/
H A Dparse_jmulti_var_output.py89 section_headers = ["Lagged endogenous term", # parameter matrices
92 del section_headers[-1]
95 results["est"] = dict.fromkeys(section_headers)
96 results["se"] = dict.fromkeys(section_headers)
97 results["t"] = dict.fromkeys(section_headers)
98 results["p"] = dict.fromkeys(section_headers)
114 if section == -1 and section_headers[section+1] not in line:
116 if section < len(section_headers)-1 \
117 and section_headers[section+1] in line: # new section
135 results["t"][section_headers[section]] = np.column_stack(
[all …]
/dports/devel/py-maturin/maturin-0.11.3/cargo-crates/goblin-0.4.2/src/elf/
H A Dmod.rs96 pub section_headers: SectionHeaders,
172 for sect in &self.section_headers {
216 section_headers: Default::default(),
258 if section_idx >= section_headers.len() {
262 let shdr = &section_headers[section_idx];
269 let shdr_strtab = get_strtab(&section_headers, strtab_idx)?;
273 for shdr in &section_headers {
328 for (idx, section) in section_headers.iter().enumerate() {
340 section_headers,
462 assert!(!binary.section_headers.is_empty()); in parse_crt1_64bit()
[all …]
/dports/www/geckodriver/mozilla-central-e9783a644016aa9b317887076618425586730d73/testing/geckodriver/cargo-crates/goblin-0.0.24/src/elf/
H A Dmod.rs96 pub section_headers: SectionHeaders,
171 for sect in &self.section_headers {
235 if section_idx >= section_headers.len() {
239 let shdr = &section_headers[section_idx];
246 let shdr_strtab = get_strtab(&section_headers, strtab_idx)?;
250 for shdr in &section_headers {
255 strtab = get_strtab(&section_headers, shdr.sh_link as usize)?;
305 for (idx, section) in section_headers.iter().enumerate() {
317 section_headers,
408 assert!(!binary.section_headers.is_empty()); in parse_crt1_64bit()
[all …]
/dports/www/firefox/firefox-99.0/third_party/rust/goblin/src/elf/
H A Dmod.rs96 pub section_headers: SectionHeaders,
171 for sect in &self.section_headers {
235 if section_idx >= section_headers.len() {
239 let shdr = &section_headers[section_idx];
246 let shdr_strtab = get_strtab(&section_headers, strtab_idx)?;
250 for shdr in &section_headers {
255 strtab = get_strtab(&section_headers, shdr.sh_link as usize)?;
305 for (idx, section) in section_headers.iter().enumerate() {
317 section_headers,
407 assert!(!binary.section_headers.is_empty()); in parse_crt1_64bit()
[all …]
/dports/mail/thunderbird/thunderbird-91.8.0/third_party/rust/goblin/src/elf/
H A Dmod.rs96 pub section_headers: SectionHeaders,
171 for sect in &self.section_headers {
235 if section_idx >= section_headers.len() {
239 let shdr = &section_headers[section_idx];
246 let shdr_strtab = get_strtab(&section_headers, strtab_idx)?;
250 for shdr in &section_headers {
255 strtab = get_strtab(&section_headers, shdr.sh_link as usize)?;
305 for (idx, section) in section_headers.iter().enumerate() {
317 section_headers,
407 assert!(!binary.section_headers.is_empty()); in parse_crt1_64bit()
[all …]
/dports/www/firefox-esr/firefox-91.8.0/third_party/rust/goblin/src/elf/
H A Dmod.rs96 pub section_headers: SectionHeaders,
171 for sect in &self.section_headers {
235 if section_idx >= section_headers.len() {
239 let shdr = &section_headers[section_idx];
246 let shdr_strtab = get_strtab(&section_headers, strtab_idx)?;
250 for shdr in &section_headers {
255 strtab = get_strtab(&section_headers, shdr.sh_link as usize)?;
305 for (idx, section) in section_headers.iter().enumerate() {
317 section_headers,
407 assert!(!binary.section_headers.is_empty()); in parse_crt1_64bit()
[all …]
/dports/lang/spidermonkey78/firefox-78.9.0/third_party/rust/goblin/src/elf/
H A Dmod.rs96 pub section_headers: SectionHeaders,
171 for sect in &self.section_headers {
235 if section_idx >= section_headers.len() {
239 let shdr = &section_headers[section_idx];
246 let shdr_strtab = get_strtab(&section_headers, strtab_idx)?;
250 for shdr in &section_headers {
255 strtab = get_strtab(&section_headers, shdr.sh_link as usize)?;
305 for (idx, section) in section_headers.iter().enumerate() {
317 section_headers,
407 assert!(!binary.section_headers.is_empty()); in parse_crt1_64bit()
[all …]
/dports/devel/bingrep/bingrep-0.8.5/cargo-crates/goblin-0.3.1/src/elf/
H A Dmod.rs96 pub section_headers: SectionHeaders,
172 for sect in &self.section_headers {
236 if section_idx >= section_headers.len() {
240 let shdr = &section_headers[section_idx];
247 let shdr_strtab = get_strtab(&section_headers, strtab_idx)?;
251 for shdr in &section_headers {
256 strtab = get_strtab(&section_headers, shdr.sh_link as usize)?;
306 for (idx, section) in section_headers.iter().enumerate() {
318 section_headers,
408 assert!(!binary.section_headers.is_empty()); in parse_crt1_64bit()
[all …]

12345678910>>...12