Lines Matching refs:with
67 static int multiply(curl_off_t *amount, curl_off_t with)
71 DEBUGASSERT(with >= 0);
72 if((with <= 0) || (*amount <= 0)) {
78 if(__builtin_mul_overflow(*amount, with, &sum))
81 sum = *amount * with;
82 if(sum/with != *amount)
94 /* processes a set expression with the point behind the opening '{'
181 *patternp = pattern; /* return with the new position */
189 /* processes a range expression with the point behind the opening '['
192 - num range with leading zeros: e.g. "001-999]"
455 * We can deal with any-size, just make a buffer with the same length
546 with the rightmost pattern */