Home | History | Annotate | Download | only in tcpdump

Lines Matching refs:ouf

241 	register u_int32_t ou, ouf;
249 ouf = EXTRACT_32BITS(&olfp->fraction);
250 if (ou == 0 && ouf == 0) {
259 f = uf - ouf;
260 if (ouf > uf) /* must borrow from high-order bits */
264 f = ouf - uf;
265 if (uf > ouf) /* must carry into the high-order bits */
269 if (uf > ouf) {
271 f = uf - ouf;
274 f = ouf - uf;