Home
last modified time | relevance | path

Searched refs:text_size (Results 1 – 5 of 5) sorted by relevance

/freebsd/contrib/elftoolchain/size/
H A Dsize.c68 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 DProcessMinidump.cpp87 const size_t text_size = sect_sp->GetFileSize(); in HashElfTextSection() local
89 llvm::alignTo(text_size, kMDGUIDSize), kBreakpadPageSize); in HashElfTextSection()
99 facebook_uuid[i] ^= text_size % 255; in HashElfTextSection()
/freebsd/sys/kern/
H A Dimgact_elf.c931 u_long text_size, data_size, total_size, text_addr, data_addr; in __elfN() local
936 text_size = data_size = total_size = text_addr = data_addr = 0; in __elfN()
956 if ((phdr[i].p_flags & PF_X) != 0 && text_size < seg_size) { in __elfN()
957 text_size = seg_size; in __elfN()
968 data_size = text_size; in __elfN()
979 else if (text_size > maxtsiz) in __elfN()
994 vmspace->vm_tsize = text_size >> PAGE_SHIFT; in __elfN()
/freebsd/contrib/bsddialog/lib/
H A Dlib_util.c70 * [static] text_size();
678 text_size(struct bsddialog_conf *conf, int rows, int cols, const char *text, in text_size() function
837 if (text_size(conf, rows, cols, text, bs, hnotext, minw, in set_widget_autosize()
/freebsd/contrib/bsddialog/
H A DCHANGELOG339 * fix: menurows autosize with fixed rows improving text_size().