Lines Matching defs:limit
27 and high water mark of total bytes requested, optionally set a limit on the
36 mem_limit(&strm, limit) sets a limit on the total bytes requested -- a
37 request that exceeds this limit will result in an
39 limit to zero means no limit, which is the default
66 size_t limit; /* memory allocation limit, or 0 if no limit */
79 if (zone == NULL || (zone->limit && zone->total + len > zone->limit))
167 zone->limit = 0;
175 /* set a limit on the total memory allocation, or 0 to remove the limit */
176 local void mem_limit(z_stream *strm, size_t limit)
180 zone->limit = limit;