Home
last modified time | relevance | path

Searched refs:sz (Results 1 – 5 of 5) sorted by relevance

/bootable/bootloader/legacy/libc/
Dmalloc.c33 void *alloc(unsigned sz) in alloc() argument
38 __alloc_next = (__alloc_next + sz + 31) & (~31); in alloc()
43 void *alloc_page_aligned(unsigned sz) in alloc_page_aligned() argument
47 return alloc(sz); in alloc_page_aligned()
Dsprintf.c50 int snprintf(char *str, int sz, const char *fmt, ...) in snprintf() argument
55 if(sz < 1) return 0; in snprintf()
57 ctxt.avail = sz - 1; in snprintf()
/bootable/bootloader/legacy/include/boot/
Dboot.h87 void *alloc(unsigned sz); /* alloc 32byte aligned memory */
88 void *alloc_page_aligned(unsigned sz);
/bootable/bootloader/legacy/usbloader/
Dmain.c182 static void tag_dump(unsigned tag, void *data, unsigned sz, void *cookie) in tag_dump() argument
184 dprintf("tag type=%x data=%x size=%x\n", tag, (unsigned) data, sz); in tag_dump()
/bootable/recovery/mtdutils/
Dflash_image.c55 unsigned sz; in main() local