Lines Matching refs:lsize
580 #define __BUILD_BLAST_CACHE(pfx, desc, indexop, hitop, lsize, extra) \ argument
581 static inline void extra##blast_##pfx##cache##lsize(void) \
593 for (addr = start; addr < end; addr += lsize * 32) \
594 cache##lsize##_unroll32(addr|ws, indexop); \
599 static inline void extra##blast_##pfx##cache##lsize##_page(unsigned long page) \
607 cache##lsize##_unroll32(start, hitop); \
608 start += lsize * 32; \
614 static inline void extra##blast_##pfx##cache##lsize##_page_indexed(unsigned long page) \
627 for (addr = start; addr < end; addr += lsize * 32) \
628 cache##lsize##_unroll32(addr|ws, indexop); \
654 #define __BUILD_BLAST_USER_CACHE(pfx, desc, indexop, hitop, lsize) \ argument
655 static inline void blast_##pfx##cache##lsize##_user_page(unsigned long page) \
663 cache##lsize##_unroll32_user(start, hitop); \
664 start += lsize * 32; \
685 unsigned long lsize = cpu_##desc##_line_size(); \
686 unsigned long addr = start & ~(lsize - 1); \
687 unsigned long aend = (end - 1) & ~(lsize - 1); \
695 addr += lsize; \
712 unsigned long lsize = cpu_##desc##_line_size(); \
713 unsigned long addr = start & ~(lsize - 1); \
714 unsigned long aend = (end - 1) & ~(lsize - 1); \
723 addr += lsize; \
730 addr += lsize; \
752 #define __BUILD_BLAST_CACHE_NODE(pfx, desc, indexop, hitop, lsize) \ argument
753 static inline void blast_##pfx##cache##lsize##_node(long node) \
763 for (addr = start; addr < end; addr += lsize * 32) \
764 cache##lsize##_unroll32(addr|ws, indexop); \