Lines Matching refs:address

83 void L1CACHE_InvalidateCodeCacheByRange(uint32_t address, uint32_t size_byte)  in L1CACHE_InvalidateCodeCacheByRange()  argument
85 uint32_t endAddr = address + size_byte; in L1CACHE_InvalidateCodeCacheByRange()
88 uint32_t startAddr = address & ~((uint32_t)L1CODEBUSCACHE_LINESIZE_BYTE - 1U); in L1CACHE_InvalidateCodeCacheByRange()
135 void L1CACHE_CleanCodeCacheByRange(uint32_t address, uint32_t size_byte) in L1CACHE_CleanCodeCacheByRange() argument
137 uint32_t endAddr = address + size_byte; in L1CACHE_CleanCodeCacheByRange()
140 uint32_t startAddr = address & ~((uint32_t)L1CODEBUSCACHE_LINESIZE_BYTE - 1U); in L1CACHE_CleanCodeCacheByRange()
188 void L1CACHE_CleanInvalidateCodeCacheByRange(uint32_t address, uint32_t size_byte) in L1CACHE_CleanInvalidateCodeCacheByRange() argument
190 uint32_t endAddr = address + size_byte; in L1CACHE_CleanInvalidateCodeCacheByRange()
193 uint32_t startAddr = address & ~((uint32_t)L1CODEBUSCACHE_LINESIZE_BYTE - 1U); in L1CACHE_CleanInvalidateCodeCacheByRange()
272 void L1CACHE_InvalidateSystemCacheByRange(uint32_t address, uint32_t size_byte) in L1CACHE_InvalidateSystemCacheByRange() argument
274 uint32_t endAddr = address + size_byte; in L1CACHE_InvalidateSystemCacheByRange()
277address & ~((uint32_t)L1SYSTEMBUSCACHE_LINESIZE_BYTE - 1U); /* Align address to cache line size */ in L1CACHE_InvalidateSystemCacheByRange()
324 void L1CACHE_CleanSystemCacheByRange(uint32_t address, uint32_t size_byte) in L1CACHE_CleanSystemCacheByRange() argument
326 uint32_t endAddr = address + size_byte; in L1CACHE_CleanSystemCacheByRange()
329address & ~((uint32_t)L1SYSTEMBUSCACHE_LINESIZE_BYTE - 1U); /* Align address to cache line size. */ in L1CACHE_CleanSystemCacheByRange()
377 void L1CACHE_CleanInvalidateSystemCacheByRange(uint32_t address, uint32_t size_byte) in L1CACHE_CleanInvalidateSystemCacheByRange() argument
379 uint32_t endAddr = address + size_byte; in L1CACHE_CleanInvalidateSystemCacheByRange()
382address & ~((uint32_t)L1SYSTEMBUSCACHE_LINESIZE_BYTE - 1U); /* Align address to cache line size. */ in L1CACHE_CleanInvalidateSystemCacheByRange()
411 void L1CACHE_InvalidateICacheByRange(uint32_t address, uint32_t size_byte) in L1CACHE_InvalidateICacheByRange() argument
414 uint32_t endAddr = address + size_byte; in L1CACHE_InvalidateICacheByRange()
419 L1CACHE_InvalidateCodeCacheByRange(address, size); in L1CACHE_InvalidateICacheByRange()
421 else if (address <= L1CACHE_CODEBUSADDR_BOUNDARY) in L1CACHE_InvalidateICacheByRange()
423 size = L1CACHE_CODEBUSADDR_BOUNDARY - address; in L1CACHE_InvalidateICacheByRange()
424 L1CACHE_InvalidateCodeCacheByRange(address, size); in L1CACHE_InvalidateICacheByRange()
433 L1CACHE_InvalidateSystemCacheByRange(address, size); in L1CACHE_InvalidateICacheByRange()
446 void L1CACHE_CleanDCacheByRange(uint32_t address, uint32_t size_byte) in L1CACHE_CleanDCacheByRange() argument
449 uint32_t endAddr = address + size_byte; in L1CACHE_CleanDCacheByRange()
454 L1CACHE_CleanCodeCacheByRange(address, size); in L1CACHE_CleanDCacheByRange()
456 else if (address <= L1CACHE_CODEBUSADDR_BOUNDARY) in L1CACHE_CleanDCacheByRange()
458 size = L1CACHE_CODEBUSADDR_BOUNDARY - address; in L1CACHE_CleanDCacheByRange()
459 L1CACHE_CleanCodeCacheByRange(address, size); in L1CACHE_CleanDCacheByRange()
468 L1CACHE_CleanSystemCacheByRange(address, size); in L1CACHE_CleanDCacheByRange()
481 void L1CACHE_CleanInvalidateDCacheByRange(uint32_t address, uint32_t size_byte) in L1CACHE_CleanInvalidateDCacheByRange() argument
484 uint32_t endAddr = address + size_byte; in L1CACHE_CleanInvalidateDCacheByRange()
489 L1CACHE_CleanInvalidateCodeCacheByRange(address, size); in L1CACHE_CleanInvalidateDCacheByRange()
491 else if (address <= L1CACHE_CODEBUSADDR_BOUNDARY) in L1CACHE_CleanInvalidateDCacheByRange()
493 size = L1CACHE_CODEBUSADDR_BOUNDARY - address; in L1CACHE_CleanInvalidateDCacheByRange()
494 L1CACHE_CleanInvalidateCodeCacheByRange(address, size); in L1CACHE_CleanInvalidateDCacheByRange()
503 L1CACHE_CleanInvalidateSystemCacheByRange(address, size); in L1CACHE_CleanInvalidateDCacheByRange()