Searched refs:max (Results 251 - 275 of 940) sorted by relevance

<<11121314151617181920>>

/freebsd-10.0-release/usr.sbin/ppp/
H A Ddatalink.c135 dl->reconnect_tries = dl->cfg.reconnect.max;
136 dl->dial.tries = dl->cfg.dial.max;
171 dl->dial.tries = dl->cfg.dial.max;
175 dl->name, dl->cfg.reconnect.max - dl->reconnect_tries,
176 dl->cfg.reconnect.max);
289 dl->cfg.dial.max)
291 dl->name, dl->cfg.dial.max - dl->dial.tries,
292 dl->cfg.dial.max);
298 dl->cfg.dial.max)
300 dl->cfg.dial.max
[all...]
/freebsd-10.0-release/sys/netpfil/pf/
H A Dpf_norm.c90 u_int16_t fr_max; /* fragment data max */
368 u_int16_t max = ip_len + off; local
464 if ((*frag)->fr_max < max)
465 (*frag)->fr_max = max;
488 DPFPRINTF(("missing fragment at %d, next %d, max %d\n",
568 u_int16_t max = ip_len + off; local
602 cur->fr_end = max;
609 DPFPRINTF(("fragcache[%d]: new %d-%d\n", h->ip_id, off, max));
635 h->ip_id, frp->fr_off, frp->fr_end, off, max));
641 h->ip_id, frp->fr_off, frp->fr_end, off, max));
875 u_int16_t max; local
[all...]
/freebsd-10.0-release/sys/arm/arm/
H A Ddb_trace.c145 unsigned int min, mid, max; local
154 max = (&exidx_end - &exidx_start) / 2;
156 while (min != max) {
157 mid = min + (max - min + 1) / 2;
167 max = mid - 1;
/freebsd-10.0-release/sys/dev/usb/gadget/
H A Dg_modem.c379 int max; local
405 max = sc->sc_tx_interval ? mod : G_MODEM_BUFSIZE;
408 for (x = 0; x != max; x++)
411 for (x = 0; x != max; x++)
415 usbd_xfer_set_frame_data(xfer, 0, sc->sc_data_buf, max);
/freebsd-10.0-release/sys/mips/cavium/octe/
H A Dmv88e61xxphy.c476 unsigned max, val, *valp; local
482 max = 0xf;
486 max = 0x1000;
490 max = 3;
502 if (val >= max)
/freebsd-10.0-release/sys/netinet/cc/
H A Dcc_chd.c149 win -= max((win / 2), 1);
150 CCV(ccv, snd_ssthresh) = max(win, 2) * CCV(ccv, t_maxseg);
284 chd_data->shadow_w = max(CCV(ccv, snd_cwnd),
358 CCV(ccv, snd_cwnd) = max(CCV(ccv, snd_cwnd),
372 chd_data->shadow_w = max(chd_data->shadow_w /
/freebsd-10.0-release/sys/ofed/drivers/infiniband/ulp/sdp/
H A Dsdp_proc.c211 u32 max = 0; local
216 if (h[i] > max)
217 max = h[i];
220 if (max == 0) {
227 int j = 50 * h[i] / max;
/freebsd-10.0-release/usr.bin/csup/
H A Dmisc.c57 time_t max; member in struct:backoff_timer
517 bt_new(time_t min, time_t max, float backoff, float jitter) argument
523 bt->max = max;
537 bt->interval = (time_t)min(bt->interval * bt->backoff, bt->max);
/freebsd-10.0-release/contrib/gcc/
H A Dcfgbuild.c255 make_edges (basic_block min, basic_block max, int update_p)
271 FOR_BB_BETWEEN (bb, min, max->next_bb, next_bb)
758 basic_block bb, min, max;
772 min = max = bb;
775 max = bb;
779 make_edges (min, max, 1);
784 FOR_BB_BETWEEN (bb, min, max->next_bb, next_bb)
252 make_edges(basic_block min, basic_block max, int update_p) argument
753 basic_block bb, min, max; local
/freebsd-10.0-release/contrib/libstdc++/src/
H A Distream.cc155 if (__n == numeric_limits<streamsize>::max()
167 _M_gcount = numeric_limits<streamsize>::max();
173 if (_M_gcount < numeric_limits<streamsize>::max())
207 __num = numeric_limits<streamsize>::max();
535 if (__n == numeric_limits<streamsize>::max()
547 _M_gcount = numeric_limits<streamsize>::max();
553 if (_M_gcount < numeric_limits<streamsize>::max())
H A Dstrstream.cc62 streamsize n = std::max(initial_capacity, streamsize(16));
151 ptrdiff_t new_size = std::max(ptrdiff_t(2 * old_size), ptrdiff_t(1));
171 std::max(old_get_offset, old_size));
/freebsd-10.0-release/usr.bin/dc/
H A Dbcode.c61 static __inline u_int max(u_int, u_int);
328 max(u_int a, u_int b) function
974 r->scale = max(a->scale, b->scale);
1002 r->scale = max(a->scale, b->scale);
1030 normalize(r, max(scale, max(ascale, bscale)));
1075 scale = max(a->scale, b->scale);
1111 scale = max(a->scale, b->scale);
1112 r->scale = max(b->scale, a->scale + bmachine.scale);
1150 rmod->scale = max(
[all...]
/freebsd-10.0-release/contrib/ofed/management/opensm/libvendor/
H A Dosm_vendor_ibumad.c104 for (m = p_vend->mtbl.tbl, e = m + p_vend->mtbl.max; m < e; m++) {
139 for (m = p_vend->mtbl.tbl, e = m + p_vend->mtbl.max; m < e; m++) {
163 for (m = p_vend->mtbl.tbl, e = m + p_vend->mtbl.max; m < e; m++) {
440 char *max = NULL; local
470 p_vend->mtbl.max = DEFAULT_OSM_UMAD_MAX_PENDING;
472 if ((max = getenv("OSM_UMAD_MAX_PENDING")) != NULL) {
473 int tmp = strtol(max, NULL, 0);
475 p_vend->mtbl.max = tmp;
483 p_vend->mtbl.max);
485 p_vend->mtbl.tbl = calloc(p_vend->mtbl.max, sizeo
[all...]
/freebsd-10.0-release/lib/libc/db/hash/
H A Dhash_page.c548 int i, max; local
551 max = hashp->BSIZE >> 2; /* divide by 4 */
552 for (i = 0; i < max; i++)
556 max = bp[0] + 2;
557 for (i = 1; i <= max; i++)
582 int i, max; local
585 max = hashp->BSIZE >> 2; /* divide by 4 */
586 for (i = 0; i < max; i++)
589 max = ((u_int16_t *)p)[0] + 2;
590 for (i = 0; i <= max;
[all...]
/freebsd-10.0-release/sys/dev/sound/isa/
H A Dsb16.c336 rel2abs_volume(int x, int max) argument
340 temp = ((x * max) + 50) / 100;
341 if (temp > max)
342 temp = max;
353 int max; local
356 max = (1 << e->bits) - 1;
358 left = rel2abs_volume(left, max);
359 right = rel2abs_volume(right, max);
367 left = (left * 100) / max;
368 right = (right * 100) / max;
[all...]
/freebsd-10.0-release/sys/dev/sound/pcm/
H A Dac97.c442 int mask, max, val, reg; local
445 max = (1 << e->bits) - 1; /* actual range */
446 mask = (max << 8) | max; /* bits of interest */
453 * then scale to 0..max-1 to compute the value to
462 left = (left * max) / 100;
463 right = (right * max) / 100;
467 left = (left * 100) / max;
468 right = (right * 100) / max;
480 val &= max;
[all...]
/freebsd-10.0-release/contrib/libreadline/
H A Dcomplete.c1049 int low; /* Count of max-matched characters. */
1255 rl_display_match_list (matches, len, max)
1257 int len, max;
1264 max += 2;
1265 limit = _rl_screenwidth / max;
1266 if (limit != 1 && (limit * max == _rl_screenwidth))
1269 /* Avoid a possible floating exception. If max > _rl_screenwidth,
1303 for (k = 0; k < max - printed_len; k++)
1340 for (k = 0; k < max - printed_len; k++)
1363 int len, max, local
[all...]
/freebsd-10.0-release/usr.sbin/ancontrol/
H A Dancontrol.c510 printf("TX max lifetime exceeded:\t\t\t[ %u ]\n",
512 printf("RX max lifetime exceeded:\t\t\t[ %u ]\n",
628 int i, max; local
635 max = (areq.an_len - 4) / sizeof(struct an_ltv_ssid_entry);
636 if ( max > MAX_SSIDS ) {
638 MAX_SSIDS, max);
639 max = MAX_SSIDS;
642 for (i = 0; i < max; i++)
1157 int max; local
1165 max
[all...]
/freebsd-10.0-release/crypto/openssl/ssl/
H A Ds2_pkt.c118 static int read_n(SSL *s,unsigned int n,unsigned int max,unsigned int extend);
322 static int read_n(SSL *s, unsigned int n, unsigned int max, argument
343 if (!s->read_ahead) max=n;
344 if (max > (unsigned int)(SSL2_MAX_RECORD_LENGTH_2_BYTE_HEADER+2))
345 max=SSL2_MAX_RECORD_LENGTH_2_BYTE_HEADER+2;
384 max-newb);
565 /* set k to the max number of bytes with 2
/freebsd-10.0-release/usr.sbin/bhyve/
H A Dvirtio.c505 uint64_t virtio_config_size, max; local
543 max = vc->vc_cfgsize ? vc->vc_cfgsize : 0x100000000;
544 if (newoff + size > max)
624 uint64_t virtio_config_size, max; local
660 max = vc->vc_cfgsize ? vc->vc_cfgsize : 0x100000000;
661 if (newoff + size > max)
741 "%s: write config reg %s: curq %d >= max %d\r\n",
/freebsd-10.0-release/contrib/libc++/src/
H A Dstrstream.cpp160 streamsize new_size = max<streamsize>(__alsize_, 2*old_size);
272 setg(eback(), newpos, _VSTD::max(newpos, egptr()));
302 setg(eback(), newpos, _VSTD::max(newpos, egptr()));
/freebsd-10.0-release/contrib/opie/
H A Dopieauto.c38 #ifndef max
39 #define max(x, y) (((x) > (y)) ? (x) : (y)) macro
40 #endif /* max */
178 (*c)->base = max(sequence - window + 1, OPIE_SEQUENCE_RESTRICT);
/freebsd-10.0-release/contrib/pam_modules/pam_passwdqc/
H A Dpasswdqc_check.c301 if (!reason && length > params->max) {
302 if (params->max == 8) {
313 if (length < params->min[1] && params->min[1] <= params->max)
/freebsd-10.0-release/sys/ia64/ia64/
H A Dsapic.c229 u_int i, max; local
241 max = (sapic_read(sa, SAPIC_VERSION) >> 16) & 0xff;
242 sa->sa_limit = base + max;
/freebsd-10.0-release/usr.sbin/bluetooth/bthidd/
H A Dserver.c30 * $Id: server.c,v 1.9 2006/09/07 21:06:53 max Exp $
50 #undef max macro
51 #define max(x, y) (((x) > (y))? (x) : (y)) macro
142 srv->maxfd = max(srv->ctrl, srv->intr);

Completed in 309 milliseconds

<<11121314151617181920>>