Searched refs:pBaseAddress (Results 1 - 24 of 24) sorted by relevance

/frameworks/base/media/libeffects/lvm/lib/Bass/src/
H A DLVDBE_Init.c78 pMemoryTable->Region[LVDBE_MEMREGION_INSTANCE].pBaseAddress = LVM_NULL;
86 pMemoryTable->Region[LVDBE_MEMREGION_PERSISTENT_DATA].pBaseAddress = LVM_NULL;
94 pMemoryTable->Region[LVDBE_MEMREGION_PERSISTENT_COEF].pBaseAddress = LVM_NULL;
103 pMemoryTable->Region[LVDBE_MEMREGION_SCRATCH].pBaseAddress = LVM_NULL;
165 *phInstance = (LVDBE_Handle_t)pMemoryTable->Region[LVDBE_MEMREGION_INSTANCE].pBaseAddress;
177 if (pMemoryTable->Region[i].pBaseAddress==LVM_NULL)
181 if (((LVM_UINT32)pMemoryTable->Region[i].pBaseAddress % pMemoryTable->Region[i].Alignment)!=0){
216 pInstance->pData = pMemoryTable->Region[LVDBE_MEMREGION_PERSISTENT_DATA].pBaseAddress;
217 pInstance->pCoef = pMemoryTable->Region[LVDBE_MEMREGION_PERSISTENT_COEF].pBaseAddress;
H A DLVDBE_Process.c83 LVM_INT32 *pScratch = (LVM_INT32 *)pInstance->MemoryTable.Region[LVDBE_MEMREGION_SCRATCH].pBaseAddress;
/frameworks/base/media/libeffects/lvm/lib/Common/src/
H A DInstAlloc.c89 StartAddr = (LVM_UINT32)pMemoryTable->Region[LVM_PERSISTENT_SLOW_DATA].pBaseAddress;
95 StartAddr = (LVM_UINT32)pMemoryTable->Region[LVM_PERSISTENT_FAST_DATA].pBaseAddress;
101 StartAddr = (LVM_UINT32)pMemoryTable->Region[LVM_PERSISTENT_FAST_COEF].pBaseAddress;
107 StartAddr = (LVM_UINT32)pMemoryTable->Region[LVM_TEMPORARY_FAST].pBaseAddress;
152 pMemoryTable->Region[LVM_PERSISTENT_SLOW_DATA].pBaseAddress = LVM_NULL;
158 pMemoryTable->Region[LVM_PERSISTENT_FAST_DATA].pBaseAddress = LVM_NULL;
164 pMemoryTable->Region[LVM_PERSISTENT_FAST_COEF].pBaseAddress = LVM_NULL;
170 pMemoryTable->Region[LVM_TEMPORARY_FAST].pBaseAddress = LVM_NULL;
/frameworks/base/media/libeffects/lvm/lib/StereoWidening/src/
H A DLVCS_Init.c82 pMemoryTable->Region[LVCS_MEMREGION_PERSISTENT_SLOW_DATA].pBaseAddress = LVM_NULL;
89 pMemoryTable->Region[LVCS_MEMREGION_PERSISTENT_FAST_DATA].pBaseAddress = LVM_NULL;
96 pMemoryTable->Region[LVCS_MEMREGION_PERSISTENT_FAST_COEF].pBaseAddress = LVM_NULL;
104 pMemoryTable->Region[LVCS_MEMREGION_TEMPORARY_FAST].pBaseAddress = LVM_NULL;
163 *phInstance = (LVCS_Handle_t)pMemoryTable->Region[LVCS_MEMREGION_PERSISTENT_SLOW_DATA].pBaseAddress;
H A DLVCS_Equaliser.c64 LVCS_Data_t *pData = (LVCS_Data_t *)pInstance->MemoryTable.Region[LVCS_MEMREGION_PERSISTENT_FAST_DATA].pBaseAddress;
65 LVCS_Coefficient_t *pCoefficients = (LVCS_Coefficient_t *)pInstance->MemoryTable.Region[LVCS_MEMREGION_PERSISTENT_FAST_COEF].pBaseAddress;
143 LVCS_Coefficient_t *pCoefficients = (LVCS_Coefficient_t *)pInstance->MemoryTable.Region[LVCS_MEMREGION_PERSISTENT_FAST_COEF].pBaseAddress;
H A DLVCS_ReverbGenerator.c69 LVCS_Data_t *pData = (LVCS_Data_t *)pInstance->MemoryTable.Region[LVCS_MEMREGION_PERSISTENT_FAST_DATA].pBaseAddress;
70 LVCS_Coefficient_t *pCoefficients = (LVCS_Coefficient_t *)pInstance->MemoryTable.Region[LVCS_MEMREGION_PERSISTENT_FAST_COEF].pBaseAddress;
191 LVCS_Coefficient_t *pCoefficients = (LVCS_Coefficient_t *)pInstance->MemoryTable.Region[LVCS_MEMREGION_PERSISTENT_FAST_COEF].pBaseAddress;
192 LVM_INT16 *pScratch = (LVM_INT16 *)pInstance->MemoryTable.Region[LVCS_MEMREGION_TEMPORARY_FAST].pBaseAddress;
H A DLVCS_StereoEnhancer.c60 LVCS_Data_t *pData = (LVCS_Data_t *)pInstance->MemoryTable.Region[LVCS_MEMREGION_PERSISTENT_FAST_DATA].pBaseAddress;
61 LVCS_Coefficient_t *pCoefficient = (LVCS_Coefficient_t *)pInstance->MemoryTable.Region[LVCS_MEMREGION_PERSISTENT_FAST_COEF].pBaseAddress;
189 LVCS_Coefficient_t *pCoefficient = (LVCS_Coefficient_t *)pInstance->MemoryTable.Region[LVCS_MEMREGION_PERSISTENT_FAST_COEF].pBaseAddress;
190 LVM_INT16 *pScratch = (LVM_INT16 *)pInstance->MemoryTable.Region[LVCS_MEMREGION_TEMPORARY_FAST].pBaseAddress;
H A DLVCS_Process.c77 LVM_INT16 *pScratch = (LVM_INT16 *)pInstance->MemoryTable.Region[LVCS_MEMREGION_TEMPORARY_FAST].pBaseAddress;
/frameworks/base/media/libeffects/lvm/lib/Eq/src/
H A DLVEQNB_Init.c91 pMemoryTable->Region[LVEQNB_MEMREGION_INSTANCE].pBaseAddress = LVM_NULL;
112 pMemoryTable->Region[LVEQNB_MEMREGION_PERSISTENT_DATA].pBaseAddress = LVM_NULL;
128 pMemoryTable->Region[LVEQNB_MEMREGION_PERSISTENT_COEF].pBaseAddress = LVM_NULL;
140 pMemoryTable->Region[LVEQNB_MEMREGION_SCRATCH].pBaseAddress = LVM_NULL;
211 if (pMemoryTable->Region[i].pBaseAddress==LVM_NULL)
222 InstAlloc_Init(&AllocMem, pMemoryTable->Region[LVEQNB_MEMREGION_INSTANCE].pBaseAddress);
248 pMemoryTable->Region[LVEQNB_MEMREGION_PERSISTENT_COEF].pBaseAddress);
259 pMemoryTable->Region[LVEQNB_MEMREGION_PERSISTENT_DATA].pBaseAddress);
276 pMemoryTable->Region[LVEQNB_MEMREGION_SCRATCH].pBaseAddress);
/frameworks/base/media/libeffects/lvm/lib/SpectrumAnalyzer/src/
H A DLVPSA_Init.c88 InstAlloc_Init( &Instance , pMemoryTable->Region[LVPSA_MEMREGION_INSTANCE].pBaseAddress);
89 InstAlloc_Init( &Scratch , pMemoryTable->Region[LVPSA_MEMREGION_SCRATCH].pBaseAddress);
90 InstAlloc_Init( &Data , pMemoryTable->Region[LVPSA_MEMREGION_PERSISTENT_DATA].pBaseAddress);
91 InstAlloc_Init( &Coef , pMemoryTable->Region[LVPSA_MEMREGION_PERSISTENT_COEF].pBaseAddress);
107 if (pMemoryTable->Region[ii].pBaseAddress==LVM_NULL)
H A DLVPSA_Memory.c132 pMemoryTable->Region[LVPSA_MEMREGION_INSTANCE].pBaseAddress = LVM_NULL;
140 pMemoryTable->Region[LVPSA_MEMREGION_SCRATCH].pBaseAddress = LVM_NULL;
149 pMemoryTable->Region[LVPSA_MEMREGION_PERSISTENT_COEF].pBaseAddress = LVM_NULL;
158 pMemoryTable->Region[LVPSA_MEMREGION_PERSISTENT_DATA].pBaseAddress = LVM_NULL;
H A DLVPSA_Process.c71 pScratch = (LVM_INT16*)pLVPSA_Inst->MemoryTable.Region[LVPSA_MEMREGION_SCRATCH].pBaseAddress;
/frameworks/base/media/libeffects/lvm/lib/Reverb/src/
H A DLVREV_GetInstanceHandle.c76 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->Region[LVM_TEMPORARY_FAST].pBaseAddress);
111 LoadConst_16(0, (LVM_INT16 *)pMemoryTable->Region[LVM_PERSISTENT_SLOW_DATA].pBaseAddress, (LVM_INT16)((pMemoryTable->Region[LVM_PERSISTENT_SLOW_DATA].Size)/sizeof(LVM_INT16)));
112 LoadConst_16(0, (LVM_INT16 *)pMemoryTable->Region[LVM_PERSISTENT_FAST_DATA].pBaseAddress, (LVM_INT16)((pMemoryTable->Region[LVM_PERSISTENT_FAST_DATA].Size)/sizeof(LVM_INT16)));
113 LoadConst_16(0, (LVM_INT16 *)pMemoryTable->Region[LVM_PERSISTENT_FAST_COEF].pBaseAddress, (LVM_INT16)((pMemoryTable->Region[LVM_PERSISTENT_FAST_COEF].Size)/sizeof(LVM_INT16)));
114 LoadConst_16(0, (LVM_INT16 *)pMemoryTable->Region[LVM_TEMPORARY_FAST].pBaseAddress, (LVM_INT16)((pMemoryTable->Region[LVM_TEMPORARY_FAST].Size)/sizeof(LVM_INT16)));
H A DLVREV_GetMemoryTable.c155 pMemoryTable->Region[LVM_PERSISTENT_SLOW_DATA].pBaseAddress = LVM_NULL;
183 pMemoryTable->Region[LVM_PERSISTENT_FAST_DATA].pBaseAddress = LVM_NULL;
192 pMemoryTable->Region[LVM_PERSISTENT_FAST_COEF].pBaseAddress = LVM_NULL;
227 pMemoryTable->Region[LVM_TEMPORARY_FAST].pBaseAddress = LVM_NULL;
/frameworks/media/libvideoeditor/vss/common/inc/
H A DLVM_Types.h152 void *pBaseAddress; /* Pointer to the region base address */ member in struct:__anon1385
/frameworks/base/media/libeffects/lvm/lib/Bundle/src/
H A DLVM_Init.c367 pMemoryTable->Region[LVM_MEMREGION_PERSISTENT_SLOW_DATA].pBaseAddress = LVM_NULL;
371 pMemoryTable->Region[LVM_MEMREGION_PERSISTENT_FAST_DATA].pBaseAddress = LVM_NULL;
379 pMemoryTable->Region[LVM_MEMREGION_PERSISTENT_FAST_COEF].pBaseAddress = LVM_NULL;
389 pMemoryTable->Region[LVM_MEMREGION_TEMPORARY_FAST].pBaseAddress = LVM_NULL;
450 (pMemoryTable->Region[i].pBaseAddress==LVM_NULL))
495 pMemoryTable->Region[i].pBaseAddress);
667 CS_MemTab.Region[LVCS_MEMREGION_PERSISTENT_SLOW_DATA].pBaseAddress = &pInstance->CS_Instance;
668 CS_MemTab.Region[LVCS_MEMREGION_PERSISTENT_FAST_DATA].pBaseAddress = (void *)InstAlloc_AddMember(&AllocMem[LVM_MEMREGION_PERSISTENT_FAST_DATA],
670 CS_MemTab.Region[LVCS_MEMREGION_PERSISTENT_FAST_COEF].pBaseAddress = (void *)InstAlloc_AddMember(&AllocMem[LVM_MEMREGION_PERSISTENT_FAST_COEF],
672 CS_MemTab.Region[LVCS_MEMREGION_TEMPORARY_FAST].pBaseAddress
[all...]
H A DLVM_Private.h129 void *pBaseAddress; /* Pointer to the region base address */ member in struct:__anon385
/frameworks/base/media/libeffects/lvm/lib/Common/lib/
H A DLVM_Types.h156 void *pBaseAddress; /* Pointer to the region base address */ member in struct:__anon414
/frameworks/base/media/libeffects/lvm/lib/SpectrumAnalyzer/lib/
H A DLVPSA.h94 void *pBaseAddress; /* Pointer to the region base address */ member in struct:__anon452
/frameworks/base/media/libeffects/lvm/lib/StereoWidening/lib/
H A DLVCS.h187 void *pBaseAddress; /* Pointer to the region base address */ member in struct:__anon466
/frameworks/base/media/libeffects/lvm/lib/Bass/lib/
H A DLVDBE.h229 void *pBaseAddress; /* Pointer to the region base address */ member in struct:__anon358
/frameworks/base/media/libeffects/lvm/lib/Eq/lib/
H A DLVEQNB.h231 void *pBaseAddress; /* Pointer to the region base address */ member in struct:__anon432
/frameworks/base/media/libeffects/lvm/wrapper/Reverb/
H A DEffectReverb.cpp594 if (MemTab.Region[i].pBaseAddress != NULL){
596 MemTab.Region[i].Size, i, MemTab.Region[i].pBaseAddress);
598 free(MemTab.Region[i].pBaseAddress);
601 MemTab.Region[i].Size, i, MemTab.Region[i].pBaseAddress);
605 MemTab.Region[i].Size, i, MemTab.Region[i].pBaseAddress);
776 MemTab.Region[i].pBaseAddress = malloc(MemTab.Region[i].Size);
778 if (MemTab.Region[i].pBaseAddress == LVM_NULL){
784 MemTab.Region[i].Size, i, MemTab.Region[i].pBaseAddress);
794 if (MemTab.Region[i].pBaseAddress == LVM_NULL){
800 MemTab.Region[i].Size, i, MemTab.Region[i].pBaseAddress);
[all...]
/frameworks/base/media/libeffects/lvm/wrapper/Bundle/
H A DEffectBundle.cpp590 MemTab.Region[i].pBaseAddress = malloc(MemTab.Region[i].Size);
592 if (MemTab.Region[i].pBaseAddress == LVM_NULL){
598 MemTab.Region[i].Size, i, MemTab.Region[i].pBaseAddress);
608 if (MemTab.Region[i].pBaseAddress == LVM_NULL){
614 MemTab.Region[i].Size, i, MemTab.Region[i].pBaseAddress);
615 free(MemTab.Region[i].pBaseAddress);
921 if (MemTab.Region[i].pBaseAddress != NULL){
923 MemTab.Region[i].Size, i, MemTab.Region[i].pBaseAddress);
925 free(MemTab.Region[i].pBaseAddress);
928 MemTab.Region[i].Size, i, MemTab.Region[i].pBaseAddress);
[all...]

Completed in 1382 milliseconds