Searched refs:sz (Results 1 – 5 of 5) sorted by relevance
33 void *alloc(unsigned sz) in alloc() argument38 __alloc_next = (__alloc_next + sz + 31) & (~31); in alloc()43 void *alloc_page_aligned(unsigned sz) in alloc_page_aligned() argument47 return alloc(sz); in alloc_page_aligned()
50 int snprintf(char *str, int sz, const char *fmt, ...) in snprintf() argument55 if(sz < 1) return 0; in snprintf()57 ctxt.avail = sz - 1; in snprintf()
87 void *alloc(unsigned sz); /* alloc 32byte aligned memory */88 void *alloc_page_aligned(unsigned sz);
182 static void tag_dump(unsigned tag, void *data, unsigned sz, void *cookie) in tag_dump() argument184 dprintf("tag type=%x data=%x size=%x\n", tag, (unsigned) data, sz); in tag_dump()
55 unsigned sz; in main() local