Searched refs:bss_size (Results 1 – 7 of 7) sorted by relevance
| /freebsd-12-stable/sys/i386/linux/ |
| D | imgact_linux.c | 67 unsigned long bss_size; in exec_linux_imgact() local 89 bss_size = round_page(a_out->a_bss); in exec_linux_imgact() 92 (u_long)a_out->a_text, (u_long)a_out->a_data, bss_size); in exec_linux_imgact() 111 a_out->a_data + bss_size > lim_cur_proc(imgp->proc, RLIMIT_DATA) || in exec_linux_imgact() 112 racct_set(imgp->proc, RACCT_DATA, a_out->a_data + bss_size) != 0) { in exec_linux_imgact() 142 a_out->a_text + a_out->a_data + bss_size, 0, VMFS_NO_SPACE, in exec_linux_imgact() 195 if (bss_size != 0) { in exec_linux_imgact() 198 bss_size, 0, VMFS_NO_SPACE, VM_PROT_ALL, VM_PROT_ALL, 0); in exec_linux_imgact() 203 bss_size); in exec_linux_imgact() 209 vmspace->vm_dsize = round_page(a_out->a_data + bss_size) >> PAGE_SHIFT; in exec_linux_imgact()
|
| /freebsd-12-stable/sys/kern/ |
| D | imgact_aout.c | 169 unsigned long bss_size; in exec_aout_imgact() local 218 bss_size = roundup(a_out->a_bss, PAGE_SIZE); in exec_aout_imgact() 233 virtual_offset + a_out->a_text + a_out->a_data + bss_size > UINT_MAX in exec_aout_imgact() 250 a_out->a_data + bss_size > lim_cur_proc(imgp->proc, RLIMIT_DATA) || in exec_aout_imgact() 251 racct_set(imgp->proc, RACCT_DATA, a_out->a_data + bss_size) != 0) { in exec_aout_imgact() 314 if (bss_size) { in exec_aout_imgact() 316 data_end, data_end + bss_size, in exec_aout_imgact() 327 vmspace->vm_dsize = (a_out->a_data + bss_size) >> PAGE_SHIFT; in exec_aout_imgact()
|
| /freebsd-12-stable/sys/i386/ibcs2/ |
| D | imgact_coff.c | 172 unsigned long bss_size = 0; in coff_load_file() local 265 bss_size = scns[i].s_size; in coff_load_file() 277 data_size + bss_size, data_size, in coff_load_file() 307 unsigned long bss_size = 0; local 366 bss_size = scns[i].s_size; 451 data_size + bss_size, data_size, VM_PROT_ALL)); 455 data_size + bss_size, data_size, 466 vmspace->vm_dsize = round_page(data_size + bss_size) >> PAGE_SHIFT;
|
| /freebsd-12-stable/contrib/elftoolchain/size/ |
| D | size.c | 65 static uint64_t bss_size, data_size, text_size, total_size; variable 717 text_size = data_size = bss_size = 0; in berkeley_header() 749 bss_size += shdr->sh_size; in berkeley_calc() 775 total_size = text_size + data_size + bss_size; in berkeley_footer() 778 bss_size_total += bss_size; in berkeley_footer() 785 tbl_print_num(bss_size, radix, 2); in berkeley_footer()
|
| /freebsd-12-stable/sys/compat/linux/ |
| D | linux_misc.c | 247 unsigned long bss_size; in linux_uselib() local 345 bss_size = round_page(a_out->a_bss); in linux_uselib() 366 a_out->a_data + bss_size > lim_cur_proc(td->td_proc, RLIMIT_DATA) || in linux_uselib() 368 bss_size) != 0) { in linux_uselib() 444 if (bss_size != 0) { in linux_uselib() 451 &vmaddr, bss_size, 0, VMFS_NO_SPACE, VM_PROT_ALL, in linux_uselib()
|
| /freebsd-12-stable/contrib/binutils/bfd/ |
| D | ecoff.c | 2340 bfd_size_type bss_size; in _bfd_ecoff_write_object_contents() local 2369 bss_size = 0; in _bfd_ecoff_write_object_contents() 2487 bss_size += current->size; in _bfd_ecoff_write_object_contents() 2565 if (bss_size < internal_a.dsize - data_size) in _bfd_ecoff_write_object_contents() 2566 bss_size = 0; in _bfd_ecoff_write_object_contents() 2568 bss_size -= internal_a.dsize - data_size; in _bfd_ecoff_write_object_contents() 2569 internal_a.bsize = bss_size; in _bfd_ecoff_write_object_contents()
|
| D | ChangeLog-9495 | 7885 or bss_size either. 8829 and bss_size bfd_size_type instead of unsigned long. Make
|