Lines Matching refs:lsize
343 #define __BUILD_BLAST_CACHE(pfx, desc, indexop, hitop, lsize) \ argument
344 static inline void blast_##pfx##cache##lsize(void) \
356 for (addr = start; addr < end; addr += lsize * 32) \
357 cache##lsize##_unroll32(addr|ws, indexop); \
362 static inline void blast_##pfx##cache##lsize##_page(unsigned long page) \
370 cache##lsize##_unroll32(start, hitop); \
371 start += lsize * 32; \
377 static inline void blast_##pfx##cache##lsize##_page_indexed(unsigned long page) \
390 for (addr = start; addr < end; addr += lsize * 32) \
391 cache##lsize##_unroll32(addr|ws, indexop); \
419 unsigned long lsize = cpu_##desc##_line_size(); \
420 unsigned long addr = start & ~(lsize - 1); \
421 unsigned long aend = (end - 1) & ~(lsize - 1); \
429 addr += lsize; \