Lines Matching refs:ps
92 void show(unsigned long ps) in show() argument
95 if (ps == getpagesize()) in show()
97 printf("%luMB: ", ps >> 20); in show()
101 ps >> 10); in show()
132 unsigned long read_free(unsigned long ps) in read_free() argument
134 return read_sysfs(ps != getpagesize(), in read_free()
136 ps >> 10); in read_free()
233 unsigned long ps = page_sizes[i]; in main() local
234 int arg = ilog2(ps) << MAP_HUGE_SHIFT; in main()
235 printf("Testing %luMB mmap with shift %x\n", ps >> 20, arg); in main()
236 test_mmap(ps, MAP_HUGETLB | arg); in main()
245 unsigned long ps = page_sizes[i]; in main() local
246 int arg = ilog2(ps) << SHM_HUGE_SHIFT; in main()
247 printf("Testing %luMB shmget with shift %x\n", ps >> 20, arg); in main()
248 test_shmget(ps, SHM_HUGETLB | arg); in main()