Searched refs:max (Results 26 - 50 of 603) sorted by relevance

1234567891011>>

/illumos-gate/usr/src/cmd/ldapcachemgr/
H A Dcachemgr_parse.c47 int value, int min, int max)
49 if (value < min || value > max) {
52 facility, cachename, value, min, max);
46 cachemgr_set_integer(int *addr, char *facility, char *cachename, int value, int min, int max) argument
/illumos-gate/usr/src/boot/lib/libz/
H A Dinftrees.c42 unsigned min, max; /* minimum and maximum code lengths */ local
114 for (max = MAXBITS; max >= 1; max--)
115 if (count[max] != 0) break;
116 if (root > max) root = max;
117 if (max == 0) { /* no symbols to code at all */
126 for (min = 1; min < max; min++)
137 if (left > 0 && (type == CODES || max !
[all...]
/illumos-gate/usr/src/lib/libc/port/i18n/
H A Dwmemmove.c40 size_t max = SIZE_MAX / sizeof (wchar_t); local
42 if (n <= max) {
/illumos-gate/usr/src/lib/libldap5/sources/ldap/common/
H A Dcache.c66 int i, max, rc; local
91 max = GRABSIZE;
94 if ( i == (max - 1) ) {
95 max += GRABSIZE;
97 sizeof(LDAPMod *) * max );
130 if ( i == (max - 1) ) {
131 max++;
133 sizeof(LDAPMod *) * max );
/illumos-gate/usr/src/cmd/dtrace/test/tst/common/speculation/
H A Derr.D_AGG_SPEC.SpeculateWithMax.d49 @Maximus["speculate"] = max(i);
/illumos-gate/usr/src/uts/sun4u/montecarlo/io/
H A Dttymux.conf33 sm-max-units = 6; # max no. of linked lower streams.
/illumos-gate/usr/src/lib/gss_mechs/mech_krb5/krb5/os/
H A Ddnsglue.h132 #define INCR_OK(base, max, ptr, incr) \
133 ((incr) <= (max) - ((const unsigned char *)(ptr) \
145 #define SAFE_GETUINT16(base, max, ptr, incr, s, label) \
147 if (!INCR_OK(base, max, ptr, incr)) goto label; \
/illumos-gate/usr/src/cmd/dtrace/test/tst/common/aggs/
H A Dtst.multiaggs1.d48 @a[pid] = max(new_time);
54 @g[timestamp] = max(new_time);
H A Dtst.multiaggs2.d49 @d = max(i);
/illumos-gate/usr/src/cmd/sgs/libelf/misc/
H A DString.h37 int start,end,max; member in struct:__anon1677
/illumos-gate/usr/src/cmd/powertop/common/
H A Dutil.c88 int max, cpus_conf; local
91 max = sysconf(_SC_CPUID_MAX);
95 if (max == -1 || cpus_conf == -1) {
96 max = cpus_conf = 1;
102 for (cpuid = 0; cpuid < max; cpuid++) {
/illumos-gate/usr/src/cmd/lvm/metassist/layout/
H A Dlayout_svm_util.h77 extern int get_max_number_of_devices(int *max);
78 extern int get_max_number_of_disksets(int *max);
/illumos-gate/usr/src/cmd/dtrace/test/tst/common/printa/
H A Dtst.basics.d42 @d = max(1);
H A Dtst.walltimestamp.ksh45 @bar = max(walltimestamp);
/illumos-gate/usr/src/cmd/eqn/
H A Deqnbox.c26 b = max(ebase[p1], ebase[p2]);
27 eht[yyval] = h = b + max(eht[p1]-ebase[p1], eht[p2]-ebase[p2]);
/illumos-gate/usr/src/lib/fm/topo/maps/SUNW,Netra-X4200-M2/
H A DNetra-X4200-M2-disk-hc-topology.xmlgen32 <range name='bay' min='0' max='3'>
63 <range name='disk' min='0' max='0'>
/illumos-gate/usr/src/lib/fm/topo/maps/SUNW,Sun-Fire-X4200-M2/
H A DSun-Fire-X4200-M2-disk-hc-topology.xmlgen33 <range name='bay' min='0' max='3'>
64 <range name='disk' min='0' max='0'>
/illumos-gate/usr/src/lib/fm/topo/maps/SUNW,Sun-Fire-X4200-Server/
H A DSun-Fire-X4200-Server-disk-hc-topology.xmlgen33 <range name='bay' min='0' max='3'>
64 <range name='disk' min='0' max='0'>
/illumos-gate/usr/src/lib/fm/topo/maps/SUNW,Sun-Fire-X4600-M2/
H A DSun-Fire-X4600-M2-disk-hc-topology.xmlgen32 <range name='bay' min='0' max='3'>
63 <range name='disk' min='0' max='0'>
/illumos-gate/usr/src/lib/libc/port/locale/
H A Drunefile.h38 int32_t max; member in struct:__anon3017
/illumos-gate/usr/src/ucblib/libucb/port/stdio/
H A Dprint.h77 #define max(a, b) ((a) > (b)? (a): (b)) macro
/illumos-gate/usr/src/uts/common/io/fibre-channel/fca/qlc/
H A Dqlc.conf72 max-frame-length=2048;
225 #Name: PCI max read request override
227 #Usage: This field specifies the value to be used for the PCI max read
234 pci-max-read-request=2048;
/illumos-gate/usr/src/lib/libbc/libc/stdio/common/
H A Dtempnam.c36 #define max(A,B) (((A)<(B))?(B):(A)) macro
61 if((p=malloc((unsigned)(max(max(x,y),z)+16))) == NULL)
/illumos-gate/usr/src/lib/libc/port/print/
H A Dsnprintf.c50 size_t max = MAXINT; local
76 } else if (n > max) {
91 if ((size_t)count > max) {
H A Dvsnprintf.c63 size_t max = MAXINT; local
89 } else if (n > max) {
104 if ((size_t)count > max) {

Completed in 126 milliseconds

1234567891011>>