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

/xnu-2782.1.97/osfmk/kern/
H A Dstack.c87 zinfo_usage_t zinfo; local
92 (task = thread->task) != NULL && (zinfo = task->tkm_zinfo) != NULL)
94 (int64_t *)&zinfo[stack_fake_zone_index].alloc);
101 zinfo_usage_t zinfo; local
106 (task = thread->task) != NULL && (zinfo = task->tkm_zinfo) != NULL)
108 (int64_t *)&zinfo[stack_fake_zone_index].free);
119 zinfo_usage_t zinfo; local
121 if ((task = from->task) != NULL && (zinfo = task->tkm_zinfo) != NULL)
123 (int64_t *)&zinfo[stack_fake_zone_index].free);
125 if ((task = to->task) != NULL && (zinfo
[all...]
H A Dkalloc.c115 zinfo_usage_t zinfo; local
120 (task = thr->task) != NULL && (zinfo = task->tkm_zinfo) != NULL)
121 zinfo[kalloc_fake_zone_index].alloc += bytes;
129 zinfo_usage_t zinfo; local
134 (task = thr->task) != NULL && (zinfo = task->tkm_zinfo) != NULL)
135 zinfo[kalloc_fake_zone_index].free += bytes;
H A Dzalloc.c2144 zisize, "per task zinfo");
2615 zinfo_usage_t zinfo; local
2623 if ((task = thr->task) != NULL && (zinfo = task->tkm_zinfo) != NULL)
2624 OSAddAtomic64(sz, (int64_t *)&zinfo[zone->index].alloc);
3036 zinfo_usage_t zinfo; local
3044 if ((task = thr->task) != NULL && (zinfo = task->tkm_zinfo) != NULL)
3045 OSAddAtomic64(sz, (int64_t *)&zinfo[zone->index].free);
/xnu-2782.1.97/osfmk/i386/
H A Dpmap_internal.h876 zinfo_usage_t zinfo; local
881 (task = thr->task) != NULL && (zinfo = task->tkm_zinfo) != NULL)
882 OSAddAtomic64(bytes, (int64_t *)&zinfo[pt_fake_zone_index].alloc);
890 zinfo_usage_t zinfo; local
895 (task = thr->task) != NULL && (zinfo = task->tkm_zinfo) != NULL)
896 OSAddAtomic64(bytes, (int64_t *)&zinfo[pt_fake_zone_index].free);

Completed in 33 milliseconds