Home
last modified time | relevance | path

Searched full:limit (Results 1 – 25 of 5212) sorted by relevance

12345678910>>...209

/netbsd-src/external/public-domain/sqlite/man/
H A Dsqlite3_soft_heap_limit64.37 .Nd impose a limit on heap size
23 limit on the amount of heap memory that may be allocated by SQLite.
25 limit by reducing the number of pages held in the page cache as heap
26 memory usages approaches the limit.
27 The soft heap limit is "soft" because even though SQLite strives to
28 stay below the limit, it will exceed the limit rather than generate
30 In other words, the soft heap limit is advisory only.
35 except that memory allocations will fail when the hard heap limit is
39 is the size of the heap limit prior to the call, or negative in the
41 If the argument N is negative then no change is made to the heap limit.
[all …]
H A Dsqlite3_limit.319 limit is to be set or queried.
20 The second parameter is one of the limit categories
22 The third parameter is the new limit for that construct.
24 If the new limit is a negative number, the limit is unchanged.
25 For each limit category SQLITE_LIMIT_\fINAME\fP there is a hard upper bound
28 a limit above its hard upper bound are silently truncated to the hard
31 Regardless of whether or not the limit was changed, the
33 interface returns the prior value of the limit.
34 Hence, to find the current value of a limit without changing it, simply
52 New run-time limit categories may be added in future releases.
/netbsd-src/external/bsd/openldap/dist/tests/scripts/
H A Dtest025-limits128 echo "Testing limit requested for rootdn=$MANAGERDN..."
142 echo "...didn't bump into the requested size limit ($SIZELIMIT; got $COUNT entries)"
152 echo "...bumped into requested size limit ($SIZELIMIT)"
159 echo "...error: bumped into server-side size limit, but got no entries!"
172 echo "Testing size limit request ($SIZELIMIT) for unlimited ID..."
186 echo "...didn't bump into the requested size limit ($SIZELIMIT; got $COUNT entries)"
196 echo "...bumped into requested size limit ($SIZELIMIT)"
203 echo "...error: bumped into server-side size limit, but got no entries!"
216 echo "Testing time limit request ($TIMELIMIT s) for unlimited ID..."
225 echo "...didn't bump into the requested time limit ($TIMELIMIT s; got $COUNT entries)"
[all …]
/netbsd-src/external/ibm-public/postfix/dist/src/util/
H A Dfile_limit.c7 /* limit the file size
13 /* void set_file_limit(limit)
14 /* off_t limit;
16 /* This module manipulates the process-wide file size limit.
17 /* The limit is specified in bytes.
19 /* get_file_limit() looks up the process-wide file size limit.
21 /* set_file_limit() sets the process-wide file size limit to
58 /* get_file_limit - get process-wide file size limit */
62 off_t limit; in get_file_limit() local
65 if ((limit = ulimit(UL_GETFSIZE, 0)) < 0) in get_file_limit()
[all …]
H A Dopen_limit.c7 /* set/get open file limit
11 /* int open_limit(int limit)
14 /* number of open files to the specified limit. Specify a null
16 /* limit for the current process. The number can be smaller or larger
17 /* than the requested limit.
57 /* open_limit - set/query file descriptor limit */
59 int open_limit(int limit) in open_limit() argument
65 if (limit < 0) { in open_limit()
72 if (limit > 0) { in open_limit()
76 * hard limit is finite and equals the kern.maxfilesperproc value. in open_limit()
[all …]
/netbsd-src/external/apache2/llvm/dist/libcxx/utils/ci/
H A Dbuildkite-pipeline.yml34 limit: 2
47 limit: 2
66 limit: 2
78 limit: 2
90 limit: 2
102 limit: 2
113 limit: 2
125 limit: 2
136 limit: 2
152 limit: 2
[all …]
/netbsd-src/external/bsd/openldap/dist/servers/slapd/
H A Dlimits.c33 /* define to get an error if requesting limit higher than hard */
73 struct slap_limits_set **limit in limits_get() argument
81 assert( limit != NULL ); in limits_get()
93 *limit = &op->o_bd->be_def_limit; in limits_get()
185 *limit = &lm[0]->lm_limits; in limits_get()
192 *limit = &lm[0]->lm_limits; in limits_get()
201 *limit = &lm[0]->lm_limits; in limits_get()
220 struct slap_limits_set *limit in limits_add() argument
228 assert( limit != NULL ); in limits_add()
298 lm->lm_limits = *limit; in limits_add()
[all …]
/netbsd-src/lib/libc/sys/
H A Dgetrlimit.290 this limit.
94 This imposes a limit on the amount of physical memory to be given to
111 A resource limit is specified as a soft limit and a hard limit.
112 When a soft limit is exceeded a process may receive a signal (for example,
114 continue execution until it reaches the hard limit (or modifies
115 its resource limit).
121 rlim_t rlim_cur; /* current (soft) limit */
122 rlim_t rlim_max; /* hard limit */
136 value for a limit is defined as
143 .Ic ( limit
[all …]
/netbsd-src/external/bsd/openldap/dist/doc/guide/admin/
H A Dlimits.sdf18 It is usually desirable to limit the server resources that can be
20 a size limit, which can restrict the {{number}} of entries that a
21 client can retrieve in a single operation, and a time limit
23 Both types of limit can be given different values depending on who
30 default limit value. Hard limits cannot be exceeded by ordinary
37 If the client specifies a limit then the lower of the requested value
38 and the {{hard limit}} will become the limit for the operation.
40 If the client does not specify a limit then the server applies the
41 {{soft limit}}.
47 the limit has been exceeded: this feature is useful to clients that
[all …]
/netbsd-src/external/gpl3/binutils/dist/gprof/
H A Dcorefile.c548 symtab.limit = symtab.base; in core_create_syms_from()
563 sym_init (symtab.limit); in core_create_syms_from()
567 symtab.limit->addr = addr; in core_create_syms_from()
569 symtab.limit->name = (char *) xmalloc (strlen (name) + 1); in core_create_syms_from()
570 strcpy ((char *) symtab.limit->name, name); in core_create_syms_from()
571 symtab.limit->mapped = 0; in core_create_syms_from()
572 symtab.limit->is_func = true; in core_create_syms_from()
573 symtab.limit->is_bb_head = true; in core_create_syms_from()
574 symtab.limit->is_static = (type == 't'); in core_create_syms_from()
575 min_vma = MIN (symtab.limit->addr, min_vma); in core_create_syms_from()
[all …]
/netbsd-src/external/gpl3/binutils.old/dist/gprof/
H A Dcorefile.c548 symtab.limit = symtab.base; in core_create_syms_from()
563 sym_init (symtab.limit); in core_create_syms_from()
565 sscanf (address, "%" BFD_VMA_FMT "x", &(symtab.limit->addr) ); in core_create_syms_from()
567 symtab.limit->name = (char *) xmalloc (strlen (name) + 1); in core_create_syms_from()
568 strcpy ((char *) symtab.limit->name, name); in core_create_syms_from()
569 symtab.limit->mapped = 0; in core_create_syms_from()
570 symtab.limit->is_func = true; in core_create_syms_from()
571 symtab.limit->is_bb_head = true; in core_create_syms_from()
572 symtab.limit->is_static = (type == 't'); in core_create_syms_from()
573 min_vma = MIN (symtab.limit->addr, min_vma); in core_create_syms_from()
[all …]
/netbsd-src/external/public-domain/xz/dist/src/liblzma/common/
H A Dmemcmplen.h29 /// \param limit How many bytes to compare at most, including the
33 /// the specified limit from both buf1 and buf2.
36 /// This is always at least len and at most limit.
44 uint32_t len, uint32_t limit) in uint32_t()
46 assert(len <= limit); in uint32_t()
47 assert(limit <= UINT32_MAX / 2); in uint32_t()
63 while (len < limit) { in uint32_t()
74 return my_min(len, limit); in uint32_t()
80 return limit; in uint32_t()
96 while (len < limit) { in uint32_t()
[all …]
/netbsd-src/sys/arch/sparc64/sparc64/
H A Dtimerreg.h45 * the cache chip (!). The counter and limit fields below could be
49 * u_int t_limit:1, // limit reached
58 * large unsigned number). On the Sun-4c, it counts up to a limit. But
59 * for some reason, when it reaches the limit, it resets to 1, not 0.
60 * Thus, if the limit is set to 4, the counter counts like this:
64 * and if we want to divide by N we must set the limit register to N+1.
68 * - the limit and counter registers have changed positions..
69 * - both limit and counter registers are 22 bits wide, but
75 * in a limit value that is 1 too high. This means that (with HZ=100)
84 * - You can make them do funky things with the limit register
[all …]
/netbsd-src/external/bsd/unbound/dist/util/
H A Dtcp_conn_limit.h2 * daemon/tcp_conn_limit.h - client TCP connection limit storage for the server.
39 * This file keeps track of the limit on the number of TCP connections
51 * TCP connection limit storage structure
65 * An address span with connection limit information
72 /** connection limit on this netblock */
73 uint32_t limit; member
79 * Create TCP connection limit structure
85 * Delete TCP connection limit structure.
91 * Process TCP connection limit config.
100 * count was below the limit.
[all …]
/netbsd-src/sys/arch/sparc/sparc/
H A Dtimerreg.h45 * the cache chip (!). The counter and limit fields below could be
49 * u_int t_limit:1, // limit reached
58 * large unsigned number). On the Sun-4c, it counts up to a limit. But
59 * for some reason, when it reaches the limit, it resets to 1, not 0.
60 * Thus, if the limit is set to 4, the counter counts like this:
64 * and if we want to divide by N we must set the limit register to N+1.
68 * - the limit and counter registers have changed positions..
69 * - both limit and counter registers are 22 bits wide, but
77 volatile int t_limit; /* limit reg */
86 volatile int t_limit; /* limit register */
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/docs/
H A DOptBisect.rst2 Using -opt-bisect-limit to debug optimization errors
11 The -opt-bisect-limit option provides a way to disable all optimization passes
12 above a specified limit without modifying the way in which the Pass Managers
19 check the opt-bisect limit before performing optimizations. Passes which
25 The -opt-bisect-limit option can be used with any tool, including front ends
39 The -opt-bisect-limit command line option can be passed directly to tools such
44 <tool name> [other options] -opt-bisect-limit=<limit>
50 opt-bisect-limit. All optimizations with a higher index value will be skipped.
52 In order to use the -opt-bisect-limit option with a driver that provides a
60 clang -O2 -mllvm -opt-bisect-limit=256 my_file.c
[all …]
/netbsd-src/external/mpl/dhcp/bind/dist/lib/isc/
H A Dcounter.c35 atomic_uint_fast32_t limit; member
40 isc_counter_create(isc_mem_t *mctx, int limit, isc_counter_t **counterp) { in isc_counter_create() argument
51 atomic_init(&counter->limit, limit); in isc_counter_create()
62 uint32_t limit = atomic_load_acquire(&counter->limit); in isc_counter_increment() local
64 if (limit != 0 && used >= limit) { in isc_counter_increment()
79 isc_counter_setlimit(isc_counter_t *counter, int limit) { in isc_counter_setlimit() argument
82 atomic_store(&counter->limit, limit); in isc_counter_setlimit()
/netbsd-src/external/mpl/bind/dist/lib/isc/
H A Dcounter.c35 atomic_uint_fast32_t limit; member
40 isc_counter_create(isc_mem_t *mctx, int limit, isc_counter_t **counterp) { in isc_counter_create() argument
51 atomic_init(&counter->limit, limit); in isc_counter_create()
62 uint32_t limit = atomic_load_acquire(&counter->limit); in isc_counter_increment() local
64 if (limit != 0 && used >= limit) { in isc_counter_increment()
79 isc_counter_setlimit(isc_counter_t *counter, int limit) { in isc_counter_setlimit() argument
82 atomic_store(&counter->limit, limi in isc_counter_setlimit()
[all...]
/netbsd-src/share/man/man4/
H A Dswsensor.463 provides internally-maintained limits and limit checking
69 sensor provides its own internal limit value
71 sensor maintains an internal adjustable limit and performs its own
72 comparison between the sensor's limit and its current value
74 .It Li "limit"
75 The initial alarm limit value, if limit emulation is selected (i.e., if
112 .Dl Ic modload -i mode=1 -i limit=50 swsensor
113 will create a sensor which has an initial, device-provided limit of 50.
140 driver can only emulate one hardware-managed limit; this is assumed to
143 limit.
/netbsd-src/external/gpl2/groff/dist/tmac/
H A Ddoc.tmac82 .\" NS doc-arg-limit global register
85 .nr doc-arg-limit 0
104 .\" NS limit:
105 .\" NS doc-arg-limit
114 .\" NS limit:
115 .\" NS doc-arg-limit
123 .\" NS limit:
124 .\" NS doc-arg-limit
133 .\" NS doc-arg-limit
147 . if !\n[doc-arg-limit] \
[all …]
/netbsd-src/external/gpl3/binutils/dist/binutils/doc/
H A Daddr2line.170 [\fB\-r\fR|\fB\-\-no\-recurse\-limit\fR]
71 [\fB\-R\fR|\fB\-\-recurse\-limit\fR]
223 .IP \fB\-\-recurse\-limit\fR 4
224 .IX Item "--recurse-limit"
225 .IP \fB\-\-no\-recurse\-limit\fR 4
226 .IX Item "--no-recurse-limit"
227 .IP \fB\-\-recursion\-limit\fR 4
228 .IX Item "--recursion-limit"
229 .IP \fB\-\-no\-recursion\-limit\fR 4
230 .IX Item "--no-recursion-limit"
[all …]
H A Dcxxfilt.man72 [\fB\-r\fR|\fB\-\-no\-recurse\-limit\fR]
73 [\fB\-R\fR|\fB\-\-recurse\-limit\fR]
189 .IP \fB\-\-recurse\-limit\fR 4
190 .IX Item "--recurse-limit"
191 .IP \fB\-\-no\-recurse\-limit\fR 4
192 .IX Item "--no-recurse-limit"
193 .IP \fB\-\-recursion\-limit\fR 4
194 .IX Item "--recursion-limit"
195 .IP \fB\-\-no\-recursion\-limit\fR 4
196 .IX Item "--no-recursion-limit"
[all …]
H A Dc++filt.172 [\fB\-r\fR|\fB\-\-no\-recurse\-limit\fR]
73 [\fB\-R\fR|\fB\-\-recurse\-limit\fR]
189 .IP \fB\-\-recurse\-limit\fR 4
190 .IX Item "--recurse-limit"
191 .IP \fB\-\-no\-recurse\-limit\fR 4
192 .IX Item "--no-recurse-limit"
193 .IP \fB\-\-recursion\-limit\fR 4
194 .IX Item "--recursion-limit"
195 .IP \fB\-\-no\-recursion\-limit\fR 4
196 .IX Item "--no-recursion-limit"
[all …]
/netbsd-src/external/gpl3/gcc/dist/gcc/
H A Dgimple-ssa-warn-alloca.cc66 // are certainly in excess of the limit. This includes calls in set_pass_param()
83 // Warning is disabled when its size limit is greater than PTRDIFF_MAX in gate()
84 // for the target maximum, which makes the limit negative since when in gate()
113 // Type of an alloca call with its corresponding limit, if applicable.
118 // types, this field indicates the assumed limit if known or
121 wide_int limit; member in alloca_type_and_limit
124 wide_int i) : type(type), limit(i) { } in alloca_type_and_limit()
127 limit = wi::to_wide (integer_zero_node); in alloca_type_and_limit()
131 /* Return TRUE if the user specified a limit for either VLAs or ALLOCAs. */
164 // corresponding limit (if applicable). IS_VLA is set if the alloca
[all …]
/netbsd-src/external/mit/lua/dist/src/
H A Dltable.c450 lim = asize; /* adjust upper limit */ in numusearray()
741 ** one more than the limit (so that it can be incremented without
913 ** The code starts with 'limit = t->alimit', a position in the array
916 ** (1) If 't[limit]' is empty, there must be a boundary before it.
917 ** As a common case (e.g., after 't[#t]=nil'), check whether 'limit-1'
919 ** between 0 and limit to find a boundary. In both cases, try to
922 ** (2) If 't[limit]' is not empty and the array has more elements
923 ** after 'limit', try to find a boundary there. Again, try first
924 ** the special case (which should be quite frequent) where 'limit+1'
925 ** is empty, so that 'limit' is a boundary. Otherwise, check the
[all …]

12345678910>>...209