Lines Matching defs: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
1096 uint64_t *points;
1103 points = kmalloc_array(count, sizeof(*points), GFP_KERNEL);
1104 if (points == NULL)
1108 memset(points, 0, count * sizeof(uint64_t));
1110 } else if (copy_from_user(points, user_points,
1135 entries[i].point = points[i];
1137 if (!fence || dma_fence_chain_find_seqno(&fence, points[i])) {
1235 kfree(points);
1295 u64_to_user_ptr(timeline_wait->points),
1612 uint64_t *points;
1632 points = kmalloc_array(args->count_handles, sizeof(*points),
1634 if (!points) {
1638 if (!u64_to_user_ptr(args->points)) {
1639 memset(points, 0, args->count_handles * sizeof(uint64_t));
1640 } else if (copy_from_user(points, u64_to_user_ptr(args->points),
1665 fence, points[i]);
1671 kfree(points);
1683 uint64_t __user *points = u64_to_user_ptr(args->points);
1722 * unorder points. */
1737 ret = copy_to_user(&points[i], &point, sizeof(uint64_t));