Searched defs:pms (Results 1 - 1 of 1) sorted by relevance

/frameworks/av/media/libeffects/lvm/lib/Common/src/
H A DInstAlloc.c22 * Input : pms - Pointer to the INST_ALLOC instance
29 void InstAlloc_Init( INST_ALLOC *pms, argument
32 pms->TotalSize = 3;
33 pms->pNextMember = (((uintptr_t)StartAddr + 3) & (uintptr_t)~3);
39 * Input : pms - Pointer to the INST_ALLOC instance
48 void* InstAlloc_AddMember( INST_ALLOC *pms, argument
52 NewMemberAddress = (void*)pms->pNextMember;
56 pms->TotalSize += Size;
57 pms->pNextMember += Size;
65 * Input : pms
71 InstAlloc_GetTotal( INST_ALLOC *pms) argument
84 InstAlloc_InitAll( INST_ALLOC *pms, LVM_MemoryTable_st *pMemoryTable) argument
123 InstAlloc_InitAll_NULL( INST_ALLOC *pms) argument
141 InstAlloc_AddMemberAll( INST_ALLOC *pms, LVM_UINT32 Size[], LVM_MemoryTable_st *pMemoryTable) argument
176 InstAlloc_AddMemberAllRet( INST_ALLOC *pms, LVM_UINT32 Size[], void **ptr) argument
[all...]

Completed in 63 milliseconds