Home
last modified time | relevance | path

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

/components/lwp/
A Dlwp_user_mm.c905 char *dst_iter, *dst_iter_aligned, *dst_next_page; in lwp_data_put() local
939 dst_iter_aligned = (void *)((long)dst_iter & ~ARCH_PAGE_MASK); in lwp_data_put()
940 if (rt_aspace_page_get(lwp->aspace, dst_iter_aligned, temp_page)) in lwp_data_put()
942 memcpy(temp_page + (dst_iter - dst_iter_aligned), src_iter, bytes_to_put); in lwp_data_put()
943 if (rt_aspace_page_put(lwp->aspace, dst_iter_aligned, temp_page)) in lwp_data_put()
964 char *dst_iter, *dst_iter_aligned, *dst_next_page; in lwp_data_set() local
987 dst_iter_aligned = (void *)((long)dst_iter & ~ARCH_PAGE_MASK); in lwp_data_set()
989 if (rt_aspace_page_get(lwp->aspace, dst_iter_aligned, temp_page)) in lwp_data_set()
992 memset(temp_page + (dst_iter - dst_iter_aligned), byte, bytes_to_put); in lwp_data_set()
993 if (rt_aspace_page_put(lwp->aspace, dst_iter_aligned, temp_page)) in lwp_data_set()

Completed in 29 milliseconds