Searched refs:text_size (Results 1 – 5 of 5) sorted by relevance
| /freebsd/contrib/elftoolchain/size/ |
| H A D | size.c | 68 static uint64_t bss_size, data_size, text_size, total_size; variable 520 text_size += phdr->p_filesz; in handle_phdr() 522 text_size += phdr->p_memsz - phdr->p_filesz; in handle_phdr() 740 text_size = data_size = bss_size = 0; in berkeley_header() 766 text_size += shdr->sh_size; in berkeley_calc() 798 total_size = text_size + data_size + bss_size; in berkeley_footer() 800 text_size_total += text_size; in berkeley_footer() 806 tbl_print_num(text_size, radix, 0); in berkeley_footer()
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/Process/minidump/ |
| H A D | ProcessMinidump.cpp | 90 const size_t text_size = sect_sp->GetFileSize(); in HashElfTextSection() local 92 llvm::alignTo(text_size, kMDGUIDSize), kBreakpadPageSize); in HashElfTextSection() 102 facebook_uuid[i] ^= text_size % 255; in HashElfTextSection()
|
| /freebsd/sys/kern/ |
| H A D | imgact_elf.c | 936 u_long text_size, data_size, total_size, text_addr, data_addr; in __elfN() local 941 text_size = data_size = total_size = text_addr = data_addr = 0; in __elfN() 961 if ((phdr[i].p_flags & PF_X) != 0 && text_size < seg_size) { in __elfN() 962 text_size = seg_size; in __elfN() 973 data_size = text_size; in __elfN() 984 else if (text_size > maxtsiz) in __elfN() 999 vmspace->vm_tsize = text_size >> PAGE_SHIFT; in __elfN()
|
| /freebsd/contrib/bsddialog/lib/ |
| H A D | lib_util.c | 679 text_size(struct bsddialog_conf *conf, int rows, int cols, const char *text, in text_size() function 838 if (text_size(conf, rows, cols, text, bs, hnotext, minw, in set_widget_autosize()
|
| /freebsd/contrib/bsddialog/ |
| H A D | CHANGELOG | 395 * fix: menurows autosize with fixed rows improving text_size().
|