key               619 user/testbin/psort/psort.c 	int key, pivot, binnum;
key               644 user/testbin/psort/psort.c 			key = workspace[i];
key               646 user/testbin/psort/psort.c 			binnum = key / pivot;
key               647 user/testbin/psort/psort.c 			if (key <= 0) {
key               648 user/testbin/psort/psort.c 				complainx("proc %d: garbage key %d", me, key);
key               649 user/testbin/psort/psort.c 				key = 0;
key               653 user/testbin/psort/psort.c 			dowrite("bin", outfds[binnum], &key, sizeof(key));
key               938 user/testbin/psort/psort.c 	int key, smallest, largest;
key               959 user/testbin/psort/psort.c 			key = workspace[i];
key               961 user/testbin/psort/psort.c 			if (key < 0) {
key               965 user/testbin/psort/psort.c 			if (key == 0) {
key               969 user/testbin/psort/psort.c 			if (key >= RANDOM_MAX) {
key               974 user/testbin/psort/psort.c 			if (key < smallest) {
key               975 user/testbin/psort/psort.c 				smallest = key;
key               977 user/testbin/psort/psort.c 			if (key > largest) {
key               978 user/testbin/psort/psort.c 				largest = key;