Lines Matching defs:space
202 long space, len, mlen;
211 * However, space must be signed, as it might be less than 0
213 * of space and resid. On the other hand, a negative resid
244 space = sbspace(&so->so_snd);
246 space += 1024;
249 if (space < resid && (atomic || space < so->so_snd.sb_lowat)) {
275 if (resid >= MINCLSIZE && space >= MCLBYTES) {
290 space -= len;
293 len = lmin(lmin(mlen, resid), space);
294 space -= len;
314 } while (space > 0 && atomic);
337 } while (resid && space > 0);