Lines Matching refs:stop
111 * @stop: the stop address (exclusive)
114 static void flush_dcache_range_chunked(unsigned long start, unsigned long stop,
119 for (i = start; i < stop; i += chunk) {
120 flush_dcache_range(i, min(stop, i + chunk));
382 * @stop: the stop address (exclusive)
384 static void invalidate_icache_range(unsigned long start, unsigned long stop)
389 unsigned long size = stop - (unsigned long)addr + (bytes - 1);
406 * @stop: the stop address (exclusive)
408 void flush_icache_range(unsigned long start, unsigned long stop)
413 clean_dcache_range(start, stop);
425 invalidate_icache_range(start, stop);