Lines Matching +full:100 +full:ps
78 void show(unsigned long ps) in show() argument
80 char buf[100]; in show()
81 if (ps == getpagesize()) in show()
83 printf("%luMB: ", ps >> 20); in show()
87 ps >> 10); in show()
95 char buf[100]; in read_sysfs()
118 unsigned long read_free(unsigned long ps) in read_free() argument
120 return read_sysfs(ps != getpagesize(), in read_free()
122 ps >> 10); in read_free()
219 unsigned long ps = page_sizes[i]; in main() local
220 int arg = ilog2(ps) << MAP_HUGE_SHIFT; in main()
221 printf("Testing %luMB mmap with shift %x\n", ps >> 20, arg); in main()
222 test_mmap(ps, MAP_HUGETLB | arg); in main()
231 unsigned long ps = page_sizes[i]; in main() local
232 int arg = ilog2(ps) << SHM_HUGE_SHIFT; in main()
233 printf("Testing %luMB shmget with shift %x\n", ps >> 20, arg); in main()
234 test_shmget(ps, SHM_HUGETLB | arg); in main()