Home
last modified time | relevance | path

Searched refs:chunksz (Results 1 – 4 of 4) sorted by relevance

/openbmc/u-boot/common/
H A Dimage.c526 void memmove_wd(void *to, void *from, size_t len, ulong chunksz) in memmove_wd() argument
537 size_t tail = (len > chunksz) ? chunksz : len; in memmove_wd()
H A Dbootm.c995 void memmove_wd(void *to, void *from, size_t len, ulong chunksz) in memmove_wd() argument
/openbmc/linux/lib/
H A Dvsprintf.c1199 int i, chunksz; in bitmap_string() local
1208 chunksz = nr_bits & (CHUNKSZ - 1); in bitmap_string()
1209 if (chunksz == 0) in bitmap_string()
1210 chunksz = CHUNKSZ; in bitmap_string()
1217 chunkmask = ((1ULL << chunksz) - 1); in bitmap_string()
1229 spec.field_width = DIV_ROUND_UP(chunksz, 4); in bitmap_string()
1232 chunksz = CHUNKSZ; in bitmap_string()
/openbmc/u-boot/include/
H A Dimage.h841 void memmove_wd(void *to, void *from, size_t len, ulong chunksz);