Home
last modified time | relevance | path

Searched refs:map_count (Results 1 – 6 of 6) sorted by relevance

/xnu-11215/libsyscall/mach/
H A Dmach_error_string.c128 sub = err_sparse_mapit(sub, sys_p->map_table, sys_p->map_count); in mach_error_type()
158 sub = err_sparse_mapit(sub, sys_p->map_table, sys_p->map_count); in mach_error_string_int()
167 code = err_sparse_mapit(code, sub_p->map_table, sub_p->map_count); in mach_error_string_int()
H A Derrorlib.h98 int map_count; member
107 int map_count; member
H A Derror_codes.c154 .map_count = errlib_count(err_iokit_sub_map)
/xnu-11215/osfmk/arm64/sptm/pmap/
H A Dpmap.c11832 unsigned int map_count = 0; local
11918 for (map_count = 0; map_count < page_ratio; map_count++) {
11919 pmap_enter_addr(pmap, va_base + (pmap_page_size * map_count), pa + (pmap_page_size * (map_count)),
11924 for (map_count = 0; map_count < page_ratio; map_count++) {
11925 ptep = pmap_pte(pmap, va_base + (pmap_page_size * map_count));
11927 if (pte_to_pa(*ptep) != (pa + (pmap_page_size * map_count))) {
11929 (void*)pte_to_pa(*ptep), (void*)(pa + (pmap_page_size * map_count)), map_count);
11932 if (ptep_get_va(ptep) != (va_base + (pmap_page_size * map_count))) {
11934 (void*)ptep_get_va(ptep), (void*)(va_base + (pmap_page_size * map_count)), map_count);
11955 for (map_count = 1; map_count < page_ratio; map_count++) {
[all …]
/xnu-11215/bsd/kern/
H A Dkdebug.c252 vm_size_t *map_size, vm_size_t *map_count);
1920 uint32_t map_count = 0; in _write_legacy_header() local
1927 map_count = (uint32_t)kd_mapcount; in _write_legacy_header()
1928 if (os_mul_overflow(map_count, sizeof(kd_threadmap), &map_size)) { in _write_legacy_header()
1980 header.thread_count = map_count + extra_thread_count; in _write_legacy_header()
/xnu-11215/osfmk/arm/pmap/
H A Dpmap.c14745 unsigned int map_count = 0; local
14839 for (map_count = 0; map_count < page_ratio; map_count++) {
14840 …pmap_enter_addr(pmap, va_base + (pmap_page_size * map_count), pa + (pmap_page_size * (map_count)),…
14844 for (map_count = 0; map_count < page_ratio; map_count++) {
14847 if (pte_to_pa(*ptep) != (pa + (pmap_page_size * map_count))) {
14849 (void*)pte_to_pa(*ptep), (void*)(pa + (pmap_page_size * map_count)), map_count);
14852 if (ptep_get_va(ptep) != (va_base + (pmap_page_size * map_count))) {
14854 (void*)ptep_get_va(ptep), (void*)(va_base + (pmap_page_size * map_count)), map_count);
14887 for (map_count = 1; map_count < page_ratio; map_count++) {
14888 pmap_test_write(pmap, va_base + (pmap_page_size * map_count), true);
[all …]