Searched refs:lsize (Results 1 - 4 of 4) sorted by relevance

/u-boot/arch/mips/lib/
H A Dcache.c96 #define cache_loop(start, end, lsize, ops...) do { \
97 const void *addr = (const void *)(start & ~(lsize - 1)); \
98 const void *aend = (const void *)((end - 1) & ~(lsize - 1)); \
102 if (!lsize) \
105 for (; addr <= aend; addr += lsize) { \
147 unsigned long lsize = dcache_line_size(); local
154 cache_loop(start_addr, stop, lsize, HIT_WRITEBACK_INV_D);
165 unsigned long lsize = dcache_line_size(); local
175 cache_loop(start_addr, stop, lsize, HIT_INVALIDATE_D);
/u-boot/arch/mips/mach-mtmips/mt7621/tpl/
H A Dtpl.c59 ulong lsize = CONFIG_SYS_DCACHE_LINE_SIZE; local
73 for (addr = 0; addr < CONFIG_SYS_ICACHE_SIZE; addr += lsize)
80 for (addr = 0; addr < CONFIG_SYS_DCACHE_SIZE; addr += lsize)
87 for (addr = 0; addr < (256 << 10); addr += lsize)
103 for (addr = 0; addr < CONFIG_SYS_DCACHE_SIZE; addr += lsize)
107 for (addr = 0; addr < CONFIG_SYS_ICACHE_SIZE; addr += lsize)
/u-boot/arch/mips/mach-octeon/
H A Dcvmx-range.c44 u64 lsize = size; local
47 cvmx_write64_uint64(addr_of_size(range_addr), lsize); local
48 for (i = 0; i < lsize; i++) {
/u-boot/fs/zfs/
H A Dzfs.c563 size_t lsize, psize; local
571 lsize = (BP_IS_HOLE(bp) ? 0 :
577 *size = lsize;
594 compbuf = *buf = malloc(lsize);
605 *buf = malloc(lsize);
611 err = decomp_table[comp].decomp_func(compbuf, *buf, psize, lsize);

Completed in 113 milliseconds