Lines Matching refs:mtp
1342 struct memory_type *mtp; in domemstat_malloc() local
1373 for (mtp = memstat_mtl_first(mtlp); mtp != NULL; in domemstat_malloc()
1374 mtp = memstat_mtl_next(mtp)) { in domemstat_malloc()
1375 if (memstat_get_numallocs(mtp) == 0 && in domemstat_malloc()
1376 memstat_get_count(mtp) == 0) in domemstat_malloc()
1383 memstat_get_name(mtp), (uintmax_t)memstat_get_count(mtp), in domemstat_malloc()
1384 (uintmax_t)memstat_get_bytes(mtp), in domemstat_malloc()
1385 (uintmax_t)memstat_get_numallocs(mtp)); in domemstat_malloc()
1389 if (memstat_malloc_zone_used(mtp, i)) { in domemstat_malloc()
1409 struct memory_type *mtp; in domemstat_zone() local
1439 for (mtp = memstat_mtl_first(mtlp); mtp != NULL; in domemstat_zone()
1440 mtp = memstat_mtl_next(mtp)) { in domemstat_zone()
1441 len = strlen(memstat_get_name(mtp)); in domemstat_zone()
1447 memstat_get_name(mtp), MAX(1, 26 - len), in domemstat_zone()
1448 (uintmax_t)memstat_get_size(mtp), in domemstat_zone()
1449 (uintmax_t)memstat_get_size(mtp), in domemstat_zone()
1450 (uintmax_t)memstat_get_countlimit(mtp), in domemstat_zone()
1451 (uintmax_t)memstat_get_count(mtp), in domemstat_zone()
1452 (uintmax_t)memstat_get_free(mtp), in domemstat_zone()
1453 (uintmax_t)memstat_get_numallocs(mtp), in domemstat_zone()
1454 (uintmax_t)memstat_get_failures(mtp), in domemstat_zone()
1455 (uintmax_t)memstat_get_sleeps(mtp), in domemstat_zone()
1456 (uintmax_t)memstat_get_xdomain(mtp)); in domemstat_zone()