Lines Matching refs:mtp
1336 struct memory_type *mtp; in domemstat_malloc() local
1367 for (mtp = memstat_mtl_first(mtlp); mtp != NULL; in domemstat_malloc()
1368 mtp = memstat_mtl_next(mtp)) { in domemstat_malloc()
1369 if (memstat_get_numallocs(mtp) == 0 && in domemstat_malloc()
1370 memstat_get_count(mtp) == 0) in domemstat_malloc()
1377 memstat_get_name(mtp), (uintmax_t)memstat_get_count(mtp), in domemstat_malloc()
1378 (uintmax_t)memstat_get_bytes(mtp), in domemstat_malloc()
1379 (uintmax_t)memstat_get_numallocs(mtp)); in domemstat_malloc()
1383 if (memstat_malloc_zone_used(mtp, i)) { in domemstat_malloc()
1403 struct memory_type *mtp; in domemstat_zone() local
1433 for (mtp = memstat_mtl_first(mtlp); mtp != NULL; in domemstat_zone()
1434 mtp = memstat_mtl_next(mtp)) { in domemstat_zone()
1435 len = strlen(memstat_get_name(mtp)); in domemstat_zone()
1441 memstat_get_name(mtp), MAX(1, 26 - len), in domemstat_zone()
1442 (uintmax_t)memstat_get_size(mtp), in domemstat_zone()
1443 (uintmax_t)memstat_get_size(mtp), in domemstat_zone()
1444 (uintmax_t)memstat_get_countlimit(mtp), in domemstat_zone()
1445 (uintmax_t)memstat_get_count(mtp), in domemstat_zone()
1446 (uintmax_t)memstat_get_free(mtp), in domemstat_zone()
1447 (uintmax_t)memstat_get_numallocs(mtp), in domemstat_zone()
1448 (uintmax_t)memstat_get_failures(mtp), in domemstat_zone()
1449 (uintmax_t)memstat_get_sleeps(mtp), in domemstat_zone()
1450 (uintmax_t)memstat_get_xdomain(mtp)); in domemstat_zone()