Lines Matching refs:bufs
80 struct bm_buffer *bufs, in BmPoolRelease() argument
90 return BmPortalRelease(h_BmPortal, p_BmPool->bpid, bufs, num, flags); in BmPoolRelease()
111 bufs, in BmPoolRelease()
134 struct bm_buffer *bufs, uint8_t num, uint32_t flags) in BmPoolAcquire() argument
142 return BmPortalAcquire(h_BmPortal, p_BmPool->bpid, bufs, num); in BmPoolAcquire()
156 memcpy(bufs, in BmPoolAcquire()
405 struct bm_buffer bufs[1]; in BM_POOL_GetBuf() local
426 retBufsNum = (uint8_t)BmPoolAcquire(p_BmPool, h_BmPortal, bufs, 1, flags); in BM_POOL_GetBuf()
432 physAddr = (uint64_t)bufs[0].lo; in BM_POOL_GetBuf()
433 physAddr |= (uint64_t)(((uint64_t)bufs[0].hi << 32) & 0x000000ff00000000LL); in BM_POOL_GetBuf()
445 struct bm_buffer bufs[1]; in BM_POOL_PutBuf() local
453 bufs[0].bpid = p_BmPool->bpid; in BM_POOL_PutBuf()
454 bufs[0].hi = (uint8_t)((physAddress & 0x000000ff00000000LL) >> 32); in BM_POOL_PutBuf()
455 bufs[0].lo = (uint32_t)(physAddress & 0xffffffff); in BM_POOL_PutBuf()
472 return BmPoolRelease(p_BmPool, h_BmPortal, bufs, 1, BMAN_RELEASE_FLAG_WAIT); in BM_POOL_PutBuf()