Searched refs:text_size (Results 1 - 4 of 4) sorted by relevance

/freebsd-current/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;
522 text_size += phdr->p_memsz - phdr->p_filesz;
740 text_size = data_size = bss_size = 0;
766 text_size += shdr->sh_size;
798 total_size = text_size + data_size + bss_size;
800 text_size_total += text_size;
806 tbl_print_num(text_size, radix, 0);
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/Process/minidump/
H A DProcessMinidump.cpp87 const size_t text_size = sect_sp->GetFileSize(); local
89 llvm::alignTo(text_size, kMDGUIDSize), kBreakpadPageSize);
99 facebook_uuid[i] ^= text_size % 255;
/freebsd-current/sys/kern/
H A Dimgact_elf.c931 u_long text_size, data_size, total_size, text_addr, data_addr; local
936 text_size = data_size = total_size = text_addr = data_addr = 0;
956 if ((phdr[i].p_flags & PF_X) != 0 && text_size < seg_size) {
957 text_size = seg_size;
968 data_size = text_size;
979 else if (text_size > maxtsiz)
994 vmspace->vm_tsize = text_size >> PAGE_SHIFT;
/freebsd-current/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, function
837 if (text_size(conf, rows, cols, text, bs, hnotext, minw,

Completed in 177 milliseconds