Searched refs:AllocParams (Results 1 – 1 of 1) sorted by relevance
/frameworks/av/media/codec2/vndk/ |
D | C2Buffer.cpp | 498 union AllocParams { union in _C2BufferPoolAllocator 506 AllocParams() : data{ALLOC_NONE, {0, 0}, {0}} {} in AllocParams() function 507 AllocParams(C2MemoryUsage usage, uint32_t capacity) in AllocParams() function 509 AllocParams( in AllocParams() function 540 AllocParams c2Params; in allocate() 541 memcpy(&c2Params, params.data(), std::min(sizeof(AllocParams), params.size())); in allocate() 596 AllocParams newAlloc; in compatible() 597 AllocParams oldAlloc; in compatible() 598 memcpy(&newAlloc, newParams.data(), std::min(sizeof(AllocParams), newParams.size())); in compatible() 599 memcpy(&oldAlloc, oldParams.data(), std::min(sizeof(AllocParams), oldParams.size())); in compatible() [all …]
|