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

/frameworks/av/media/libeffects/lvm/lib/Eq/src/
H A DLVEQNB_Init.c50 /* pMemoryTable Pointer to an empty memory definition table */
55 /* LVEQNB_NULLADDRESS When any of pMemoryTable and pCapabilities is NULL address */
63 LVEQNB_MemTab_t *pMemoryTable,
71 if((pMemoryTable == LVM_NULL)|| (pCapabilities == LVM_NULL))
89 pMemoryTable->Region[LVEQNB_MEMREGION_INSTANCE].Size = InstAlloc_GetTotal(&AllocMem);
90 pMemoryTable->Region[LVEQNB_MEMREGION_INSTANCE].Alignment = LVEQNB_INSTANCE_ALIGN;
91 pMemoryTable->Region[LVEQNB_MEMREGION_INSTANCE].Type = LVEQNB_PERSISTENT;
92 pMemoryTable->Region[LVEQNB_MEMREGION_INSTANCE].pBaseAddress = LVM_NULL;
110 pMemoryTable->Region[LVEQNB_MEMREGION_PERSISTENT_DATA].Size = InstAlloc_GetTotal(&AllocMem);
111 pMemoryTable
62 LVEQNB_Memory(LVEQNB_Handle_t hInstance, LVEQNB_MemTab_t *pMemoryTable, LVEQNB_Capabilities_t *pCapabilities) argument
187 LVEQNB_Init(LVEQNB_Handle_t *phInstance, LVEQNB_MemTab_t *pMemoryTable, LVEQNB_Capabilities_t *pCapabilities) argument
[all...]
/frameworks/av/media/libeffects/lvm/lib/StereoWidening/src/
H A DLVCS_Init.c52 /* pMemoryTable Pointer to an empty memory definition table */
64 LVCS_MemTab_t *pMemoryTable,
80 pMemoryTable->Region[LVCS_MEMREGION_PERSISTENT_SLOW_DATA].Size = (LVM_UINT32)sizeof(LVCS_Instance_t);
81 pMemoryTable->Region[LVCS_MEMREGION_PERSISTENT_SLOW_DATA].Type = LVCS_PERSISTENT;
82 pMemoryTable->Region[LVCS_MEMREGION_PERSISTENT_SLOW_DATA].pBaseAddress = LVM_NULL;
87 pMemoryTable->Region[LVCS_MEMREGION_PERSISTENT_FAST_DATA].Size = (LVM_UINT32)sizeof(LVCS_Data_t);
88 pMemoryTable->Region[LVCS_MEMREGION_PERSISTENT_FAST_DATA].Type = LVCS_DATA;
89 pMemoryTable->Region[LVCS_MEMREGION_PERSISTENT_FAST_DATA].pBaseAddress = LVM_NULL;
94 pMemoryTable->Region[LVCS_MEMREGION_PERSISTENT_FAST_COEF].Size = (LVM_UINT32)sizeof(LVCS_Coefficient_t);
95 pMemoryTable
63 LVCS_Memory(LVCS_Handle_t hInstance, LVCS_MemTab_t *pMemoryTable, LVCS_Capabilities_t *pCapabilities) argument
149 LVCS_Init(LVCS_Handle_t *phInstance, LVCS_MemTab_t *pMemoryTable, LVCS_Capabilities_t *pCapabilities) argument
[all...]
/frameworks/av/media/libeffects/lvm/lib/Bass/src/
H A DLVDBE_Init.c47 /* pMemoryTable Pointer to an empty memory definition table */
59 LVDBE_MemTab_t *pMemoryTable,
75 pMemoryTable->Region[LVDBE_MEMREGION_INSTANCE].Size = sizeof(LVDBE_Instance_t);
76 pMemoryTable->Region[LVDBE_MEMREGION_INSTANCE].Alignment = LVDBE_INSTANCE_ALIGN;
77 pMemoryTable->Region[LVDBE_MEMREGION_INSTANCE].Type = LVDBE_PERSISTENT;
78 pMemoryTable->Region[LVDBE_MEMREGION_INSTANCE].pBaseAddress = LVM_NULL;
83 pMemoryTable->Region[LVDBE_MEMREGION_PERSISTENT_DATA].Size = sizeof(LVDBE_Data_t);
84 pMemoryTable->Region[LVDBE_MEMREGION_PERSISTENT_DATA].Alignment = LVDBE_PERSISTENT_DATA_ALIGN;
85 pMemoryTable->Region[LVDBE_MEMREGION_PERSISTENT_DATA].Type = LVDBE_PERSISTENT_DATA;
86 pMemoryTable
58 LVDBE_Memory(LVDBE_Handle_t hInstance, LVDBE_MemTab_t *pMemoryTable, LVDBE_Capabilities_t *pCapabilities) argument
148 LVDBE_Init(LVDBE_Handle_t *phInstance, LVDBE_MemTab_t *pMemoryTable, LVDBE_Capabilities_t *pCapabilities) argument
[all...]
/frameworks/av/media/libeffects/lvm/lib/Common/src/
H A DInstAlloc.c85 LVM_MemoryTable_st *pMemoryTable)
89 StartAddr = (uintptr_t)pMemoryTable->Region[LVM_PERSISTENT_SLOW_DATA].pBaseAddress;
95 StartAddr = (uintptr_t)pMemoryTable->Region[LVM_PERSISTENT_FAST_DATA].pBaseAddress;
101 StartAddr = (uintptr_t)pMemoryTable->Region[LVM_PERSISTENT_FAST_COEF].pBaseAddress;
107 StartAddr = (uintptr_t)pMemoryTable->Region[LVM_TEMPORARY_FAST].pBaseAddress;
143 LVM_MemoryTable_st *pMemoryTable)
150 pMemoryTable->Region[LVM_PERSISTENT_SLOW_DATA].Size = InstAlloc_GetTotal(&pms[LVM_PERSISTENT_SLOW_DATA]);
151 pMemoryTable->Region[LVM_PERSISTENT_SLOW_DATA].Type = LVM_PERSISTENT_SLOW_DATA;
152 pMemoryTable->Region[LVM_PERSISTENT_SLOW_DATA].pBaseAddress = LVM_NULL;
156 pMemoryTable
84 InstAlloc_InitAll( INST_ALLOC *pms, LVM_MemoryTable_st *pMemoryTable) argument
141 InstAlloc_AddMemberAll( INST_ALLOC *pms, LVM_UINT32 Size[], LVM_MemoryTable_st *pMemoryTable) argument
[all...]
/frameworks/av/media/libeffects/lvm/lib/Reverb/src/
H A DLVREV_GetInstanceHandle.c38 /* pMemoryTable Pointer to the memory definition table */
43 /* LVREV_NULLADDRESS When phInstance or pMemoryTable or pInstanceParams is NULL */
50 LVREV_MemoryTable_st *pMemoryTable,
67 if((phInstance == LVM_NULL) || (pMemoryTable == LVM_NULL) || (pInstanceParams == LVM_NULL))
74 if (pMemoryTable->Region[i].Size!=0)
76 if (pMemoryTable->Region[i].pBaseAddress==LVM_NULL)
103 InstAlloc_Init(&SlowData, pMemoryTable->Region[LVM_PERSISTENT_SLOW_DATA].pBaseAddress);
104 InstAlloc_Init(&FastData, pMemoryTable->Region[LVM_PERSISTENT_FAST_DATA].pBaseAddress);
105 InstAlloc_Init(&FastCoef, pMemoryTable->Region[LVM_PERSISTENT_FAST_COEF].pBaseAddress);
106 InstAlloc_Init(&Temporary, pMemoryTable
49 LVREV_GetInstanceHandle(LVREV_Handle_t *phInstance, LVREV_MemoryTable_st *pMemoryTable, LVREV_InstanceParams_st *pInstanceParams) argument
[all...]
H A DLVREV_GetMemoryTable.c46 /* pMemoryTable Pointer to an empty memory table */
51 /* LVREV_NULLADDRESS When pMemoryTable is NULL */
60 LVREV_MemoryTable_st *pMemoryTable,
76 if (pMemoryTable == LVM_NULL)
153 pMemoryTable->Region[LVM_PERSISTENT_SLOW_DATA].Size = InstAlloc_GetTotal(&SlowData);
154 pMemoryTable->Region[LVM_PERSISTENT_SLOW_DATA].Type = LVM_PERSISTENT_SLOW_DATA;
155 pMemoryTable->Region[LVM_PERSISTENT_SLOW_DATA].pBaseAddress = LVM_NULL;
181 pMemoryTable->Region[LVM_PERSISTENT_FAST_DATA].Size = InstAlloc_GetTotal(&FastData);
182 pMemoryTable->Region[LVM_PERSISTENT_FAST_DATA].Type = LVM_PERSISTENT_FAST_DATA;
183 pMemoryTable
59 LVREV_GetMemoryTable(LVREV_Handle_t hInstance, LVREV_MemoryTable_st *pMemoryTable, LVREV_InstanceParams_st *pInstanceParams) argument
[all...]
/frameworks/av/media/libeffects/lvm/lib/SpectrumAnalyzer/src/
H A DLVPSA_Memory.c42 /* pMemoryTable Pointer to an empty memory definition table */
51 LVPSA_MemTab_t *pMemoryTable,
69 if((pMemoryTable == LVM_NULL) || (pInitParams == LVM_NULL))
130 pMemoryTable->Region[LVPSA_MEMREGION_INSTANCE].Size = InstAlloc_GetTotal(&Instance);
131 pMemoryTable->Region[LVPSA_MEMREGION_INSTANCE].Type = LVPSA_PERSISTENT;
132 pMemoryTable->Region[LVPSA_MEMREGION_INSTANCE].pBaseAddress = LVM_NULL;
138 pMemoryTable->Region[LVPSA_MEMREGION_SCRATCH].Size = InstAlloc_GetTotal(&Scratch);
139 pMemoryTable->Region[LVPSA_MEMREGION_SCRATCH].Type = LVPSA_SCRATCH;
140 pMemoryTable->Region[LVPSA_MEMREGION_SCRATCH].pBaseAddress = LVM_NULL;
147 pMemoryTable
50 LVPSA_Memory( pLVPSA_Handle_t hInstance, LVPSA_MemTab_t *pMemoryTable, LVPSA_InitParams_t *pInitParams ) argument
[all...]
/frameworks/av/media/libeffects/lvm/lib/Bundle/src/
H A DLVM_Init.c49 /* pMemoryTable Pointer to an empty memory definition table */
54 /* LVM_NULLADDRESS When one of pMemoryTable or pInstParams is NULL */
65 LVM_MemTab_t *pMemoryTable,
80 if(pMemoryTable == LVM_NULL)
92 *pMemoryTable = pInstance->MemoryTable;
365 pMemoryTable->Region[LVM_MEMREGION_PERSISTENT_SLOW_DATA].Size = InstAlloc_GetTotal(&AllocMem[LVM_MEMREGION_PERSISTENT_SLOW_DATA]);
366 pMemoryTable->Region[LVM_MEMREGION_PERSISTENT_SLOW_DATA].Type = LVM_PERSISTENT_SLOW_DATA;
367 pMemoryTable->Region[LVM_MEMREGION_PERSISTENT_SLOW_DATA].pBaseAddress = LVM_NULL;
369 pMemoryTable->Region[LVM_MEMREGION_PERSISTENT_FAST_DATA].Size = InstAlloc_GetTotal(&AllocMem[LVM_MEMREGION_PERSISTENT_FAST_DATA]);
370 pMemoryTable
64 LVM_GetMemoryTable(LVM_Handle_t hInstance, LVM_MemTab_t *pMemoryTable, LVM_InstParams_t *pInstParams) argument
423 LVM_GetInstanceHandle(LVM_Handle_t *phInstance, LVM_MemTab_t *pMemoryTable, LVM_InstParams_t *pInstParams) argument
[all...]

Completed in 90 milliseconds