Lines Matching refs:bytes
54 Malloc(size_t bytes, const char *file, int line) in Malloc() argument
59 bytes += MALLOCALIGN + 1; in Malloc()
61 bytes += MALLOCALIGN; in Malloc()
64 while ((res = znalloc(&MallocPool, bytes)) == NULL) { in Malloc()
65 int incr = (bytes + BLKEXTENDMASK) & ~BLKEXTENDMASK; in Malloc()
80 res->ga_Bytes = bytes; in Malloc()
82 *((signed char *)res + bytes - 1) = -2; in Malloc()
91 size_t bytes; in Free() local
117 bytes = res->ga_Bytes; in Free()
118 zfree(&MallocPool, res, bytes); in Free()
129 uintptr_t bytes = (uintptr_t)n1 * (uintptr_t)n2; in Calloc() local
132 if ((res = Malloc(bytes, file, line)) != NULL) { in Calloc()
133 bzero(res, bytes); in Calloc()