Lines Matching refs:sz
1332 int sz; in notesize() local
1334 sz = sizeof(struct elf_note); in notesize()
1335 sz += roundup(strlen(en->name) + 1, 4); in notesize()
1336 sz += roundup(en->datasz, 4); in notesize()
1338 return sz; in notesize()
1376 static void fill_elf_note_phdr(struct elf_phdr *phdr, int sz, loff_t offset) in fill_elf_note_phdr() argument
1382 phdr->p_filesz = sz; in fill_elf_note_phdr()
1390 unsigned int sz, void *data) in fill_note() argument
1394 note->datasz = sz; in fill_note()
1872 int sz = 0; in elf_dump_thread_status() local
1882 sz += notesize(&t->notes[0]); in elf_dump_thread_status()
1889 sz += notesize(&t->notes[1]); in elf_dump_thread_status()
1897 sz += notesize(&t->notes[2]); in elf_dump_thread_status()
1900 return sz; in elf_dump_thread_status()
1966 int sz; in fill_note_info() local
1969 sz = elf_dump_thread_status(siginfo->si_signo, ets); in fill_note_info()
1970 info->thread_status_size += sz; in fill_note_info()
2018 int sz = 0; in get_note_info_size() local
2022 sz += notesize(info->notes + i); in get_note_info_size()
2024 sz += info->thread_status_size; in get_note_info_size()
2026 return sz; in get_note_info_size()
2192 size_t sz = get_note_info_size(&info); in elf_core_dump() local
2194 sz += elf_coredump_extra_notes_size(); in elf_core_dump()
2200 fill_elf_note_phdr(phdr4note, sz, offset); in elf_core_dump()
2201 offset += sz; in elf_core_dump()