Home | History | Annotate | Download | only in dist

Lines Matching defs:at_most

212 	size_t at_most;
226 at_most = evbuffer_get_length(bev->output);
231 if (at_most >= (size_t)limit && limit >= 0)
232 at_most = limit;
241 if (evbuffer_launch_write_(bev->output, at_most,
247 beva->write_in_progress = at_most;
248 bufferevent_decrement_write_buckets_(&beva->bev, at_most);
258 size_t at_most;
279 at_most = read_high - cur_size;
281 at_most = 16384; /* FIXME totally magic. */
287 if (at_most >= (size_t)limit && limit >= 0)
288 at_most = limit;
296 if (evbuffer_launch_read_(bev->input, at_most, &beva->read_overlapped)) {
301 beva->read_in_progress = at_most;
302 bufferevent_decrement_read_buckets_(&beva->bev, at_most);