Lines Matching defs:to
14 * You may opt to use, copy, modify, merge, publish, distribute and/or sell
15 * copies of the Software, and permit persons to whom the Software is
16 * furnished to do so, under the terms of the COPYING file.
40 curl_off_t from, to;
52 to_t = curlx_strtoofft(ptr, &ptr2, 10, &to);
58 DEBUGF(infof(data, "RANGE %" CURL_FORMAT_CURL_OFF_T " to end of file",
63 data->req.maxdownload = to;
64 data->state.resume_from = -to;
66 to));
72 /* Ensure the range is sensible - to should follow from. */
73 if(from > to)
76 totalsize = to - from;
87 " to %" CURL_FORMAT_CURL_OFF_T ", totally %"
89 from, to, data->req.maxdownload));