Searched refs:alloc_id (Results 1 – 2 of 2) sorted by relevance
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/ |
| H A D | RenderScriptRuntime.h | 377 bool LoadAllocation(Stream &strm, const uint32_t alloc_id, 380 bool SaveAllocation(Stream &strm, const uint32_t alloc_id, 518 AllocationDetails *FindAllocByID(Stream &strm, const uint32_t alloc_id);
|
| H A D | RenderScriptRuntime.cpp | 2489 bool RenderScriptRuntime::LoadAllocation(Stream &strm, const uint32_t alloc_id, in LoadAllocation() argument 2495 AllocationDetails *alloc = FindAllocByID(strm, alloc_id); in LoadAllocation() 2713 bool RenderScriptRuntime::SaveAllocation(Stream &strm, const uint32_t alloc_id, in SaveAllocation() argument 2719 AllocationDetails *alloc = FindAllocByID(strm, alloc_id); in SaveAllocation() 3244 RenderScriptRuntime::FindAllocByID(Stream &strm, const uint32_t alloc_id) { in FindAllocByID() argument 3248 if (alloc_id <= m_allocations.size() && alloc_id != 0 && in FindAllocByID() 3249 m_allocations[alloc_id - 1]->id == alloc_id) { in FindAllocByID() 3250 alloc = m_allocations[alloc_id - 1].get(); in FindAllocByID() 3256 if (a->id == alloc_id) { in FindAllocByID() 3264 alloc_id); in FindAllocByID()
|