Searched refs:chunksz (Results 1 – 4 of 4) sorted by relevance
/openbmc/u-boot/common/ |
H A D | image.c | 526 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 D | bootm.c | 995 void memmove_wd(void *to, void *from, size_t len, ulong chunksz) in memmove_wd() argument
|
/openbmc/linux/lib/ |
H A D | vsprintf.c | 1199 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 D | image.h | 841 void memmove_wd(void *to, void *from, size_t len, ulong chunksz);
|