Searched refs:section_size (Results 1 – 6 of 6) sorted by relevance
| /freebsd/contrib/llvm-project/lldb/source/DataFormatters/ |
| H A D | FormatterSection.cpp | 47 auto section_size = section_sp->GetSectionData(lldb_extractor); in ForEachFormatterInModule() local 52 while (cursor && cursor.tell() < section_size) { in ForEachFormatterInModule() 53 while (cursor && cursor.tell() < section_size) { in ForEachFormatterInModule()
|
| /freebsd/sys/contrib/dev/iwlwifi/ |
| H A D | iwl-nvm-parse.c | 1837 int ret, section_size; in iwl_read_external_nvm() local 1932 section_size = in iwl_read_external_nvm() 1936 section_size = 2 * EXT_NVM_WORD2_LEN( in iwl_read_external_nvm() 1942 if (section_size > max_section_size) { in iwl_read_external_nvm() 1944 section_size); in iwl_read_external_nvm() 1949 if (!section_size) { in iwl_read_external_nvm() 1955 if (file_sec->data + section_size > eof) { in iwl_read_external_nvm() 1958 section_size); in iwl_read_external_nvm() 1969 temp = kmemdup(file_sec->data, section_size, GFP_KERNEL); in iwl_read_external_nvm() 1975 iwl_nvm_fixups(trans->info.hw_id, section_id, temp, section_size); in iwl_read_external_nvm() [all …]
|
| /freebsd/sys/contrib/dev/athk/ath10k/ |
| H A D | sdio.c | 2295 unsigned int count, section_size, skip_size; in ath10k_sdio_dump_memory_section() local 2322 section_size = cur_section->end - cur_section->start; in ath10k_sdio_dump_memory_section() 2324 if (section_size <= 0) { in ath10k_sdio_dump_memory_section() 2348 if (buf_len < (skip_size + section_size)) { in ath10k_sdio_dump_memory_section() 2353 buf_len -= skip_size + section_size; in ath10k_sdio_dump_memory_section() 2357 buf, section_size); in ath10k_sdio_dump_memory_section() 2364 buf += section_size; in ath10k_sdio_dump_memory_section() 2365 count += section_size; in ath10k_sdio_dump_memory_section()
|
| H A D | pci.c | 1551 unsigned int count, section_size, skip_size; in ath10k_pci_dump_memory_section() local 1578 section_size = cur_section->end - cur_section->start; in ath10k_pci_dump_memory_section() 1580 if (section_size <= 0) { in ath10k_pci_dump_memory_section() 1604 if (buf_len < (skip_size + section_size)) { in ath10k_pci_dump_memory_section() 1609 buf_len -= skip_size + section_size; in ath10k_pci_dump_memory_section() 1613 buf, section_size); in ath10k_pci_dump_memory_section() 1620 buf += section_size; in ath10k_pci_dump_memory_section() 1621 count += section_size; in ath10k_pci_dump_memory_section()
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/ObjectFile/ELF/ |
| H A D | ObjectFileELF.cpp | 1493 const uint64_t section_size = in GetSectionHeaderInfo() local 1504 if (section_size && (data.SetData(object_data, sheader.sh_offset, in GetSectionHeaderInfo() 1505 section_size) == section_size)) { in GetSectionHeaderInfo() 1569 if (sheader.sh_type == SHT_ARM_ATTRIBUTES && section_size != 0 && in GetSectionHeaderInfo() 1570 data.SetData(object_data, sheader.sh_offset, section_size) == section_size) in GetSectionHeaderInfo() 1571 ParseARMAttributes(data, section_size, arch_spec); in GetSectionHeaderInfo() 1576 if (section_size && (data.SetData(object_data, sheader.sh_offset, in GetSectionHeaderInfo() 1577 section_size) == section_size)) { in GetSectionHeaderInfo() 1597 if (section_size && (data.SetData(object_data, sheader.sh_offset, in GetSectionHeaderInfo() 1598 section_size) == section_size)) { in GetSectionHeaderInfo()
|
| /freebsd/contrib/llvm-project/lldb/source/Symbol/ |
| H A D | ObjectFile.cpp | 523 const uint64_t section_size = section->GetByteSize(); in ReadSectionData() local 524 const uint64_t section_bytes_left = section_size - section_offset; in ReadSectionData()
|