Home
last modified time | relevance | path

Searched refs:seg_end (Results 1 – 4 of 4) sorted by relevance

/netbsd/src/sys/arch/x86/x86/
Dx86_machdep.c562 x86_add_cluster(uint64_t seg_start, uint64_t seg_end, uint32_t type) in x86_add_cluster() argument
570 if (seg_end > MAXPHYSMEM) { in x86_add_cluster()
573 seg_start, (seg_end - seg_start), type); in x86_add_cluster()
580 if (seg_end == MAXPHYSMEM) in x86_add_cluster()
581 seg_end -= PAGE_SIZE; in x86_add_cluster()
583 if (seg_end <= seg_start) in x86_add_cluster()
589 (cluster->size == trunc_page(seg_end) - cluster->start)) { in x86_add_cluster()
609 if (seg_end > endext) in x86_add_cluster()
612 io_end = seg_end; in x86_add_cluster()
620 seg_start, seg_end - seg_start, type); in x86_add_cluster()
[all …]
/netbsd/src/sys/arch/arc/arc/
Darcbios.c131 paddr_t seg_start, seg_end; in bios_configure_memory() local
136 seg_end = seg_start + descr->PageCount * 4096; in bios_configure_memory()
140 descr->Type, (u_long)seg_start, (u_long)seg_end, in bios_configure_memory()
141 (u_long)(seg_end - seg_start)); in bios_configure_memory()
164 mem_clusters[i].start == seg_end) in bios_configure_memory()
165 seg_end += mem_clusters[i].size; in bios_configure_memory()
186 mem_clusters[i].size = seg_end - seg_start; in bios_configure_memory()
/netbsd/src/sys/fs/nilfs/
Dnilfs_subr.c77 uint64_t *seg_start, uint64_t *seg_end) in nilfs_get_segment_range() argument
83 *seg_end = *seg_start + blks_per_seg -1; in nilfs_get_segment_range()
571 uint64_t seg_start, seg_end, cno; in nilfs_search_super_root() local
642 nilfs_get_segment_range(nilfsdev, ri->segnum, &seg_start, &seg_end); in nilfs_search_super_root()
643 if (ri->pseg >= seg_end) in nilfs_search_super_root()
Dnilfs_subr.h38 uint64_t *seg_start, uint64_t *seg_end);