Searched refs:ctx_handle (Results 1 - 4 of 4) sorted by relevance

/freebsd-10.2-release/sys/dev/drm/
H A Ddrm_context.c44 void drm_ctxbitmap_free(struct drm_device *dev, int ctx_handle) argument
46 if (ctx_handle < 0 || ctx_handle >= DRM_MAX_CTXBITMAP ||
49 ctx_handle);
54 clear_bit(ctx_handle, dev->ctx_bitmap);
55 dev->context_sareas[ctx_handle] = NULL;
H A DdrmP.h760 void drm_ctxbitmap_free(struct drm_device *dev, int ctx_handle);
/freebsd-10.2-release/sys/dev/drm2/
H A Ddrm_context.c56 * \param ctx_handle context handle.
58 * Clears the bit specified by \p ctx_handle in drm_device::ctx_bitmap and the entry
62 void drm_ctxbitmap_free(struct drm_device * dev, int ctx_handle) argument
64 if (ctx_handle < 0 || ctx_handle >= DRM_MAX_CTXBITMAP ||
67 ctx_handle);
72 clear_bit(ctx_handle, dev->ctx_bitmap);
73 dev->context_sareas[ctx_handle] = NULL;
H A DdrmP.h1225 extern void drm_ctxbitmap_free(struct drm_device *dev, int ctx_handle);

Completed in 88 milliseconds