tmp 71 common/gcc-millicode/qdivrem.c union uu tmp;
tmp 85 common/gcc-millicode/qdivrem.c tmp.ui[H] = tmp.ui[L] = 1 / zero;
tmp 88 common/gcc-millicode/qdivrem.c return (tmp.ll);
tmp 112 common/gcc-millicode/qdivrem.c tmp.ull = ull;
tmp 114 common/gcc-millicode/qdivrem.c u[1] = (digit)HHALF(tmp.ui[H]);
tmp 115 common/gcc-millicode/qdivrem.c u[2] = (digit)LHALF(tmp.ui[H]);
tmp 116 common/gcc-millicode/qdivrem.c u[3] = (digit)HHALF(tmp.ui[L]);
tmp 117 common/gcc-millicode/qdivrem.c u[4] = (digit)LHALF(tmp.ui[L]);
tmp 118 common/gcc-millicode/qdivrem.c tmp.ull = vll;
tmp 119 common/gcc-millicode/qdivrem.c v[1] = (digit)HHALF(tmp.ui[H]);
tmp 120 common/gcc-millicode/qdivrem.c v[2] = (digit)LHALF(tmp.ui[H]);
tmp 121 common/gcc-millicode/qdivrem.c v[3] = (digit)HHALF(tmp.ui[L]);
tmp 122 common/gcc-millicode/qdivrem.c v[4] = (digit)LHALF(tmp.ui[L]);
tmp 146 common/gcc-millicode/qdivrem.c tmp.ui[H] = COMBINE(q1, q2);
tmp 147 common/gcc-millicode/qdivrem.c tmp.ui[L] = COMBINE(q3, q4);
tmp 148 common/gcc-millicode/qdivrem.c return (tmp.ll);
tmp 255 common/gcc-millicode/qdivrem.c tmp.ui[H] = COMBINE(uspace[1], uspace[2]);
tmp 256 common/gcc-millicode/qdivrem.c tmp.ui[L] = COMBINE(uspace[3], uspace[4]);
tmp 257 common/gcc-millicode/qdivrem.c *arq = tmp.ll;
tmp 260 common/gcc-millicode/qdivrem.c tmp.ui[H] = COMBINE(qspace[1], qspace[2]);
tmp 261 common/gcc-millicode/qdivrem.c tmp.ui[L] = COMBINE(qspace[3], qspace[4]);
tmp 262 common/gcc-millicode/qdivrem.c return (tmp.ll);
tmp 180 kern/lib/queue.c int tmp = theq->nextread;
tmp 181 kern/lib/queue.c while (tmp != theq->nextwrite) {
tmp 182 kern/lib/queue.c tmp = (tmp+1) % theq->size;
tmp 69 kern/test/tt3.c char tmp[16];
tmp 76 kern/test/tt3.c snprintf(tmp, sizeof(tmp), "wc%d", i);
tmp 77 kern/test/tt3.c waitchans[i] = wchan_create(kstrdup(tmp));
tmp 73 kern/vfs/vfslookup.c char tmp[NAME_MAX+1];
tmp 80 kern/vfs/vfslookup.c snprintf(tmp, sizeof(tmp)-1, "%s", fsname);
tmp 81 kern/vfs/vfslookup.c s = strchr(tmp, ':');
tmp 90 kern/vfs/vfslookup.c strcat(tmp, ":");
tmp 93 kern/vfs/vfslookup.c result = vfs_chdir(tmp);
tmp 53 user/lib/libc/stdlib/system.c char tmp[MAXCMDSIZE];
tmp 59 user/lib/libc/stdlib/system.c if (strlen(cmd) >= sizeof(tmp)) {
tmp 63 user/lib/libc/stdlib/system.c strcpy(tmp, cmd);
tmp 65 user/lib/libc/stdlib/system.c for (s = strtok(tmp, " \t"); s; s = strtok(NULL, " \t")) {
tmp 306 user/sbin/sfsck/sfsck.c uint8_t bits[SFS_BLOCKSIZE], *found, *tofree, tmp;
tmp 336 user/sbin/sfsck/sfsck.c tmp = found[j] & ~bits[j];
tmp 337 user/sbin/sfsck/sfsck.c alloccount += countbits(tmp);
tmp 338 user/sbin/sfsck/sfsck.c if (tmp != 0) {
tmp 339 user/sbin/sfsck/sfsck.c reportbits(i, j, tmp, "free");
tmp 345 user/sbin/sfsck/sfsck.c tmp = bits[j] & ~found[j];
tmp 346 user/sbin/sfsck/sfsck.c freecount += countbits(tmp);
tmp 347 user/sbin/sfsck/sfsck.c if (tmp != 0) {
tmp 348 user/sbin/sfsck/sfsck.c reportbits(i, j, tmp, "allocated");
tmp 887 user/sbin/sfsck/sfsck.c int tmp = data[i];
tmp 889 user/sbin/sfsck/sfsck.c data[j] = tmp;
tmp 43 user/testbin/argtest/argtest.c const char *tmp;
tmp 49 user/testbin/argtest/argtest.c tmp = argv[i];
tmp 50 user/testbin/argtest/argtest.c if (tmp==NULL) {
tmp 51 user/testbin/argtest/argtest.c tmp = "[NULL]";
tmp 53 user/testbin/argtest/argtest.c printf("argv[%d]: %s\n", i, tmp);
tmp 247 user/testbin/f_test/f_test.c char tmp[] = DIR_NAME;
tmp 254 user/testbin/f_test/f_test.c strcat(dirname, tmp);
tmp 291 user/testbin/f_test/f_test.c dirname[strlen(dirname) - strlen(tmp)] = '\0';
tmp 297 user/testbin/malloctest/malloctest.c struct test3 *list = NULL, *tmp;
tmp 308 user/testbin/malloctest/malloctest.c while ((tmp = malloc(sizeof(struct test3))) != NULL) {
tmp 310 user/testbin/malloctest/malloctest.c tmp->next = list;
tmp 311 user/testbin/malloctest/malloctest.c list = tmp;
tmp 348 user/testbin/malloctest/malloctest.c tmp = list->next;
tmp 356 user/testbin/malloctest/malloctest.c list = tmp;
tmp 170 user/testbin/parallelvm/parallelvm.c struct matrix tmp;
tmp 174 user/testbin/parallelvm/parallelvm.c multiply(&tmp, &mats[i], &mats[j]);
tmp 175 user/testbin/parallelvm/parallelvm.c addeq(&mats[n], &tmp);
tmp 86 user/testbin/psort/psort.c int tmp;
tmp 108 user/testbin/psort/psort.c tmp = v[--endpos];
tmp 110 user/testbin/psort/psort.c v[readpos] = tmp;
tmp 121 user/testbin/psort/psort.c tmp = v[i];
tmp 123 user/testbin/psort/psort.c v[j] = tmp;
tmp 87 user/testbin/rmdirtest/rmdirtest.c char tmp[PATH_MAX];
tmp 89 user/testbin/rmdirtest/rmdirtest.c snprintf(tmp, sizeof(tmp), "%s/%s", startpoint, testdir);
tmp 90 user/testbin/rmdirtest/rmdirtest.c if (rmdir(tmp)<0) {
tmp 91 user/testbin/rmdirtest/rmdirtest.c err(1, "%s: rmdir", tmp);
tmp 61 user/testbin/sort/sort.c static int tmp[SIZE];
tmp 77 user/testbin/sort/sort.c tmp[k++] = arr[i++];
tmp 80 user/testbin/sort/sort.c tmp[k++] = arr[j++];
tmp 84 user/testbin/sort/sort.c tmp[k++] = arr[i++];
tmp 87 user/testbin/sort/sort.c tmp[k++] = arr[j++];
tmp 90 user/testbin/sort/sort.c memcpy(arr, tmp, size*sizeof(int));
tmp 14 user/uw-testbin/argtest/argtest.c const char *tmp;
tmp 18 user/uw-testbin/argtest/argtest.c printf("&tmp : %p\n", &tmp);
tmp 36 user/uw-testbin/argtest/argtest.c tmp = argv[i];
tmp 37 user/uw-testbin/argtest/argtest.c if (tmp == NULL) {
tmp 38 user/uw-testbin/argtest/argtest.c tmp = "[NULL]";
tmp 40 user/uw-testbin/argtest/argtest.c printf("argv[%d] -> %s\n", i, tmp);