Searched refs:next_va (Results 1 – 4 of 4) sorted by relevance
| /examples/utest/testcases/mm/ |
| A D | lwp_mmap_expand.c | 45 char *next_va; in test_mmap_expand() local 48 next_va = ex_vaddr; in test_mmap_expand() 51 next_va = lwp_mmap2(lwp, next_va, map_size, prot1, flags, fd, pgoffset); in test_mmap_expand() 52 uassert_true(next_va == ex_vaddr); in test_mmap_expand() 59 next_va = ex_vaddr + map_size; in test_mmap_expand() 61 lwp_mmap2(lwp, next_va, map_size, prot1, flags, fd, pgoffset) in test_mmap_expand() 62 == next_va in test_mmap_expand() 69 next_va = ex_vaddr - map_size; in test_mmap_expand() 71 lwp_mmap2(lwp, next_va, map_size, prot1, flags, fd, pgoffset) in test_mmap_expand() 72 == next_va in test_mmap_expand() [all …]
|
| A D | aspace_map_expand.c | 45 char *next_va; in test_map_varea_expand() local 49 next_va = ex_vaddr; in test_map_varea_expand() 56 uassert_true(next_va == ex_vaddr); in test_map_varea_expand() 63 next_va = ex_vaddr + map_size; in test_map_varea_expand() 67 rt_aspace_map(lwp->aspace, (void *)&next_va, map_size, attr, flags, mem_obj, next_offset) in test_map_varea_expand() 69 uassert_true(next_va == (char *)ex_vaddr + map_size); in test_map_varea_expand() 75 next_va = ex_vaddr - map_size; in test_map_varea_expand() 79 rt_aspace_map(lwp->aspace, (void *)&next_va, map_size, attr, flags, mem_obj, next_offset) in test_map_varea_expand() 81 uassert_true(next_va == ex_vaddr - map_size); in test_map_varea_expand() 87 utest_int_equal(RT_EOK, rt_aspace_unmap_range(lwp->aspace, next_va, 3 * map_size)); in test_map_varea_expand()
|
| A D | test_bst_adpt.h | 28 void *next_va = target_va + map_size + 1; in test_bst_adpt() local 51 !rt_aspace_map(aspace, &next_va, map_size, MMU_MAP_K_RWCB, flags, mem_obj, 0)); in test_bst_adpt() 91 range.start = next_va; in test_bst_adpt() 92 range.end = next_va + map_size + 1; in test_bst_adpt() 95 uassert_true(find->start == next_va); in test_bst_adpt() 97 range.start = next_va + map_size; in test_bst_adpt()
|
| A D | lwp_mmap_fix_private.c | 56 char *next_va; in test_mmap_fix_private() local 62 next_va = ex_vaddr; in test_mmap_fix_private() 65 next_va = lwp_mmap2(lwp, next_va, ex_size, prot, flags, fd, pgoffset); in test_mmap_fix_private() 66 uassert_true(next_va == ex_vaddr); in test_mmap_fix_private()
|
Completed in 5 milliseconds