Lines Matching refs:size

80 void rt_hw_cpu_icache_invalidate_local(void *addr, int size)  in rt_hw_cpu_icache_invalidate_local()  argument
82 icache_inv_range((unsigned long)addr, (unsigned long)((unsigned char *)addr + size)); in rt_hw_cpu_icache_invalidate_local()
86 void rt_hw_cpu_dcache_invalidate_local(void *addr, int size) in rt_hw_cpu_dcache_invalidate_local() argument
88 dcache_inv_range((unsigned long)addr, (unsigned long)((unsigned char *)addr + size)); in rt_hw_cpu_dcache_invalidate_local()
92 void rt_hw_cpu_dcache_clean_local(void *addr, int size) in rt_hw_cpu_dcache_clean_local() argument
94 dcache_wb_range((unsigned long)addr, (unsigned long)((unsigned char *)addr + size)); in rt_hw_cpu_dcache_clean_local()
98 void rt_hw_cpu_dcache_clean_invalidate_local(void *addr, int size) in rt_hw_cpu_dcache_clean_invalidate_local() argument
100 dcache_wbinv_range((unsigned long)addr, (unsigned long)((unsigned char *)addr + size)); in rt_hw_cpu_dcache_clean_invalidate_local()
104 void rt_hw_cpu_dcachel1_clean_local(void *addr, int size) in rt_hw_cpu_dcachel1_clean_local() argument
116 void rt_hw_cpu_icache_ops(int ops, void *addr, int size) in rt_hw_cpu_icache_ops() argument
120 rt_hw_cpu_icache_invalidate(addr, size); in rt_hw_cpu_icache_ops()
124 void rt_hw_cpu_dcache_ops(int ops, void *addr, int size) in rt_hw_cpu_dcache_ops() argument
128 rt_hw_cpu_dcache_clean(addr, size); in rt_hw_cpu_dcache_ops()
132 rt_hw_cpu_dcache_invalidate(addr, size); in rt_hw_cpu_dcache_ops()
136 void rt_hw_sync_cache_local(void *addr, int size) in rt_hw_sync_cache_local() argument
138 rt_hw_cpu_dcachel1_clean_local(addr, size); in rt_hw_sync_cache_local()
139 rt_hw_cpu_icache_invalidate_local(addr, size); in rt_hw_sync_cache_local()