Home
last modified time | relevance | path

Searched refs:max (Results 226 – 250 of 724) sorted by relevance

12345678910>>...29

/illumos-gate/usr/src/uts/common/io/comstar/port/qlt/
H A Dqlt.conf37 pci-max-read-request=2048;
/illumos-gate/usr/src/cmd/dtrace/test/tst/common/aggs/
H A Derr.D_AGG_SCALAR.maxnoarg.d36 @a[pid] = max(probefunc);
H A Derr.D_AGG_REDEF.redef.d42 @a = max(0);
H A Dtst.max.d47 @a = max(i);
/illumos-gate/usr/src/cmd/csh/
H A Dprintf.c87 #define max(a, b) ((a) > (b) ? (a) : (b)) macro
154 char buf[max(MAXDIGS, max(MAXFCVT + DMAXEXP, MAXECVT) + 1)]; in _print()
/illumos-gate/usr/src/test/util-tests/tests/libsff/
H A Dlibsff_br.out2 max: 20000 MBd
/illumos-gate/usr/src/uts/common/io/aac/
H A Daac.conf47 dma-max=0x20000;
/illumos-gate/usr/src/lib/fm/topo/maps/SMCI,SSG-2029P-ACR24L/
H A DSSG-2029P-ACR24L-disk-hc-topology.xmlgenksh126 <range name='bay' min='0' max='25'>
160 <range name='disk' min='0' max='0'>
/illumos-gate/usr/src/contrib/ast/src/cmd/ksh93/sh/
H A Darray.c71 int *max; member
108 fp->max = (int*)(fp+1); in array_scope()
109 fp->incr = fp->max+fp->ndim; in array_scope()
1105 if((fp->cur[dot]+1) < fp->max[dot]) in nv_nextsub()
1303 ap->header.nelem |= fp->max[0]; in nv_putsub()
1375 sfprintf(out,"[%d]",fp->max[n]); in nv_arrfixed()
1419 fp->max = (int*)(fp+1); in array_fixed_init()
1420 fp->incr = fp->max+n; in array_fixed_init()
1441 fp->nelem = sz*fp->max[0]; in array_fixed_init()
1442 ap->nelem = fp->max[0]; in array_fixed_init()
[all …]
/illumos-gate/usr/src/uts/sun4u/sunfire/io/
H A Dfhc.c1608 envstat->max = NA_TEMP; in init_temp_arrays()
1927 if ((envstat->max == NA_TEMP) || (real_temp > envstat->max)) { in update_temp()
1928 envstat->max = real_temp; in update_temp()
2087 max = tempstat->l1[0]; in overtemp_kstat_update()
2093 (tempstat->l1[i] > max)) { in overtemp_kstat_update()
2094 max = tempstat->l1[i]; in overtemp_kstat_update()
2106 (tempstat->l2[i] > max)) { in overtemp_kstat_update()
2107 max = tempstat->l2[i]; in overtemp_kstat_update()
2120 max = tempstat->l3[i]; in overtemp_kstat_update()
2133 max = tempstat->l4[i]; in overtemp_kstat_update()
[all …]
/illumos-gate/usr/src/lib/libpool/common/
H A Dpool_internal.c569 uint64_t min, max; in res_set_max() local
575 if (pool_value_get_uint64(pval, &max) != PO_SUCCESS) { in res_set_max()
588 if (max < min) { in res_set_max()
607 if (max < oldmax) { in res_set_max()
614 max - oldmax)); in res_set_max()
623 uint64_t min, max; in res_set_min() local
638 if (pool_value_get_uint64(&val, &max) != PO_SUCCESS) { in res_set_min()
642 if (min > max) { in res_set_min()
1023 resource_get_max(const pool_resource_t *res, uint64_t *max) in resource_get_max() argument
1025 return (resource_get_common(res, c_max_prop, max)); in resource_get_max()
/illumos-gate/usr/src/uts/common/xen/io/
H A Dxpvtap.c1486 uint_t max; in xpvtap_rs_alloc() local
1496 max = rstruct->rs_max; in xpvtap_rs_alloc()
1503 for (index = min; index <= max; index++) { in xpvtap_rs_alloc()
1523 if (rstruct->rs_last > max) { in xpvtap_rs_alloc()
1538 if (rstruct->rs_last > max) { in xpvtap_rs_alloc()
1596 uint_t max; in xpvtap_rs_flush() local
1605 max = rstruct->rs_max; in xpvtap_rs_flush()
1613 for (index = min; index <= max; index++) { in xpvtap_rs_flush()
1630 if (rstruct->rs_last > max) { in xpvtap_rs_flush()
/illumos-gate/usr/src/cmd/smbsrv/smbd/
H A Dsmbd_ntlmssp.c558 if (sb->sb_offset > mb->max) in decode_secbuf_bin()
560 if (sb->sb_length > (mb->max - sb->sb_offset)) in decode_secbuf_bin()
584 if (sb->sb_offset > mb->max) in decode_secbuf_str()
586 if (sb->sb_length > (mb->max - sb->sb_offset)) in decode_secbuf_str()
/illumos-gate/usr/src/lib/libdhcputil/common/
H A Ddhcp_symbol.c462 dsym_parse_intrange(const char *field, int *intval, int min, int max) in dsym_parse_intrange() argument
470 if (longval < min || longval > max) { in dsym_parse_intrange()
867 dsym_get_code_ranges(const char *cat, ushort_t *min, ushort_t *max, in dsym_get_code_ranges() argument
877 *max = entry->dc_max; in dsym_get_code_ranges()
/illumos-gate/usr/src/cmd/ipdadm/
H A Dipdadm.c193 ipdadm_parse_long(const char *str, const char *name, long min, long max) in ipdadm_parse_long() argument
216 if (val < min || val > max) { in ipdadm_parse_long()
218 "%ld inclusive\n", g_pname, name, min, max); in ipdadm_parse_long()
/illumos-gate/usr/src/tools/smatch/src/
H A Dcheck_uninitialized.c102 sval_t max; in match_negative_comparison() local
118 if (get_implied_max(expr->left, &max) && max.value == 0) in match_negative_comparison()
/illumos-gate/usr/src/lib/libilb/common/
H A Dlibilb_impl.h45 #if !defined max
46 #define max(a, b) ((a) > (b) ? (a) : (b)) macro
/illumos-gate/usr/src/test/zfs-tests/tests/functional/redundancy/
H A Dredundancy.kshlib56 typeset -i max=$2
60 ((value = RANDOM % (max + 1)))
/illumos-gate/usr/src/uts/common/vm/
H A Dseg_vn.h161 #define SEGVN_ZFOD_ARGS(prot, max) \ argument
162 { NULL, NULL, 0, MAP_PRIVATE, prot, max, 0, NULL, 0, 0 }
/illumos-gate/usr/src/lib/gss_mechs/mech_krb5/mech/
H A Ddisp_major_status.c45 #define GSS_ERROR_STR(value, array, select, min, max, num) \ argument
46 (((select(value) < (min)) || (select(value) > (max))) ? NULL : \
/illumos-gate/usr/src/cmd/krb5/kdestroy/
H A Dkdestroy.c66 #define GET_PROGNAME(x) max(max(strrchr((x), '/'), strrchr((x), '\\')) + 1,(x))
/illumos-gate/usr/src/cmd/dtrace/test/tst/common/speculation/
H A Derr.D_AGG_SPEC.SpeculateWithMax.d47 @Maximus["speculate"] = max(i);
/illumos-gate/usr/src/lib/libdtrace/common/
H A Ddt_consume.c550 max++; in dt_print_quanthdr_packed()
557 max++; in dt_print_quanthdr_packed()
564 for (i = min; i <= max; i++) { in dt_print_quanthdr_packed()
827 if (max < DTRACE_QUANTIZE_NBUCKETS - 1) in dt_print_quantize_packed()
828 max++; in dt_print_quantize_packed()
837 for (i = min; i <= max; i++) { in dt_print_quantize_packed()
842 for (i = min; i <= max; i++) { in dt_print_quantize_packed()
939 int min, max, base, err; in dt_print_lquantize_packed() local
959 max = levels + 1; in dt_print_lquantize_packed()
971 for (i = min; i <= max; i++) { in dt_print_lquantize_packed()
[all …]
/illumos-gate/usr/src/cmd/dtrace/test/tst/common/printa/
H A Dtst.walltimestamp.ksh45 @bar = max(walltimestamp);
/illumos-gate/usr/src/lib/libc/port/locale/
H A Drunefile.h38 int32_t max; member

12345678910>>...29