Lines Matching defs:toobig
40 void Curl_dyn_init(struct dynbuf *s, size_t toobig)
43 DEBUGASSERT(toobig);
47 s->toobig = toobig;
76 DEBUGASSERT(s->toobig);
77 DEBUGASSERT(indx < s->toobig);
79 DEBUGASSERT(a <= s->toobig);
82 if(fit > s->toobig) {
89 if(MIN_FIRST_ALLOC > s->toobig)
90 a = s->toobig;
99 if(a > s->toobig)
101 a = s->toobig;