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.
174 * Import/export of timeline points in timeline syncobjs
951 uint64_t *points;
954 points = kmalloc_array(count, sizeof(*points), GFP_KERNEL);
955 if (points == NULL)
959 memset(points, 0, count * sizeof(uint64_t));
961 } else if (copy_from_user(points, user_points,
982 entries[i].point = points[i];
984 if (!fence || dma_fence_chain_find_seqno(&fence, points[i])) {
1081 kfree(points);
1141 u64_to_user_ptr(timeline_wait->points),
1350 uint64_t *points;
1370 points = kmalloc_array(args->count_handles, sizeof(*points),
1372 if (!points) {
1376 if (!u64_to_user_ptr(args->points)) {
1377 memset(points, 0, args->count_handles * sizeof(uint64_t));
1378 } else if (copy_from_user(points, u64_to_user_ptr(args->points),
1403 fence, points[i]);
1409 kfree(points);
1421 uint64_t __user *points = u64_to_user_ptr(args->points);
1460 * unorder points. */
1475 ret = copy_to_user(&points[i], &point, sizeof(uint64_t));