Lines Matching defs:points
135 * handles as well as an array of u64 points and does a host-side wait on all
136 * of syncobj fences at the given points simultaneously.
183 * Import/export of timeline points in timeline syncobjs
1043 uint64_t *points;
1052 points = kmalloc_array(count, sizeof(*points), GFP_KERNEL);
1053 if (points == NULL)
1057 memset(points, 0, count * sizeof(uint64_t));
1059 } else if (copy_from_user(points, user_points,
1080 entries[i].point = points[i];
1082 if (!fence || dma_fence_chain_find_seqno(&fence, points[i])) {
1189 kfree(points);
1251 u64_to_user_ptr(timeline_wait->points),
1586 uint64_t *points;
1606 points = kmalloc_array(args->count_handles, sizeof(*points),
1608 if (!points) {
1612 if (!u64_to_user_ptr(args->points)) {
1613 memset(points, 0, args->count_handles * sizeof(uint64_t));
1614 } else if (copy_from_user(points, u64_to_user_ptr(args->points),
1639 fence, points[i]);
1645 kfree(points);
1657 uint64_t __user *points = u64_to_user_ptr(args->points);
1696 * unorder points. */
1711 ret = copy_to_user(&points[i], &point, sizeof(uint64_t));