newmax             82 kern/lib/array.c 	unsigned newmax;
newmax             86 kern/lib/array.c 		newmax = a->max;
newmax             87 kern/lib/array.c 		while (num > newmax) {
newmax             88 kern/lib/array.c 			newmax = newmax ? newmax*2 : 4;
newmax             98 kern/lib/array.c 		newptr = kmalloc(newmax*sizeof(*a->v));
newmax            105 kern/lib/array.c 		a->max = newmax;
newmax            391 user/sbin/sfsck/sfsck.c 		int newmax = (maxinodes+1)*2;
newmax            392 user/sbin/sfsck/sfsck.c 		void *p = domalloc(newmax * sizeof(struct inodememory));