• Home
  • Raw
  • Download

Lines Matching refs:pool

92     struct _WsbmBufferPool pool;  member
111 return containerOf(buf->buf.pool, struct _WsbmUserPool, pool); in userPool()
204 pool_create(struct _WsbmBufferPool *pool, in pool_create() argument
207 struct _WsbmUserPool *p = containerOf(pool, struct _WsbmUserPool, pool); in pool_create()
213 wsbmBufStorageInit(&vBuf->buf, pool); in pool_create()
583 pool_takedown(struct _WsbmBufferPool *pool) in pool_takedown() argument
585 struct _WsbmUserPool *p = containerOf(pool, struct _WsbmUserPool, pool); in pool_takedown()
612 wsbmUserPoolClean(struct _WsbmBufferPool *pool, int cleanVram, int cleanAgp) in wsbmUserPoolClean() argument
614 struct _WsbmUserPool *p = containerOf(pool, struct _WsbmUserPool, pool); in wsbmUserPoolClean()
631 struct _WsbmBufferPool *pool; in wsbmUserPoolInit() local
661 pool = &uPool->pool; in wsbmUserPoolInit()
662 pool->map = &pool_map; in wsbmUserPoolInit()
663 pool->unmap = &pool_unmap; in wsbmUserPoolInit()
664 pool->destroy = &pool_destroy; in wsbmUserPoolInit()
665 pool->offset = &pool_offset; in wsbmUserPoolInit()
666 pool->poolOffset = &pool_poolOffset; in wsbmUserPoolInit()
667 pool->size = &pool_size; in wsbmUserPoolInit()
668 pool->create = &pool_create; in wsbmUserPoolInit()
669 pool->fence = &pool_fence; in wsbmUserPoolInit()
670 pool->unvalidate = &pool_unvalidate; in wsbmUserPoolInit()
671 pool->kernel = &pool_kernel; in wsbmUserPoolInit()
672 pool->validate = &pool_validate; in wsbmUserPoolInit()
673 pool->waitIdle = &pool_waitIdle; in wsbmUserPoolInit()
674 pool->takeDown = &pool_takedown; in wsbmUserPoolInit()
675 pool->setStatus = &pool_setStatus; in wsbmUserPoolInit()
676 pool->syncforcpu = &pool_syncForCpu; in wsbmUserPoolInit()
677 pool->releasefromcpu = &pool_releaseFromCpu; in wsbmUserPoolInit()
679 return pool; in wsbmUserPoolInit()