malloc             70 user/include/stdlib.h void *malloc(size_t size);
malloc            163 user/sbin/sfsck/sfsck.c 	x = malloc(len);
malloc            178 user/testbin/malloctest/malloctest.c 	x = malloc(BIGSIZE);
malloc            241 user/testbin/malloctest/malloctest.c 	for (size = HUGESIZE; (x = malloc(size))==NULL; size = size/2) {
malloc            264 user/testbin/malloctest/malloctest.c 	x = malloc(size);
malloc            308 user/testbin/malloctest/malloctest.c 	while ((tmp = malloc(sizeof(struct test3))) != NULL) {
malloc            327 user/testbin/malloctest/malloctest.c 	x = malloc(SMALLSIZE);
malloc            333 user/testbin/malloctest/malloctest.c 	x = malloc(MEDIUMSIZE);
malloc            339 user/testbin/malloctest/malloctest.c 	x = malloc(BIGSIZE);
malloc            366 user/testbin/malloctest/malloctest.c 	x = malloc(MEDIUMSIZE);
malloc            400 user/testbin/malloctest/malloctest.c 	x = malloc(SMALLSIZE);
malloc            406 user/testbin/malloctest/malloctest.c 	y = malloc(MEDIUMSIZE);
malloc            484 user/testbin/malloctest/malloctest.c 	z = malloc(zsize);
malloc            538 user/testbin/malloctest/malloctest.c 			ptrs[n] = malloc(size);