Lines Matching full:pa
36 uintptr_t pa[N_PAGES]; local
44 pa[i] = POINTER_TO_UINT(&page_buf[i]);
48 ret = sys_mm_drv_map_region(va, pa[0], N_PAGES * PAGE_SZ, 0U);
66 * pa[i] is a cached address which means that the cached
71 sys_cache_data_invd_range(UINT_TO_POINTER(pa[i]), PAGE_SZ);
76 zassert_equal(vps[i].mem[0], *(uint32_t *)pa[i],
78 vps[i].mem[0], *(uint32_t *)pa[i]);
95 zassert_equal(vps2[i].mem[0], *(uint32_t *)pa[i],
121 zassert_equal(vps3[i].mem[0], *(uint32_t *)pa[i],
123 vps3[i].mem[0], *(uint32_t *)pa[i]);
138 zassert_equal(*(int *)pa[i], markers[i],
154 zassert_equal(*(int *)pa[i], markers[i],
162 uintptr_t pa[N_PAGES]; in ZTEST() local
170 pa[i] = POINTER_TO_UINT(&page_buf[i * 2]); in ZTEST()
174 ret = sys_mm_drv_map_array(va, pa, N_PAGES, 0U); in ZTEST()
192 * pa[i] is a cached address which means that the cached in ZTEST()
197 sys_cache_data_invd_range(UINT_TO_POINTER(pa[i]), PAGE_SZ); in ZTEST()
202 zassert_equal(vps[i].mem[0], *(uint32_t *)pa[i], in ZTEST()
204 vps[i].mem[0], *(uint32_t *)pa[i]); in ZTEST()
221 zassert_equal(vps2[i].mem[0], *(uint32_t *)pa[i], in ZTEST()
247 zassert_equal(vps3[i].mem[0], *(uint32_t *)pa[i], in ZTEST()
249 vps3[i].mem[0], *(uint32_t *)pa[i]); in ZTEST()
264 zassert_equal(*(int *)pa[i], markers[i], in ZTEST()
280 zassert_equal(*(int *)pa[i], markers[i], in ZTEST()