Searched refs:min (Results 276 - 300 of 1007) sorted by relevance

<<11121314151617181920>>

/freebsd-10.0-release/usr.sbin/IPXrouted/
H A Dtimer.c134 htons(min(rt->rt_metric+1, HOPCNT_INFINITY));
196 htons(min(sap->sap.hops+1, HOPCNT_INFINITY));
/freebsd-10.0-release/usr.sbin/bluetooth/bthidd/
H A Dhid.c51 #undef min macro
52 #define min(x, y) (((x) < (y))? (x) : (y)) macro
/freebsd-10.0-release/contrib/llvm/lib/Support/
H A DConstantRange.cpp15 // ranges (other integral ranges use min/max values for special range values):
48 "Lower == Upper, but they aren't min or max value!");
580 // be non-wrapping, round the result min and max value to the appropriate
683 APInt min = getUnsignedMin().shl(Other.getUnsignedMin());
689 return ConstantRange(min, max + 1);
701 APInt min = getUnsignedMin().lshr(Other.getUnsignedMax()); local
702 if (min == max + 1)
705 return ConstantRange(min, max + 1);
H A DAllocator.cpp26 : SlabSize(size), SizeThreshold(std::min(size, threshold)),
/freebsd-10.0-release/contrib/ntp/scripts/monitoring/
H A Dntploopwatch1102 $minoffs = &min(@offs);
1142 print "offset min clipped from $minoffs to $miny\n"
1152 $minfreq = &min(@freq);
1188 ;# to precision of min max difference
1224 print("frequency min clipped from ",$minfreq-$freqbase,
1247 $mincmpl = &min(@cmpl);
1500 local($sec,$min,$hour,$mday,$mon,$year)
1581 $min = $1;
1610 $min = $1;
1638 $min
[all...]
/freebsd-10.0-release/sys/fs/nandfs/
H A Dnandfs_cleaner.c147 int64_t idx, min, max; local
159 idx = min = 0;
161 while (min <= max) {
162 idx = (min + max) / 2;
168 min = idx + 1;
/freebsd-10.0-release/usr.bin/ctlstat/
H A Dctlstat.c129 #ifndef min
130 #define min(x,y) (((x) < (y)) ? (x) : (y)) macro
457 for (i = 0; i < min(CTL_STAT_LUN_BITS,
567 for (i = 0; i < min(CTL_STAT_LUN_BITS, ctx->num_luns); i++) {
683 bit_nset(ctx.lun_mask, 0, min(ctx.numdevs - 1,
/freebsd-10.0-release/contrib/libarchive/libarchive/
H A Darchive_entry.c84 #define makedev(maj,min) ((0xff00 & ((maj)<<8)) | (0xffff00ff & (min)))
91 #define ae_makedev(maj, min) makedev(ND_LOCAL_NODE, (maj), (min))
94 #define ae_makedev(maj, min) makedev((maj), (min))
97 #define ae_makedev(maj, min) mkdev((maj), (min))
100 #define ae_makedev(maj, min) makedev((maj), (min))
[all...]
/freebsd-10.0-release/sys/kern/
H A Duipc_mbuf.c644 n->m_len = min(len, m->m_len - off);
886 count = min(m->m_len - off, len);
946 int chunk = min(nsize - n->m_len, m->m_len - moff);
1105 count = min(min(max(len, max_protohdr), space), n->m_len);
1151 count = min(min(max(len, max_protohdr), space), n->m_len);
1305 m->m_len = len = min(totlen, len);
1340 n->m_len = min(MLEN, len + off);
1347 m->m_len += min(le
[all...]
H A Dimgact_gzip.c340 i = min(siz, sizeof gz->a_out - gz->output);
367 i = min(siz, gz->file_offset - gz->output);
373 i = min(siz, gz->file_end - gz->output);
/freebsd-10.0-release/crypto/heimdal/lib/asn1/
H A Dgen_template.c55 else if (t->range->min == INT_MIN && t->range->max == INT_MAX)
57 else if (t->range->min == 0 && t->range->max == UINT_MAX)
59 else if (t->range->min == 0 && t->range->max == INT_MAX)
493 else if (t->range->min == INT_MIN && t->range->max == INT_MAX)
495 else if (t->range->min == 0 && t->range->max == UINT_MAX)
497 else if (t->range->min == 0 && t->range->max == INT_MAX)
501 name, t->range->min, t->range->max);
/freebsd-10.0-release/contrib/gperf/src/
H A Doutput.cc58 smallest_integral_type (int min, int max) argument
61 if (min >= SCHAR_MIN && max <= SCHAR_MAX) return "signed char";
62 if (min >= SHRT_MIN && max <= SHRT_MAX) return "short";
1334 int min = INT_MAX; local
1340 if (min > val)
1341 min = val;
1349 indent, const_readonly_array, smallest_integral_type (min, max),
1359 if (min < 0)
1362 for (int trunc = -min; (trunc /= 10) > 0;)
/freebsd-10.0-release/sys/dev/ppbus/
H A Dppi.c410 buffer, min(BUFSIZE, uio->uio_resid), &len);
478 while (!error && (len = min(uio->uio_resid, BUFSIZE))) {
525 while ((len = min(uio->uio_resid, BUFSIZE)) != 0) {
/freebsd-10.0-release/sys/net/
H A Dbpf_zerocopy.c275 count = min(len, PAGE_SIZE - poffset);
334 count = min(m->m_len - moffset, len);
335 count = min(count, PAGE_SIZE - poffset);
/freebsd-10.0-release/sys/ofed/drivers/net/mlx4/
H A Dcq.c277 int min = priv->eq_table.eq[0].load; local
280 if (priv->eq_table.eq[i].load < min) {
282 min = priv->eq_table.eq[i].load;
/freebsd-10.0-release/tools/regression/sockets/unix_seqpacket_exercise/
H A Dunix_seqpacket_exercise.c45 #define min(x, y) (x < y ? x : y) macro
257 truncsize = min(size, BUFLEN);
297 truncsize = min(size, BUFLEN);
/freebsd-10.0-release/tools/tools/vhba/mptest/
H A Dvhba_mptest.c294 data_len = min(cdb[4], csio->dxfer_len);
297 data_len = min(tw, csio->dxfer_len);
299 data_len = min(data_len, nbyte);
/freebsd-10.0-release/contrib/apr-util/include/
H A Dapr_memcache.h209 * @param min minimum number of client sockets to open
215 * @remark min, smax, and max are only used when APR_HAS_THREADS
220 apr_uint32_t min,
/freebsd-10.0-release/contrib/binutils/bfd/
H A Dmep-relocs.pl169 $min = -(1 << ($bits[$i]-1));
171 print NEW " if ($min > s || s > $max) r = bfd_reloc_overflow;\n";
/freebsd-10.0-release/contrib/gdb/gdb/
H A Ddefs.h130 #ifndef min
131 #define min(a, b) ((a) < (b) ? (a) : (b)) macro
1086 #ifndef min
1087 #define min(a, b) ((a) < (b) ? (a) : (b))
1084 #define min macro
H A Ddsrec.c264 payload_size = min (payload_size, sect->_raw_size - sectoff);
H A Dser-tcp.c80 tmp = min (port_str - name, (int) sizeof hostname - 1);
/freebsd-10.0-release/contrib/groff/src/utils/indxbib/
H A Dindxbib.cpp105 static void check_integer_arg(char opt, const char *arg, int min, int *res);
331 static void check_integer_arg(char opt, const char *arg, int min, int *res)
337 else if (n < min)
338 error("argument to -%1 must not be less than %2", opt, min);
/freebsd-10.0-release/contrib/llvm/include/llvm/Support/
H A DAllocator.h236 return Allocator.Allocate(Size, std::min((size_t)llvm::NextPowerOf2(Size),
/freebsd-10.0-release/contrib/llvm/lib/CodeGen/
H A DRegisterClassInfo.cpp99 MinCost = std::min(MinCost, Cost);

Completed in 182 milliseconds

<<11121314151617181920>>