Lines Matching defs:from
10 * available from http://www.virtualbox.org. This file is free software;
200 * Copy the data from m into sb
252 * Copy data from sbuf to a normal, straight buffer
259 char *from;
261 from = sb->sb_rptr + off;
262 if (from >= sb->sb_data + sb->sb_datalen)
263 from -= sb->sb_datalen;
265 if (from < sb->sb_wptr)
269 memcpy(to, from, len);
274 off = (sb->sb_data + sb->sb_datalen) - from;
277 memcpy(to, from, off);