Lines Matching refs:points
130 * handles as well as an array of u64 points and does a host-side wait on all
131 * of syncobj fences at the given points simultaneously.
178 * Import/export of timeline points in timeline syncobjs
1034 uint64_t *points;
1041 points = kmalloc_array(count, sizeof(*points), GFP_KERNEL);
1042 if (points == NULL)
1046 memset(points, 0, count * sizeof(uint64_t));
1048 } else if (copy_from_user(points, user_points,
1069 entries[i].point = points[i];
1071 if (!fence || dma_fence_chain_find_seqno(&fence, points[i])) {
1169 kfree(points);
1229 u64_to_user_ptr(timeline_wait->points),
1534 uint64_t *points;
1554 points = kmalloc_array(args->count_handles, sizeof(*points),
1556 if (!points) {
1560 if (!u64_to_user_ptr(args->points)) {
1561 memset(points, 0, args->count_handles * sizeof(uint64_t));
1562 } else if (copy_from_user(points, u64_to_user_ptr(args->points),
1587 fence, points[i]);
1593 kfree(points);
1605 uint64_t __user *points = u64_to_user_ptr(args->points);
1644 * unorder points. */
1659 ret = copy_to_user(&points[i], &point, sizeof(uint64_t));