Searched refs:max (Results 126 - 150 of 977) sorted by relevance

1234567891011>>

/freebsd-9.3-release/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/
H A DHTMLDiagnostics.cpp59 const PathDiagnosticPiece& P, unsigned num, unsigned max);
133 unsigned max = n; local
138 HandlePiece(R, FID, **I, n, max);
274 unsigned num, unsigned max) {
327 if (num == max)
382 os << "; max-width:" << em << "em";
385 os << "; max-width:100em";
389 if (max > 1) {
429 if (max > 1) {
431 if (num < max) {
272 HandlePiece(Rewriter& R, FileID BugFileID, const PathDiagnosticPiece& P, unsigned num, unsigned max) argument
[all...]
/freebsd-9.3-release/sys/contrib/rdma/
H A Dtypes.h42 find_first_zero_bit(volatile void *p, int max) argument
47 for (b = 0; b < max; b += 32) {
57 return (max);
/freebsd-9.3-release/sys/dev/acpi_support/
H A Dacpi_panasonic.c350 UINT32 max, min; local
358 hkey_lcd_brightness_max(h, HKEY_GET, &max);
360 if (*val < min || *val > max)
433 int arg, max, min; local
441 hkey_lcd_brightness_max(h, HKEY_GET, &max);
444 arg -= max / HKEY_LCD_BRIGHTNESS_DIV;
447 else if (arg > max)
448 arg = max;
453 hkey_lcd_brightness_max(h, HKEY_GET, &max);
456 arg += max / HKEY_LCD_BRIGHTNESS_DI
[all...]
/freebsd-9.3-release/usr.sbin/sysinstall/
H A Dmain.c56 int choice, scroll, curr, max, status; local
215 choice = scroll = curr = max = 0;
216 dmenuOpen(&MenuInitial, &choice, &scroll, &curr, &max, TRUE);
H A Dmisc.c241 void *data, void *aux, int *curr, int *max)
245 if (*curr == *max) {
246 *max += 20;
247 list = (dialogMenuItem *)safe_realloc(list, sizeof(dialogMenuItem) * *max);
263 items_free(dialogMenuItem *list, int *curr, int *max) argument
272 *curr = *max = 0;
417 initLayoutDialog(WINDOW *win, Layout *layout, int x, int y, int *max) argument
446 *max = n - 1;
453 layoutDialogLoop(WINDOW *win, Layout *layout, ComposeObj **obj, int *n, int max, int *cbutton, int *cancel) argument
482 if (*n < max)
237 item_add(dialogMenuItem *list, char *prompt, char *title, int (*checked)(dialogMenuItem *self), int (*fire)(dialogMenuItem *self), void (*selected)(dialogMenuItem *self, int is_selected), void *data, void *aux, int *curr, int *max) argument
[all...]
/freebsd-9.3-release/crypto/openssl/crypto/x509v3/
H A Dv3_asid.c80 ASN1_SIMPLE(ASRange, max, ASN1_INTEGER)
135 if ((s = i2s_ASN1_INTEGER(NULL, aor->u.range->max)) == NULL)
174 a->u.range->min != NULL && a->u.range->max != NULL));
178 b->u.range->min != NULL && b->u.range->max != NULL));
185 return r != 0 ? r : ASN1_INTEGER_cmp(a->u.range->max,
186 b->u.range->max);
228 int which, ASN1_INTEGER *min, ASN1_INTEGER *max)
257 if (max == NULL) {
266 ASN1_INTEGER_free(aor->u.range->max);
267 aor->u.range->max
[all...]
/freebsd-9.3-release/contrib/libstdc++/include/std/
H A Dstd_limits.h293 static _Tp max() throw() { return static_cast<_Tp>(0); } function in struct:numeric_limits
323 static bool max() throw() function in struct:numeric_limits
377 static char max() throw() function in struct:numeric_limits
428 static signed char max() throw() function in struct:numeric_limits
479 static unsigned char max() throw() function in struct:numeric_limits
530 static wchar_t max() throw() function in struct:numeric_limits
581 static short max() throw() function in struct:numeric_limits
632 static unsigned short max() throw() function in struct:numeric_limits
683 static int max() throw() function in struct:numeric_limits
734 static unsigned int max() thro function in struct:numeric_limits
785 static long max() throw() function in struct:numeric_limits
836 static unsigned long max() throw() function in struct:numeric_limits
887 static long long max() throw() function in struct:numeric_limits
938 static unsigned long long max() throw() function in struct:numeric_limits
989 static float max() throw() function in struct:numeric_limits
1046 static double max() throw() function in struct:numeric_limits
1103 static long double max() throw() function in struct:numeric_limits
[all...]
/freebsd-9.3-release/contrib/ntp/scripts/
H A Dsummary.in113 sub max
150 $loop_tmax = max($loop_tmax, $offs);
152 $loop_fmax = max($loop_fmax, $freq);
245 $peer_tmax{$i} = max($peer_tmax{$i}, $offs);
247 $peer_dist{$i} = max($peer_dist{$i}, $dist);
255 " ident cnt mean rms max delay dist disp\n";
300 my $max;
327 $max = $Fld[4];
328 $peer_max{$i} = max($peer_max{$i}, $max);
[all...]
/freebsd-9.3-release/contrib/gcc/
H A Dtree-ssa-propagate.h99 tree max; member in struct:value_range_d
/freebsd-9.3-release/contrib/libpcap/
H A Dpcap-dos.h79 #define max(a,b) _max(a,b) macro
86 #ifndef max
87 #define max(a,b) ((a) < (b) ? (b) : (a)) macro
164 int (*copy_rx_buf) (BYTE *buf, int max); /* rx-copy (pktdrvr only) */
/freebsd-9.3-release/contrib/libstdc++/include/backward/
H A Dalgobase.h70 using std::max;
/freebsd-9.3-release/contrib/smbfs/include/
H A Dcflib.h58 int ival; /* int/bool values, or max len for str value */
61 int max; /* max for ival */ member in struct:opt_args
/freebsd-9.3-release/contrib/xz/src/xz/
H A Dutil.c58 str_to_uint64(const char *name, const char *value, uint64_t min, uint64_t max) argument
66 // Accept special value "max". Supporting "min" doesn't seem useful.
67 if (strcmp(value, "max") == 0)
68 return max;
126 if (result < min || result > max)
134 name, min, max);
H A Dutil.h36 /// \param max Maximum valid value
38 /// \return Parsed value that is in the range [min, max]. Does not return
42 uint64_t min, uint64_t max);
/freebsd-9.3-release/crypto/heimdal/tests/java/
H A Dcheck-kinit.in68 --realm-max-ticket-life=1day \
69 --realm-max-renewable-life=1month \
/freebsd-9.3-release/crypto/heimdal/tests/kdc/
H A Dcheck-keys.in69 --realm-max-ticket-life=1day \
70 --realm-max-renewable-life=1month \
H A Dcheck-uu.in78 --realm-max-ticket-life=1day \
79 --realm-max-renewable-life=1month \
/freebsd-9.3-release/lib/libc/gen/
H A Ddisklabel.c70 char p, max, psize[3], pbsize[3], local
122 max = 'a' - 1;
145 max = p;
148 dp->d_npartitions = max + 1 - 'a';
/freebsd-9.3-release/sys/dev/ppbus/
H A Dppb_base.c53 * max is a delay in 10-milliseconds
56 ppb_poll_bus(device_t bus, int max, argument
66 for (j = 0; j < ((how & PPB_POLL) ? max : 1); j++) {
76 for (i = 0; max == PPB_FOREVER || i < max-1; i++) {
/freebsd-9.3-release/sys/dev/vt/colors/
H A Dvt_termcolors.c65 #define CF(_f, _i) ((_f ## max * color_def[(_i)]._f / 100) << _f ## offset)
/freebsd-9.3-release/sys/gnu/fs/xfs/FreeBSD/
H A Dxfs_sysctl.h28 int max; member in struct:xfs_sysctl_val
/freebsd-9.3-release/tools/tools/ath/common/
H A Ddiag.h60 u_int32_t max, const char *alt_fmt);
/freebsd-9.3-release/crypto/openssl/crypto/pem/
H A Dpem_seal.c76 int i, j, max = 0; local
85 if (j > max)
86 max = j;
88 s = (char *)OPENSSL_malloc(max * 2);
/freebsd-9.3-release/crypto/openssl/crypto/buffer/
H A Dbuffer.h80 int max; /* size of buffer */ member in struct:buf_mem_st
/freebsd-9.3-release/sys/ofed/drivers/infiniband/hw/mlx4/
H A Dsrq.c101 srq->msrq.max = roundup_pow_of_two(init_attr->attr.max_wr + 1);
104 desc_size = max(32UL,
110 buf_size = srq->msrq.max * desc_size;
155 srq->tail = srq->msrq.max - 1;
158 for (i = 0; i < srq->msrq.max; ++i) {
161 cpu_to_be16((i + 1) & (srq->msrq.max - 1));
178 srq->wrid = kmalloc(srq->msrq.max * sizeof (u64), GFP_KERNEL);
204 init_attr->attr.max_wr = srq->msrq.max - 1;
247 if (attr->srq_limit >= srq->msrq.max){
282 srq_attr->max_wr = srq->msrq.max
[all...]

Completed in 334 milliseconds

1234567891011>>