z 40 kern/lib/misc.c char *z;
z 42 kern/lib/misc.c z = kmalloc(strlen(s)+1);
z 43 kern/lib/misc.c if (z == NULL) {
z 46 kern/lib/misc.c strcpy(z, s);
z 47 kern/lib/misc.c return z;
z 275 kern/thread/thread.c struct thread *z;
z 277 kern/thread/thread.c while ((z = threadlist_remhead(&curcpu->c_zombies)) != NULL) {
z 278 kern/thread/thread.c KASSERT(z != curthread);
z 279 kern/thread/thread.c KASSERT(z->t_state == S_ZOMBIE);
z 280 kern/thread/thread.c thread_destroy(z);
z 172 user/testbin/crash/crash.c volatile int z = 0;
z 175 user/testbin/crash/crash.c a = x/z;
z 183 user/testbin/crash/crash.c volatile int z = 0;
z 186 user/testbin/crash/crash.c a = x%z;
z 391 user/testbin/malloctest/malloctest.c void *x, *y, *z;
z 484 user/testbin/malloctest/malloctest.c z = malloc(zsize);
z 485 user/testbin/malloctest/malloctest.c if (z == NULL) {
z 490 user/testbin/malloctest/malloctest.c lz = (unsigned long) z;
z 501 user/testbin/malloctest/malloctest.c free(z);
z 14 user/uw-testbin/segments/segments.c const int z = 0xabcddcba;
z 29 user/uw-testbin/segments/segments.c t2 = z + t2 + value;