HomeSort by relevance Sort by last modified time
    Searched refs:MemoryTable (Results 1 - 24 of 24) sorted by null

  /frameworks/av/media/libeffects/lvm/lib/StereoWidening/src/
LVCS_Equaliser.c 64 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;
LVCS_ReverbGenerator.c 69 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;
LVCS_StereoEnhancer.c 60 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;
LVCS_Init.c 109 *pMemoryTable = pInstance->MemoryTable;
176 pInstance->MemoryTable = *pMemoryTable;
LVCS_Private.h 108 LVCS_MemTab_t MemoryTable; /* Instance memory allocation table */
LVCS_Process.c 77 LVM_INT16 *pScratch = (LVM_INT16 *)pInstance->MemoryTable.Region[LVCS_MEMREGION_TEMPORARY_FAST].pBaseAddress;
  /frameworks/av/media/libeffects/lvm/lib/Bass/src/
LVDBE_Private.h 106 LVDBE_MemTab_t MemoryTable; /* Instance memory allocation table */
LVDBE_Init.c 108 *pMemoryTable = pInstance->MemoryTable;
197 pInstance->MemoryTable = *pMemoryTable;
LVDBE_Process.c 83 LVM_INT32 *pScratch = (LVM_INT32 *)pInstance->MemoryTable.Region[LVDBE_MEMREGION_SCRATCH].pBaseAddress;
  /frameworks/av/media/libeffects/lvm/lib/Eq/src/
LVEQNB_Private.h 82 LVEQNB_MemTab_t MemoryTable; /* Instance memory allocation table */
LVEQNB_Init.c 146 *pMemoryTable = pInstance->MemoryTable;
243 pInstance->MemoryTable = *pMemoryTable;
  /frameworks/av/media/libeffects/lvm/lib/SpectrumAnalyzer/src/
LVPSA_Private.h 93 LVPSA_MemTab_t MemoryTable;
LVPSA_Init.c 111 pLVPSA_Inst->MemoryTable.Region[ii] = pMemoryTable->Region[ii];
LVPSA_Memory.c 164 *pMemoryTable = pLVPSA_Inst->MemoryTable;
LVPSA_Process.c 71 pScratch = (LVM_INT16*)pLVPSA_Inst->MemoryTable.Region[LVPSA_MEMREGION_SCRATCH].pBaseAddress;
  /frameworks/av/media/libeffects/lvm/lib/Reverb/src/
LVREV_Private.h 125 LVREV_MemoryTable_st MemoryTable; /* Memory table */
LVREV_GetMemoryTable.c 238 *pMemoryTable = pLVREV_Private->MemoryTable;
LVREV_GetInstanceHandle.c 124 pLVREV_Private->MemoryTable = *pMemoryTable;
  /frameworks/av/media/libeffects/lvm/lib/Bundle/src/
LVM_Private.h 172 LVM_MemTab_t MemoryTable; /* Instance memory allocation table */
LVM_Init.c 92 *pMemoryTable = pInstance->MemoryTable;
510 pInstance->MemoryTable = *pMemoryTable;
    [all...]
  /external/lldb/source/Plugins/SymbolFile/DWARF/
HashedNameToDIE.h 584 class MemoryTable : public MappedHash::MemoryTable<uint32_t, DWARFMappedHash::Header, DIEInfoArray>
588 MemoryTable (lldb_private::DataExtractor &table_data,
591 MappedHash::MemoryTable<uint32_t, Header, DIEInfoArray> (table_data),
599 ~MemoryTable ()
    [all...]
SymbolFileDWARF.h 419 const DWARFMappedHash::MemoryTable &memory_table,
586 std::unique_ptr<DWARFMappedHash::MemoryTable> m_apple_names_ap;
587 std::unique_ptr<DWARFMappedHash::MemoryTable> m_apple_types_ap;
588 std::unique_ptr<DWARFMappedHash::MemoryTable> m_apple_namespaces_ap;
589 std::unique_ptr<DWARFMappedHash::MemoryTable> m_apple_objc_ap;
SymbolFileDWARF.cpp 350 // DWARFMappedHash::MemoryTable *apple_types = m_apple_types_ap.get();
558 m_apple_names_ap.reset (new DWARFMappedHash::MemoryTable (m_data_apple_names, get_debug_str_data(), ".apple_names"));
567 m_apple_types_ap.reset (new DWARFMappedHash::MemoryTable (m_data_apple_types, get_debug_str_data(), ".apple_types"));
577 m_apple_namespaces_ap.reset (new DWARFMappedHash::MemoryTable (m_data_apple_namespaces, get_debug_str_data(), ".apple_namespaces"));
587 m_apple_objc_ap.reset (new DWARFMappedHash::MemoryTable (m_data_apple_objc, get_debug_str_data(), ".apple_objc"));
    [all...]
  /external/lldb/include/lldb/Core/
MappedHash.h 355 class MemoryTable
376 MemoryTable (lldb_private::DataExtractor &data) :
392 ~MemoryTable ()

Completed in 205 milliseconds