Lines Matching refs:pgoff
818 pgoff_t pgoff = buffer_space_offset & ~PAGE_MASK; in binder_alloc_get_page() local
821 *pgoffp = pgoff; in binder_alloc_get_page()
842 pgoff_t pgoff; in binder_alloc_clear_buf() local
845 buffer_offset, &pgoff); in binder_alloc_clear_buf()
846 size = min_t(size_t, bytes, PAGE_SIZE - pgoff); in binder_alloc_clear_buf()
847 memset_page(page, pgoff, 0, size); in binder_alloc_clear_buf()
1343 pgoff_t pgoff; in binder_alloc_copy_user_to_buffer() local
1347 buffer_offset, &pgoff); in binder_alloc_copy_user_to_buffer()
1348 size = min_t(size_t, bytes, PAGE_SIZE - pgoff); in binder_alloc_copy_user_to_buffer()
1349 kptr = kmap_local_page(page) + pgoff; in binder_alloc_copy_user_to_buffer()
1375 pgoff_t pgoff; in binder_alloc_do_buffer_copy() local
1378 buffer_offset, &pgoff); in binder_alloc_do_buffer_copy()
1379 size = min_t(size_t, bytes, PAGE_SIZE - pgoff); in binder_alloc_do_buffer_copy()
1381 memcpy_to_page(page, pgoff, ptr, size); in binder_alloc_do_buffer_copy()
1383 memcpy_from_page(ptr, page, pgoff, size); in binder_alloc_do_buffer_copy()
1385 pgoff = 0; in binder_alloc_do_buffer_copy()