/src/sys/arch/arc/arc/ |
arcbios.c | 131 paddr_t seg_start, seg_end; local in function:bios_configure_memory 136 seg_end = seg_start + descr->PageCount * 4096; 140 descr->Type, (u_long)seg_start, (u_long)seg_end, 141 (u_long)(seg_end - seg_start)); 164 mem_clusters[i].start == seg_end) 165 seg_end += mem_clusters[i].size; 186 mem_clusters[i].size = seg_end - seg_start;
|
arcbios.c | 131 paddr_t seg_start, seg_end; local in function:bios_configure_memory 136 seg_end = seg_start + descr->PageCount * 4096; 140 descr->Type, (u_long)seg_start, (u_long)seg_end, 141 (u_long)(seg_end - seg_start)); 164 mem_clusters[i].start == seg_end) 165 seg_end += mem_clusters[i].size; 186 mem_clusters[i].size = seg_end - seg_start;
|
/src/sys/arch/virt68k/virt68k/ |
bootinfo.c | 191 paddr_t seg_end = seg_start + local in function:bootinfo_reserve_initrd 194 if (initrd_start >= seg_end || 200 if (initrd_start > seg_start && initrd_end < seg_end) { 217 if (initrd_end == seg_end) { 218 seg_end = initrd_start; 223 bootinfo_mem_segments_avail[i].mem_size = seg_end - seg_start;
|
bootinfo.c | 191 paddr_t seg_end = seg_start + local in function:bootinfo_reserve_initrd 194 if (initrd_start >= seg_end || 200 if (initrd_start > seg_start && initrd_end < seg_end) { 217 if (initrd_end == seg_end) { 218 seg_end = initrd_start; 223 bootinfo_mem_segments_avail[i].mem_size = seg_end - seg_start;
|
/src/sys/fs/nilfs/ |
nilfs_subr.c | 77 uint64_t *seg_start, uint64_t *seg_end) 83 *seg_end = *seg_start + blks_per_seg -1; 571 uint64_t seg_start, seg_end, cno; local in function:nilfs_search_super_root 642 nilfs_get_segment_range(nilfsdev, ri->segnum, &seg_start, &seg_end); 643 if (ri->pseg >= seg_end)
|
nilfs_subr.c | 77 uint64_t *seg_start, uint64_t *seg_end) 83 *seg_end = *seg_start + blks_per_seg -1; 571 uint64_t seg_start, seg_end, cno; local in function:nilfs_search_super_root 642 nilfs_get_segment_range(nilfsdev, ri->segnum, &seg_start, &seg_end); 643 if (ri->pseg >= seg_end)
|
/src/sys/arch/x86/x86/ |
x86_machdep.c | 571 x86_add_cluster(uint64_t seg_start, uint64_t seg_end, uint32_t type) 579 if (seg_end > MAXPHYSMEM) { 582 seg_start, (seg_end - seg_start), type); 589 if (seg_end == MAXPHYSMEM) 590 seg_end -= PAGE_SIZE; 592 if (seg_end <= seg_start) 598 (cluster->size == trunc_page(seg_end) - cluster->start)) { 618 if (seg_end > endext) 621 io_end = seg_end; 629 seg_start, seg_end - seg_start, type) 688 uint64_t seg_start, seg_end; local in function:x86_parse_clusters 971 uint64_t seg_start, seg_end; local in function:init_x86_vm [all...] |
x86_machdep.c | 571 x86_add_cluster(uint64_t seg_start, uint64_t seg_end, uint32_t type) 579 if (seg_end > MAXPHYSMEM) { 582 seg_start, (seg_end - seg_start), type); 589 if (seg_end == MAXPHYSMEM) 590 seg_end -= PAGE_SIZE; 592 if (seg_end <= seg_start) 598 (cluster->size == trunc_page(seg_end) - cluster->start)) { 618 if (seg_end > endext) 621 io_end = seg_end; 629 seg_start, seg_end - seg_start, type) 688 uint64_t seg_start, seg_end; local in function:x86_parse_clusters 971 uint64_t seg_start, seg_end; local in function:init_x86_vm [all...] |
/src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/ |
sanitizer_linux.cc | 1197 uptr seg_end = seg_start + phdr->p_memsz; local in function:__sanitizer::ForEachMappedRegion 1201 seg_end = RoundUpTo(seg_end, GetPageSizeCached()); 1202 cb((void *)seg_start, seg_end - seg_start);
|
sanitizer_linux.cc | 1197 uptr seg_end = seg_start + phdr->p_memsz; local in function:__sanitizer::ForEachMappedRegion 1201 seg_end = RoundUpTo(seg_end, GetPageSizeCached()); 1202 cb((void *)seg_start, seg_end - seg_start);
|