Home
last modified time | relevance | path

Searched refs:alloc_size (Results 1 – 2 of 2) sorted by relevance

/tools/testing/selftests/vm/
Dmlock-random-test.c138 int test_mlock_within_limit(char *p, int alloc_size) in test_mlock_within_limit() argument
147 if (cur.rlim_cur < alloc_size) { in test_mlock_within_limit()
149 alloc_size, (unsigned int)cur.rlim_cur); in test_mlock_within_limit()
162 int lock_size = rand() % alloc_size; in test_mlock_within_limit()
163 int start_offset = rand() % (alloc_size - lock_size); in test_mlock_within_limit()
174 p, alloc_size, in test_mlock_within_limit()
190 if (locked_vm_size > PAGE_ALIGN(alloc_size, page_size) + page_size) { in test_mlock_within_limit()
192 locked_vm_size, alloc_size); in test_mlock_within_limit()
215 int test_mlock_outof_limit(char *p, int alloc_size) in test_mlock_outof_limit() argument
223 if (cur.rlim_cur >= alloc_size) { in test_mlock_outof_limit()
[all …]
/tools/lib/api/fs/
Dfs.c347 size_t size = 0, alloc_size = 0; in filename__read_str() local
357 if (size == alloc_size) { in filename__read_str()
358 alloc_size += BUFSIZ; in filename__read_str()
359 nbf = realloc(bf, alloc_size); in filename__read_str()
368 n = read(fd, bf + size, alloc_size - size); in filename__read_str()