Lines Matching +full:100 +full:ps
64 void show(unsigned long ps) in show() argument
66 char buf[100]; in show()
68 if (ps == getpagesize()) in show()
71 ksft_print_msg("%luMB: ", ps >> 20); in show()
76 ps >> 10); in show()
84 char buf[100]; in read_sysfs()
107 unsigned long read_free(unsigned long ps) in read_free() argument
109 return read_sysfs(ps != getpagesize(), in read_free()
111 ps >> 10); in read_free()
225 unsigned long ps = page_sizes[i]; in main() local
226 int arg = ilog2(ps) << MAP_HUGE_SHIFT; in main()
228 ksft_print_msg("Testing %luMB mmap with shift %x\n", ps >> 20, arg); in main()
229 test_mmap(ps, MAP_HUGETLB | arg); in main()
239 unsigned long ps = page_sizes[i]; in main() local
240 int arg = ilog2(ps) << SHM_HUGE_SHIFT; in main()
241 ksft_print_msg("Testing %luMB shmget with shift %x\n", ps >> 20, arg); in main()
242 test_shmget(ps, SHM_HUGETLB | arg); in main()