Searched refs:limit (Results 126 - 150 of 447) sorted by relevance

1234567891011>>

/freebsd-10-stable/sbin/fsck_ffs/
H A Dpass5.c454 int limit, /* limit on number of entries to free */
515 if (size > limit)
516 size = limit;
536 limit -= size;
537 if (limit <= 0)
560 if (size > limit)
561 size = limit;
446 check_maps( u_char *map1, u_char *map2, int mapsize, ufs2_daddr_t startvalue, const char *name, int *opcode, int skip, int limit, int usesysctl) argument
/freebsd-10-stable/sys/dev/netmap/
H A Dnetmap_pipe.c185 u_int limit; /* slots to transfer */ local
199 limit = m;
205 ND(2, "m %d limit %d", m, limit);
206 if (m < limit)
207 limit = m;
209 if (limit == 0) {
215 while (limit-- > 0) {
/freebsd-10-stable/contrib/zlib/test/
H A Dinfcover.c27 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 */ member in struct:mem_zone
79 if (zone == NULL || (zone->limit
176 mem_limit(z_stream *strm, size_t limit) argument
[all...]
/freebsd-10-stable/sys/mips/nlm/dev/net/
H A Dnae.c575 int i, limit; local
577 limit = start_ctxt + num_ctxts;
580 for (i = start_ctxt; i < limit; i++) {
599 for (i = start_ctxt; i < limit; i++) {
618 for (i = start_ctxt; i < limit; i++) {
637 for (i = start_ctxt; i < limit; i++) {
656 for (i = start_ctxt; i < limit; i++) {
676 for (i = start_ctxt; i < limit; i++) {
697 int i, limit; local
699 limit
[all...]
/freebsd-10-stable/contrib/gcc/
H A Dipa-inline.c259 int limit; local
274 limit = to->local.self_insns;
276 limit = what->local.self_insns;
278 limit += limit * PARAM_VALUE (PARAM_LARGE_FUNCTION_GROWTH) / 100;
285 && newsize > limit)
288 *reason = N_("--param large-function-growth limit reached");
322 *reason = N_("--param max-inline-insns-single limit reached");
331 *reason = N_("--param max-inline-insns-auto limit reached");
575 int limit local
[all...]
/freebsd-10-stable/contrib/libreadline/
H A Dcomplete.c1259 int count, limit, printed_len, lines; local
1265 limit = _rl_screenwidth / max;
1266 if (limit != 1 && (limit * max == _rl_screenwidth))
1267 limit--;
1270 limit will be 0 and a divide-by-zero fault will result. */
1271 if (limit == 0)
1272 limit = 1;
1275 count = (len + (limit - 1)) / limit;
[all...]
/freebsd-10-stable/sys/contrib/altq/altq/
H A Daltq_rio.c412 * if the queue length hits the hard limit, it's a forced drop.
671 int s, limit, i; local
693 limit = fc->rio_limit;
694 if (limit < fc->q_params[RIO_NDROPPREC-1].th_max)
695 limit = fc->q_params[RIO_NDROPPREC-1].th_max;
696 qlimit(rqp->rq_q) = limit;
704 fc->rio_limit = limit;
/freebsd-10-stable/contrib/xz/src/liblzma/lzma/
H A Dlzma_encoder.c306 /// consume from the dictionary. This limit comes from lzma_lzma_optimum()
314 size_t out_size, uint32_t limit)
331 assert(limit == UINT32_MAX);
338 if (limit != UINT32_MAX
339 && (mf->read_pos - mf->read_ahead >= limit
381 if (limit == UINT32_MAX)
392 assert(limit == UINT32_MAX);
312 lzma_lzma_encode(lzma_lzma1_encoder *restrict coder, lzma_mf *restrict mf, uint8_t *restrict out, size_t *restrict out_pos, size_t out_size, uint32_t limit) argument
/freebsd-10-stable/contrib/ldns/ldns/
H A Dbuffer.h55 /** The read/write limit */
111 * clears the buffer and make it ready for writing. The buffer's limit
127 * the buffer. The buffer's limit is set to the current position and
166 * or equal to the buffer's limit.
179 * be moved behind the buffer's limit or before the beginning of the
203 * changes the buffer's limit. If the buffer's position is greater
204 * than the new limit the position is set to the limit.
206 * \param[in] limit the new limit
209 ldns_buffer_set_limit(ldns_buffer *buffer, size_t limit) argument
[all...]
/freebsd-10-stable/contrib/serf/
H A Dserf_bucket_types.h139 apr_uint64_t limit,
482 #define SERF_BUCKET_IS_LIMIT(b) SERF_BUCKET_CHECK((b), limit)
486 apr_uint64_t limit,
/freebsd-10-stable/sys/gnu/dts/arm/
H A Dam335x-evm.dts394 st,min-limit-x = <120>;
395 st,min-limit-y = <120>;
396 st,min-limit-z = <140>;
397 st,max-limit-x = <550>;
398 st,max-limit-y = <550>;
399 st,max-limit-z = <750>;
H A Dam335x-evmsk.dts455 st,min-limit-x = <120>;
456 st,min-limit-y = <120>;
457 st,min-limit-z = <140>;
458 st,max-limit-x = <550>;
459 st,max-limit-y = <550>;
460 st,max-limit-z = <750>;
/freebsd-10-stable/contrib/unbound/sldns/
H A Dsbuffer.h108 /** The read/write limit */
172 * clears the buffer and make it ready for writing. The buffer's limit
188 * the buffer. The buffer's limit is set to the current position and
227 * or equal to the buffer's limit.
240 * be moved behind the buffer's limit or before the beginning of the
264 * changes the buffer's limit. If the buffer's position is greater
265 * than the new limit the position is set to the limit.
267 * \param[in] limit the new limit
270 sldns_buffer_set_limit(sldns_buffer *buffer, size_t limit) argument
[all...]
/freebsd-10-stable/contrib/subversion/subversion/libsvn_subr/
H A Dlog.c208 int limit, svn_boolean_t discover_changed_paths,
228 if (limit)
230 const char *tmp = apr_psprintf(pool, " limit=%d", limit);
205 svn_log__log(const apr_array_header_t *paths, svn_revnum_t start, svn_revnum_t end, int limit, svn_boolean_t discover_changed_paths, svn_boolean_t strict_node_history, svn_boolean_t include_merged_revisions, const apr_array_header_t *revprops, apr_pool_t *pool) argument
/freebsd-10-stable/sys/kern/
H A Dsubr_firmware.c425 int limit = FIRMWARE_MAX; local
430 * Scan the table. limit is set to make sure we make another
433 for (i = 0; i < limit; i++) {
444 * 1. bump up limit to make sure we make another full round;
451 limit = i + FIRMWARE_MAX; /* make another full round */
/freebsd-10-stable/contrib/libucl/src/
H A Dxxhash.c218 const BYTE* const limit = bEnd - 16; local
230 } while (p<=limit);
374 const BYTE* const limit = bEnd - 16; local
386 } while (p<=limit);
/freebsd-10-stable/sys/cddl/dev/dtrace/mips/
H A Ddtrace_subr.c78 dtrace_toxic_ranges(void (*func)(uintptr_t base, uintptr_t limit)) argument
/freebsd-10-stable/contrib/subversion/subversion/include/private/
H A Dsvn_log.h166 int limit, svn_boolean_t discover_changed_paths,
/freebsd-10-stable/sys/netpfil/ipfw/
H A Ddn_sched_fq_codel.h47 uint32_t limit; /* hard limit of fq_codel queue size*/ member in struct:dn_sch_fq_codel_parms
/freebsd-10-stable/sys/i386/linux/
H A Dlinux.h134 #define LINUX_RLIMIT_AS 9 /* Address space limit */
559 l_uint limit; member in struct:l_user_desc
581 ((info)->limit & LINUX_LOWERWORD))
593 ((info)->limit & 0xf0000) | \
604 (info)->limit == 0 && \
/freebsd-10-stable/contrib/libarchive/libarchive/
H A Dxxhash.c239 const BYTE* const limit = bEnd - 16; local
251 } while (p<=limit);
396 const BYTE* const limit = bEnd - 16; local
408 } while (p<=limit);
H A Darchive_write_set_format_v7tar.c519 int64_t limit; local
521 limit = ((int64_t)1 << (s*3));
535 if (v < limit)
538 limit <<= 3;
/freebsd-10-stable/sys/x86/cpufreq/
H A Dhwpstate.c162 * Go to Px-state on all cpus considering the limit.
169 int cpu, i, j, limit; local
171 /* get the current pstate limit */
173 limit = AMD_10H_11H_GET_PSTATE_LIMIT(msr);
174 if (limit > id)
175 id = limit;
/freebsd-10-stable/sys/dev/sfxge/common/
H A Def10_nvram.c48 uint32_t *limit; /* Last dword of data block */ member in struct:tlv_cursor_s
226 if (cursor->current > cursor->limit) {
233 if (cursor->current > (cursor->limit - 2)) {
240 if (tlv_next_item_ptr(cursor) > (cursor->limit - 1)) {
265 __in uint32_t *limit,
269 cursor->limit = limit;
284 uint32_t *limit; local
285 limit = (uint32_t *)(block + size - sizeof (uint32_t));
287 limit, (uint32_
262 tlv_init_cursor( __out tlv_cursor_t *cursor, __in uint32_t *block, __in uint32_t *limit, __in uint32_t *current) argument
298 uint32_t *limit; local
[all...]
/freebsd-10-stable/contrib/dtc/
H A Dflattree.c581 char *base, *limit, *ptr; member in struct:inbuf
584 static void inbuf_init(struct inbuf *inb, void *base, void *limit) argument
587 inb->limit = limit;
593 if ((inb->ptr + len) > inb->limit)
617 if (inb->ptr > inb->limit)
628 if (p >= inb->limit)
665 if (p >= inb->limit || p < inb->base)

Completed in 384 milliseconds

1234567891011>>