Home | History | Annotate | Download | only in src

Lines Matching refs:buf

44     struct _WsbmBufStorage buf;
50 mallocBuf(struct _WsbmBufStorage *buf)
52 return containerOf(buf, struct _WsbmMallocBuffer, buf);
64 wsbmBufStorageInit(&mBuf->buf, pool);
70 return &mBuf->buf;
74 pool_destroy(struct _WsbmBufStorage **buf)
76 free(mallocBuf(*buf));
77 *buf = NULL;
81 pool_waitIdle(struct _WsbmBufStorage *buf __attribute__ ((unused)), int lazy __attribute__ ((unused)))
87 pool_map(struct _WsbmBufStorage *buf, unsigned mode __attribute__ ((unused)), void **virtual __attribute__ ((unused)))
89 *virtual = mallocBuf(buf)->mem;
94 pool_unmap(struct _WsbmBufStorage *buf __attribute__ ((unused)))
100 pool_syncforcpu(struct _WsbmBufStorage *buf __attribute__ ((unused)), unsigned mode __attribute__ ((unused)))
106 pool_releasefromcpu(struct _WsbmBufStorage *buf __attribute__ ((unused)), unsigned mode __attribute__ ((unused)))
112 pool_offset(struct _WsbmBufStorage *buf __attribute__ ((unused)))
122 pool_poolOffset(struct _WsbmBufStorage *buf __attribute__ ((unused)))
131 pool_placement(struct _WsbmBufStorage *buf __attribute__ ((unused)))
137 pool_size(struct _WsbmBufStorage *buf)
139 return mallocBuf(buf)->size;
143 pool_fence(struct _WsbmBufStorage *buf __attribute__ ((unused)), struct _WsbmFenceObject *fence __attribute__ ((unused)))
149 pool_kernel(struct _WsbmBufStorage *buf __attribute__ ((unused)))