Home | History | Annotate | Download | only in drm

Lines Matching defs:point

169 	u64    point;
215 if (!fence || dma_fence_chain_find_seqno(&fence, wait->point)) {
238 * drm_syncobj_add_point - add new timeline point to the syncobj
239 * @syncobj: sync object to add timeline point do
240 * @chain: chain node to use to add the point
242 * @point: sequence number to use for the point
244 * Add the chain node as new timeline point to the syncobj.
249 uint64_t point)
259 /* You are adding an unorder point to timeline, which could cause payload returned from query_ioctl is 0! */
260 if (prev && prev->seqno >= point)
261 DRM_ERROR("You are adding an unorder point to timeline!\n");
262 dma_fence_chain_init(chain, prev, fence, point);
328 * @point: timeline point
340 u32 handle, u64 point, u64 flags,
355 ret = dma_fence_chain_find_seqno(fence, point);
376 wait.point = point;
1026 if (!fence || dma_fence_chain_find_seqno(&fence, wait->point)) {
1100 entries[i].point = points[i];
1596 uint64_t point;
1606 point = fence->seqno;
1618 point = dma_fence_is_signaled(last_signaled) ?
1624 point = 0;
1627 ret = copy_to_user(&points[i], &point, sizeof(uint64_t));