u 102 common/gcc-millicode/muldi3.c union uu u, v, low, prod;
u 105 common/gcc-millicode/muldi3.c #define u1 u.ui[H]
u 106 common/gcc-millicode/muldi3.c #define u0 u.ui[L]
u 116 common/gcc-millicode/muldi3.c u.ll = a, negall = 0;
u 118 common/gcc-millicode/muldi3.c u.ll = -a, negall = 1;
u 184 common/gcc-millicode/muldi3.c __lmulq(unsigned int u, unsigned int v)
u 191 common/gcc-millicode/muldi3.c u1 = HHALF(u);
u 192 common/gcc-millicode/muldi3.c u0 = LHALF(u);
u 72 common/gcc-millicode/qdivrem.c digit *u, *v, *q;
u 95 common/gcc-millicode/qdivrem.c u = &uspace[0];
u 113 common/gcc-millicode/qdivrem.c u[0] = 0;
u 114 common/gcc-millicode/qdivrem.c u[1] = (digit)HHALF(tmp.ui[H]);
u 115 common/gcc-millicode/qdivrem.c u[2] = (digit)LHALF(tmp.ui[H]);
u 116 common/gcc-millicode/qdivrem.c u[3] = (digit)HHALF(tmp.ui[L]);
u 117 common/gcc-millicode/qdivrem.c u[4] = (digit)LHALF(tmp.ui[L]);
u 137 common/gcc-millicode/qdivrem.c q1 = (digit)(u[1] / t);
u 138 common/gcc-millicode/qdivrem.c rbj = COMBINE(u[1] % t, u[2]);
u 140 common/gcc-millicode/qdivrem.c rbj = COMBINE(rbj % t, u[3]);
u 142 common/gcc-millicode/qdivrem.c rbj = COMBINE(rbj % t, u[4]);
u 157 common/gcc-millicode/qdivrem.c for (m = 4 - n; u[1] == 0; u++)
u 173 common/gcc-millicode/qdivrem.c shl(&u[0], m + n, d); /* u <<= d */
u 193 common/gcc-millicode/qdivrem.c uj0 = u[j + 0]; /* for D3 only -- note that u[j+...] change */
u 194 common/gcc-millicode/qdivrem.c uj1 = u[j + 1]; /* for D3 only */
u 195 common/gcc-millicode/qdivrem.c uj2 = u[j + 2]; /* for D3 only */
u 218 common/gcc-millicode/qdivrem.c t = u[i + j] - v[i] * qhat - t;
u 219 common/gcc-millicode/qdivrem.c u[i + j] = (digit)LHALF(t);
u 222 common/gcc-millicode/qdivrem.c t = u[j] - t;
u 223 common/gcc-millicode/qdivrem.c u[j] = (digit)LHALF(t);
u 233 common/gcc-millicode/qdivrem.c t += u[i + j] + v[i];
u 234 common/gcc-millicode/qdivrem.c u[i + j] = (digit)LHALF(t);
u 237 common/gcc-millicode/qdivrem.c u[j] = (digit)LHALF(u[j] + t);
u 250 common/gcc-millicode/qdivrem.c u[i] = (digit)(((unsigned int)u[i] >> d) |
u 251 common/gcc-millicode/qdivrem.c LHALF((unsigned int)u[i - 1] <<
u 253 common/gcc-millicode/qdivrem.c u[i] = 0;
u 153 kern/lib/uio.c uio_kinit(struct iovec *iov, struct uio *u,
u 158 kern/lib/uio.c u->uio_iov = iov;
u 159 kern/lib/uio.c u->uio_iovcnt = 1;
u 160 kern/lib/uio.c u->uio_offset = pos;
u 161 kern/lib/uio.c u->uio_resid = len;
u 162 kern/lib/uio.c u->uio_segflg = UIO_SYSSPACE;
u 163 kern/lib/uio.c u->uio_rw = rw;
u 164 kern/lib/uio.c u->uio_space = NULL;
u 27 kern/syscall/file_syscalls.c struct uio u;
u 43 kern/syscall/file_syscalls.c u.uio_iov = &iov;
u 44 kern/syscall/file_syscalls.c u.uio_iovcnt = 1;
u 45 kern/syscall/file_syscalls.c u.uio_offset = 0; /* not needed for the console */
u 46 kern/syscall/file_syscalls.c u.uio_resid = nbytes;
u 47 kern/syscall/file_syscalls.c u.uio_segflg = UIO_USERSPACE;
u 48 kern/syscall/file_syscalls.c u.uio_rw = UIO_WRITE;
u 49 kern/syscall/file_syscalls.c u.uio_space = curproc->p_addrspace;
u 51 kern/syscall/file_syscalls.c res = VOP_WRITE(curproc->console,&u);
u 57 kern/syscall/file_syscalls.c *retval = nbytes - u.uio_resid;
u 85 kern/syscall/loadelf.c struct uio u;
u 98 kern/syscall/loadelf.c u.uio_iov = &iov;
u 99 kern/syscall/loadelf.c u.uio_iovcnt = 1;
u 100 kern/syscall/loadelf.c u.uio_resid = filesize; // amount to read from the file
u 101 kern/syscall/loadelf.c u.uio_offset = offset;
u 102 kern/syscall/loadelf.c u.uio_segflg = is_executable ? UIO_USERISPACE : UIO_USERSPACE;
u 103 kern/syscall/loadelf.c u.uio_rw = UIO_READ;
u 104 kern/syscall/loadelf.c u.uio_space = as;
u 106 kern/syscall/loadelf.c result = VOP_READ(v, &u);
u 111 kern/syscall/loadelf.c if (u.uio_resid != 0) {
u 139 kern/syscall/loadelf.c u.uio_resid += fillamt;
u 140 kern/syscall/loadelf.c result = uiomovezeros(fillamt, &u);