Home | History | Annotate | Download | only in Ipf

Lines Matching refs:Address

22   Flushes the cache lines specified by Address and Length.  If Address is not aligned 

23 on a cache line boundary, then entire cache line containing Address is flushed.
24 If Address + Length is not aligned on a cache line boundary, then the entire cache
25 line containing Address + Length - 1 is flushed. This function may choose to flush
27 Length is 0, the no cache lines are flushed. Address is returned.
30 If Length is greater than (MAX_ADDRESS - Address + 1), then ASSERT().
32 @param Address The base address of the instruction lines to invalidate. If
33 the CPU is in a physical addressing mode, then Address is a
34 physical address. If the CPU is in a virtual addressing mode,
35 then Address is a virtual address.
39 @return Address.
45 IN VOID *Address,
49 ASSERT (Length <= MAX_ADDRESS - (UINTN)Address + 1);
50 return InternalFlushCacheRange (Address, Length);