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

1 2

  /device/linaro/bootloader/OpenPlatformPkg/Platforms/TexasInstruments/BeagleBoard/Sec/
Cache.c 42 ARM_MEMORY_REGION_DESCRIPTOR MemoryTable[5];
53 MemoryTable[0].PhysicalBase = MemoryBase;
54 MemoryTable[0].VirtualBase = MemoryBase;
55 MemoryTable[0].Length = MemoryLength;
56 MemoryTable[0].Attributes = (ARM_MEMORY_REGION_ATTRIBUTES)CacheAttributes;
59 MemoryTable[1].PhysicalBase = SOC_REGISTERS_L3_PHYSICAL_BASE;
60 MemoryTable[1].VirtualBase = SOC_REGISTERS_L3_PHYSICAL_BASE;
61 MemoryTable[1].Length = SOC_REGISTERS_L3_PHYSICAL_LENGTH;
62 MemoryTable[1].Attributes = SOC_REGISTERS_L3_ATTRIBUTES;
65 MemoryTable[2].PhysicalBase = SOC_REGISTERS_L4_PHYSICAL_BASE;
    [all...]
  /device/linaro/bootloader/edk2/BeagleBoardPkg/Sec/
Cache.c 42 ARM_MEMORY_REGION_DESCRIPTOR MemoryTable[5];
53 MemoryTable[0].PhysicalBase = MemoryBase;
54 MemoryTable[0].VirtualBase = MemoryBase;
55 MemoryTable[0].Length = MemoryLength;
56 MemoryTable[0].Attributes = (ARM_MEMORY_REGION_ATTRIBUTES)CacheAttributes;
59 MemoryTable[1].PhysicalBase = SOC_REGISTERS_L3_PHYSICAL_BASE;
60 MemoryTable[1].VirtualBase = SOC_REGISTERS_L3_PHYSICAL_BASE;
61 MemoryTable[1].Length = SOC_REGISTERS_L3_PHYSICAL_LENGTH;
62 MemoryTable[1].Attributes = SOC_REGISTERS_L3_ATTRIBUTES;
65 MemoryTable[2].PhysicalBase = SOC_REGISTERS_L4_PHYSICAL_BASE;
    [all...]
  /device/linaro/bootloader/edk2/ArmVirtPkg/Library/ArmVirtMemoryInitPeiLib/
ArmVirtMemoryInitPeiLib.c 35 ARM_MEMORY_REGION_DESCRIPTOR *MemoryTable;
41 ArmPlatformGetVirtualMemoryMap (&MemoryTable);
45 Status = ArmConfigureMmu (MemoryTable, &TranslationTableBase, &TranslationTableSize);
  /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;
  /device/linaro/bootloader/edk2/ArmPkg/Library/ArmLib/ArmV7/
ArmV7Mmu.c 266 IN ARM_MEMORY_REGION_DESCRIPTOR *MemoryTable,
294 while (MemoryTable->Length != 0) {
296 if (((UINTN)TranslationTable >= MemoryTable->PhysicalBase) && ((UINTN)TranslationTable <= MemoryTable->PhysicalBase - 1 + MemoryTable->Length)) {
297 TranslationTableAttribute = MemoryTable->Attributes;
300 FillTranslationTable (TranslationTable, MemoryTable);
301 MemoryTable++;
  /device/linaro/bootloader/edk2/ArmPlatformPkg/MemoryInitPei/
MemoryInitPeiLib.c 31 IN ARM_MEMORY_REGION_DESCRIPTOR *MemoryTable
41 Status = ArmConfigureMmu (MemoryTable, &TranslationTableBase, &TranslationTableSize);
70 ARM_MEMORY_REGION_DESCRIPTOR *MemoryTable;
80 ArmPlatformGetVirtualMemoryMap (&MemoryTable);
190 InitMmu (MemoryTable);
  /device/linaro/bootloader/edk2/ArmPkg/Library/ArmLib/AArch64/
AArch64Mmu.c 568 IN ARM_MEMORY_REGION_DESCRIPTOR *MemoryTable,
584 if(MemoryTable == NULL) {
585 ASSERT (MemoryTable != NULL);
590 MaxAddress = MemoryTable->PhysicalBase + MemoryTable->Length - 1;
591 MemoryTableEntry = MemoryTable;
691 while (MemoryTable->Length != 0) {
693 if (((UINTN)TranslationTable >= MemoryTable->PhysicalBase) &&
694 ((UINTN)TranslationTable <= MemoryTable->PhysicalBase - 1 + MemoryTable->Length)) {
    [all...]
  /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;
  /frameworks/av/media/libeffects/lvm/lib/Bundle/src/
LVM_Private.h 172 LVM_MemTab_t MemoryTable; /* Instance memory allocation table */
  /device/linaro/bootloader/edk2/ArmPkg/Include/Library/
ArmLib.h 365 IN ARM_MEMORY_REGION_DESCRIPTOR *MemoryTable,

Completed in 270 milliseconds

1 2