Lines Matching refs:ps
95 void show(unsigned long ps) in show() argument
98 if (ps == getpagesize()) in show()
100 printf("%luMB: ", ps >> 20); in show()
104 ps >> 10); in show()
135 unsigned long read_free(unsigned long ps) in read_free() argument
137 return read_sysfs(ps != getpagesize(), in read_free()
139 ps >> 10); in read_free()
236 unsigned long ps = page_sizes[i]; in main() local
237 int arg = ilog2(ps) << MAP_HUGE_SHIFT; in main()
238 printf("Testing %luMB mmap with shift %x\n", ps >> 20, arg); in main()
239 test_mmap(ps, MAP_HUGETLB | arg); in main()
248 unsigned long ps = page_sizes[i]; in main() local
249 int arg = ilog2(ps) << SHM_HUGE_SHIFT; in main()
250 printf("Testing %luMB shmget with shift %x\n", ps >> 20, arg); in main()
251 test_shmget(ps, SHM_HUGETLB | arg); in main()