Home
last modified time | relevance | path

Searched refs:pBaseAddress (Results 1 – 23 of 23) sorted by relevance

/frameworks/av/media/libeffects/lvm/lib/Common/src/
DInstAlloc.c89 StartAddr = (uintptr_t)pMemoryTable->Region[LVM_PERSISTENT_SLOW_DATA].pBaseAddress; in InstAlloc_InitAll()
95 StartAddr = (uintptr_t)pMemoryTable->Region[LVM_PERSISTENT_FAST_DATA].pBaseAddress; in InstAlloc_InitAll()
101 StartAddr = (uintptr_t)pMemoryTable->Region[LVM_PERSISTENT_FAST_COEF].pBaseAddress; in InstAlloc_InitAll()
107 StartAddr = (uintptr_t)pMemoryTable->Region[LVM_TEMPORARY_FAST].pBaseAddress; in InstAlloc_InitAll()
152 pMemoryTable->Region[LVM_PERSISTENT_SLOW_DATA].pBaseAddress = LVM_NULL; in InstAlloc_AddMemberAll()
158 pMemoryTable->Region[LVM_PERSISTENT_FAST_DATA].pBaseAddress = LVM_NULL; in InstAlloc_AddMemberAll()
164 pMemoryTable->Region[LVM_PERSISTENT_FAST_COEF].pBaseAddress = LVM_NULL; in InstAlloc_AddMemberAll()
170 pMemoryTable->Region[LVM_TEMPORARY_FAST].pBaseAddress = LVM_NULL; in InstAlloc_AddMemberAll()
/frameworks/av/media/libeffects/lvm/lib/Bass/src/
DLVDBE_Init.c78 pMemoryTable->Region[LVDBE_MEMREGION_INSTANCE].pBaseAddress = LVM_NULL; in LVDBE_Memory()
86 pMemoryTable->Region[LVDBE_MEMREGION_PERSISTENT_DATA].pBaseAddress = LVM_NULL; in LVDBE_Memory()
94 pMemoryTable->Region[LVDBE_MEMREGION_PERSISTENT_COEF].pBaseAddress = LVM_NULL; in LVDBE_Memory()
103 pMemoryTable->Region[LVDBE_MEMREGION_SCRATCH].pBaseAddress = LVM_NULL; in LVDBE_Memory()
165 *phInstance = (LVDBE_Handle_t)pMemoryTable->Region[LVDBE_MEMREGION_INSTANCE].pBaseAddress; in LVDBE_Init()
177 if (pMemoryTable->Region[i].pBaseAddress==LVM_NULL) in LVDBE_Init()
181 … if (((uintptr_t)pMemoryTable->Region[i].pBaseAddress % pMemoryTable->Region[i].Alignment)!=0){ in LVDBE_Init()
216 pInstance->pData = pMemoryTable->Region[LVDBE_MEMREGION_PERSISTENT_DATA].pBaseAddress; in LVDBE_Init()
217 pInstance->pCoef = pMemoryTable->Region[LVDBE_MEMREGION_PERSISTENT_COEF].pBaseAddress; in LVDBE_Init()
DLVDBE_Process.c83 … *pScratch = (LVM_INT32 *)pInstance->MemoryTable.Region[LVDBE_MEMREGION_SCRATCH].pBaseAddress; in LVDBE_Process()
/frameworks/av/media/libeffects/lvm/lib/Eq/src/
DLVEQNB_Init.c92 pMemoryTable->Region[LVEQNB_MEMREGION_INSTANCE].pBaseAddress = LVM_NULL; in LVEQNB_Memory()
113 pMemoryTable->Region[LVEQNB_MEMREGION_PERSISTENT_DATA].pBaseAddress = LVM_NULL; in LVEQNB_Memory()
129 pMemoryTable->Region[LVEQNB_MEMREGION_PERSISTENT_COEF].pBaseAddress = LVM_NULL; in LVEQNB_Memory()
141 pMemoryTable->Region[LVEQNB_MEMREGION_SCRATCH].pBaseAddress = LVM_NULL; in LVEQNB_Memory()
212 if (pMemoryTable->Region[i].pBaseAddress==LVM_NULL) in LVEQNB_Init()
223 InstAlloc_Init(&AllocMem, pMemoryTable->Region[LVEQNB_MEMREGION_INSTANCE].pBaseAddress); in LVEQNB_Init()
249 pMemoryTable->Region[LVEQNB_MEMREGION_PERSISTENT_COEF].pBaseAddress); in LVEQNB_Init()
260 pMemoryTable->Region[LVEQNB_MEMREGION_PERSISTENT_DATA].pBaseAddress); in LVEQNB_Init()
280 pMemoryTable->Region[LVEQNB_MEMREGION_SCRATCH].pBaseAddress); in LVEQNB_Init()
/frameworks/av/media/libeffects/lvm/lib/Bundle/src/
DLVM_Init.c367 pMemoryTable->Region[LVM_MEMREGION_PERSISTENT_SLOW_DATA].pBaseAddress = LVM_NULL; in LVM_GetMemoryTable()
371 pMemoryTable->Region[LVM_MEMREGION_PERSISTENT_FAST_DATA].pBaseAddress = LVM_NULL; in LVM_GetMemoryTable()
379 pMemoryTable->Region[LVM_MEMREGION_PERSISTENT_FAST_COEF].pBaseAddress = LVM_NULL; in LVM_GetMemoryTable()
389 pMemoryTable->Region[LVM_MEMREGION_TEMPORARY_FAST].pBaseAddress = LVM_NULL; in LVM_GetMemoryTable()
450 (pMemoryTable->Region[i].pBaseAddress==LVM_NULL)) in LVM_GetInstanceHandle()
495 pMemoryTable->Region[i].pBaseAddress); in LVM_GetInstanceHandle()
667 … CS_MemTab.Region[LVCS_MEMREGION_PERSISTENT_SLOW_DATA].pBaseAddress = &pInstance->CS_Instance; in LVM_GetInstanceHandle()
668 …CS_MemTab.Region[LVCS_MEMREGION_PERSISTENT_FAST_DATA].pBaseAddress = (void *)InstAlloc_AddMember(&… in LVM_GetInstanceHandle()
670 …CS_MemTab.Region[LVCS_MEMREGION_PERSISTENT_FAST_COEF].pBaseAddress = (void *)InstAlloc_AddMember(&… in LVM_GetInstanceHandle()
672 …CS_MemTab.Region[LVCS_MEMREGION_TEMPORARY_FAST].pBaseAddress = (void *)InstAlloc_AddMember(&… in LVM_GetInstanceHandle()
[all …]
DLVM_Private.h129 void *pBaseAddress; /* Pointer to the region base address */ member
/frameworks/av/media/libeffects/lvm/lib/StereoWidening/src/
DLVCS_Init.c82 pMemoryTable->Region[LVCS_MEMREGION_PERSISTENT_SLOW_DATA].pBaseAddress = LVM_NULL; in LVCS_Memory()
89 pMemoryTable->Region[LVCS_MEMREGION_PERSISTENT_FAST_DATA].pBaseAddress = LVM_NULL; in LVCS_Memory()
96 pMemoryTable->Region[LVCS_MEMREGION_PERSISTENT_FAST_COEF].pBaseAddress = LVM_NULL; in LVCS_Memory()
104 pMemoryTable->Region[LVCS_MEMREGION_TEMPORARY_FAST].pBaseAddress = LVM_NULL; in LVCS_Memory()
163 …phInstance = (LVCS_Handle_t)pMemoryTable->Region[LVCS_MEMREGION_PERSISTENT_SLOW_DATA].pBaseAddress; in LVCS_Init()
DLVCS_ReverbGenerator.c69 … = (LVCS_Data_t *)pInstance->MemoryTable.Region[LVCS_MEMREGION_PERSISTENT_FAST_DATA].pBaseAddress; in LVCS_ReverbGeneratorInit()
70 …CS_Coefficient_t *)pInstance->MemoryTable.Region[LVCS_MEMREGION_PERSISTENT_FAST_COEF].pBaseAddress; in LVCS_ReverbGeneratorInit()
191 …CS_Coefficient_t *)pInstance->MemoryTable.Region[LVCS_MEMREGION_PERSISTENT_FAST_COEF].pBaseAddress; in LVCS_ReverbGenerator()
192 …pScratch = (LVM_INT16 *)pInstance->MemoryTable.Region[LVCS_MEMREGION_TEMPORARY_FAST].pBaseAddress; in LVCS_ReverbGenerator()
DLVCS_StereoEnhancer.c60 … = (LVCS_Data_t *)pInstance->MemoryTable.Region[LVCS_MEMREGION_PERSISTENT_FAST_DATA].pBaseAddress; in LVCS_SEnhancerInit()
61 …CS_Coefficient_t *)pInstance->MemoryTable.Region[LVCS_MEMREGION_PERSISTENT_FAST_COEF].pBaseAddress; in LVCS_SEnhancerInit()
189 …CS_Coefficient_t *)pInstance->MemoryTable.Region[LVCS_MEMREGION_PERSISTENT_FAST_COEF].pBaseAddress; in LVCS_StereoEnhancer()
190 …pScratch = (LVM_INT16 *)pInstance->MemoryTable.Region[LVCS_MEMREGION_TEMPORARY_FAST].pBaseAddress; in LVCS_StereoEnhancer()
DLVCS_Equaliser.c64 … = (LVCS_Data_t *)pInstance->MemoryTable.Region[LVCS_MEMREGION_PERSISTENT_FAST_DATA].pBaseAddress; in LVCS_EqualiserInit()
65 …CS_Coefficient_t *)pInstance->MemoryTable.Region[LVCS_MEMREGION_PERSISTENT_FAST_COEF].pBaseAddress; in LVCS_EqualiserInit()
143 …CS_Coefficient_t *)pInstance->MemoryTable.Region[LVCS_MEMREGION_PERSISTENT_FAST_COEF].pBaseAddress; in LVCS_Equaliser()
DLVCS_Process.c77 …pScratch = (LVM_INT16 *)pInstance->MemoryTable.Region[LVCS_MEMREGION_TEMPORARY_FAST].pBaseAddress; in LVCS_Process_CS()
/frameworks/av/media/libeffects/lvm/lib/Reverb/src/
DLVREV_GetInstanceHandle.c76 if (pMemoryTable->Region[i].pBaseAddress==LVM_NULL) in LVREV_GetInstanceHandle()
103 InstAlloc_Init(&SlowData, pMemoryTable->Region[LVM_PERSISTENT_SLOW_DATA].pBaseAddress); in LVREV_GetInstanceHandle()
104 InstAlloc_Init(&FastData, pMemoryTable->Region[LVM_PERSISTENT_FAST_DATA].pBaseAddress); in LVREV_GetInstanceHandle()
105 InstAlloc_Init(&FastCoef, pMemoryTable->Region[LVM_PERSISTENT_FAST_COEF].pBaseAddress); in LVREV_GetInstanceHandle()
106 InstAlloc_Init(&Temporary, pMemoryTable->Region[LVM_TEMPORARY_FAST].pBaseAddress); in LVREV_GetInstanceHandle()
111 …LoadConst_16(0, (LVM_INT16 *)pMemoryTable->Region[LVM_PERSISTENT_SLOW_DATA].pBaseAddress, (LVM_INT… in LVREV_GetInstanceHandle()
112 …LoadConst_16(0, (LVM_INT16 *)pMemoryTable->Region[LVM_PERSISTENT_FAST_DATA].pBaseAddress, (LVM_INT… in LVREV_GetInstanceHandle()
113 …LoadConst_16(0, (LVM_INT16 *)pMemoryTable->Region[LVM_PERSISTENT_FAST_COEF].pBaseAddress, (LVM_INT… in LVREV_GetInstanceHandle()
114 …LoadConst_16(0, (LVM_INT16 *)pMemoryTable->Region[LVM_TEMPORARY_FAST].pBaseAddress, (LVM_INT16)((p… in LVREV_GetInstanceHandle()
DLVREV_GetMemoryTable.c155 pMemoryTable->Region[LVM_PERSISTENT_SLOW_DATA].pBaseAddress = LVM_NULL; in LVREV_GetMemoryTable()
183 pMemoryTable->Region[LVM_PERSISTENT_FAST_DATA].pBaseAddress = LVM_NULL; in LVREV_GetMemoryTable()
192 pMemoryTable->Region[LVM_PERSISTENT_FAST_COEF].pBaseAddress = LVM_NULL; in LVREV_GetMemoryTable()
227 pMemoryTable->Region[LVM_TEMPORARY_FAST].pBaseAddress = LVM_NULL; in LVREV_GetMemoryTable()
/frameworks/av/media/libeffects/lvm/lib/SpectrumAnalyzer/src/
DLVPSA_Init.c88 InstAlloc_Init( &Instance , pMemoryTable->Region[LVPSA_MEMREGION_INSTANCE].pBaseAddress); in LVPSA_Init()
89 InstAlloc_Init( &Scratch , pMemoryTable->Region[LVPSA_MEMREGION_SCRATCH].pBaseAddress); in LVPSA_Init()
90 … InstAlloc_Init( &Data , pMemoryTable->Region[LVPSA_MEMREGION_PERSISTENT_DATA].pBaseAddress); in LVPSA_Init()
91 … InstAlloc_Init( &Coef , pMemoryTable->Region[LVPSA_MEMREGION_PERSISTENT_COEF].pBaseAddress); in LVPSA_Init()
107 if (pMemoryTable->Region[ii].pBaseAddress==LVM_NULL) in LVPSA_Init()
DLVPSA_Memory.c132 pMemoryTable->Region[LVPSA_MEMREGION_INSTANCE].pBaseAddress = LVM_NULL; in LVPSA_Memory()
140 pMemoryTable->Region[LVPSA_MEMREGION_SCRATCH].pBaseAddress = LVM_NULL; in LVPSA_Memory()
149 pMemoryTable->Region[LVPSA_MEMREGION_PERSISTENT_COEF].pBaseAddress = LVM_NULL; in LVPSA_Memory()
158 pMemoryTable->Region[LVPSA_MEMREGION_PERSISTENT_DATA].pBaseAddress = LVM_NULL; in LVPSA_Memory()
DLVPSA_Process.c71 pScratch = (LVM_INT16*)pLVPSA_Inst->MemoryTable.Region[LVPSA_MEMREGION_SCRATCH].pBaseAddress; in LVPSA_Process()
/frameworks/av/media/libeffects/lvm/wrapper/Reverb/
DEffectReverb.cpp574 if (MemTab.Region[i].pBaseAddress != NULL){ in Reverb_free()
576 MemTab.Region[i].Size, i, MemTab.Region[i].pBaseAddress); in Reverb_free()
578 free(MemTab.Region[i].pBaseAddress); in Reverb_free()
581 MemTab.Region[i].Size, i, MemTab.Region[i].pBaseAddress); in Reverb_free()
585 MemTab.Region[i].Size, i, MemTab.Region[i].pBaseAddress); in Reverb_free()
773 MemTab.Region[i].pBaseAddress = malloc(MemTab.Region[i].Size); in Reverb_init()
775 if (MemTab.Region[i].pBaseAddress == LVM_NULL){ in Reverb_init()
782 MemTab.Region[i].Size, i, MemTab.Region[i].pBaseAddress); in Reverb_init()
792 if (MemTab.Region[i].pBaseAddress == LVM_NULL){ in Reverb_init()
798 MemTab.Region[i].Size, i, MemTab.Region[i].pBaseAddress); in Reverb_init()
[all …]
/frameworks/av/media/libeffects/lvm/lib/Common/lib/
DLVM_Types.h157 void *pBaseAddress; /* Pointer to the region base address */ member
/frameworks/av/media/libeffects/lvm/lib/SpectrumAnalyzer/lib/
DLVPSA.h94 …void *pBaseAddress; /* Pointer to the region base address … member
/frameworks/av/media/libeffects/lvm/lib/StereoWidening/lib/
DLVCS.h187 void *pBaseAddress; /* Pointer to the region base address */ member
/frameworks/av/media/libeffects/lvm/lib/Eq/lib/
DLVEQNB.h231 void *pBaseAddress; /* Pointer to the region base address */ member
/frameworks/av/media/libeffects/lvm/lib/Bass/lib/
DLVDBE.h229 void *pBaseAddress; /* Pointer to the region base address */ member
/frameworks/av/media/libeffects/lvm/wrapper/Bundle/
DEffectBundle.cpp565 MemTab.Region[i].pBaseAddress = malloc(MemTab.Region[i].Size); in LvmBundle_init()
567 if (MemTab.Region[i].pBaseAddress == LVM_NULL){ in LvmBundle_init()
574 MemTab.Region[i].Size, i, MemTab.Region[i].pBaseAddress); in LvmBundle_init()
584 if (MemTab.Region[i].pBaseAddress == LVM_NULL){ in LvmBundle_init()
590 MemTab.Region[i].Size, i, MemTab.Region[i].pBaseAddress); in LvmBundle_init()
591 free(MemTab.Region[i].pBaseAddress); in LvmBundle_init()
1052 if (MemTab.Region[i].pBaseAddress != NULL){ in LvmEffect_free()
1054 MemTab.Region[i].Size, i, MemTab.Region[i].pBaseAddress); in LvmEffect_free()
1056 free(MemTab.Region[i].pBaseAddress); in LvmEffect_free()
1059 MemTab.Region[i].Size, i, MemTab.Region[i].pBaseAddress); in LvmEffect_free()
[all …]