Searched refs:AllocParams (Results 1 – 1 of 1) sorted by relevance
/frameworks/av/media/codec2/vndk/ |
D | C2Buffer.cpp | 501 union AllocParams { union in _C2BufferPoolAllocator 509 AllocParams() : data{ALLOC_NONE, {0, 0}, {0}} {} in AllocParams() function 510 AllocParams(C2MemoryUsage usage, uint32_t capacity) in AllocParams() function 512 AllocParams( in AllocParams() function 543 AllocParams c2Params; in allocate() 544 memcpy(&c2Params, params.data(), std::min(sizeof(AllocParams), params.size())); in allocate() 599 AllocParams newAlloc; in compatible() 600 AllocParams oldAlloc; in compatible() 601 memcpy(&newAlloc, newParams.data(), std::min(sizeof(AllocParams), newParams.size())); in compatible() 602 memcpy(&oldAlloc, oldParams.data(), std::min(sizeof(AllocParams), oldParams.size())); in compatible() [all …]
|