Searched defs:max (Results 51 - 75 of 185) sorted by relevance

12345678

/osnet-11/usr/src/lib/libtsnet/common/
H A Dtsol_sgettpent.c72 get_tn_sl_range(brange_t *range, char *min, char *max) argument
76 if (min == NULL && max == NULL)
80 if (max == NULL)
87 if (str_to_label(max, &slp, MAC_LABEL, L_NO_CORRECTION, NULL) != 0)
/osnet-11/usr/src/lib/pam_modules/passwd_auth/
H A Dpasswd_auth.c83 int max; local
272 max = al[2].data.val_i;
275 if (max != -1 && lstchg != 0) {
294 * users with min>max are not allowed to
297 if (min > max) {
/osnet-11/usr/src/lib/scsi/plugins/ses/ses2/common/
H A Dses2_enclosure_ctl.c205 size_t len, max; local
217 max = sizeof (dummy.sspci_subenclosure_nickname);
218 if (len > max)
220 "maximum length %lu", nick, max));
/osnet-11/usr/src/lib/libproc/amd64/
H A DPisadep.c179 ulong_t count, max; local
181 max = MIN(sz / sizeof (uint32_t), TR_ARG_MAX);
187 return (max);
190 return (max);
200 return (max);
204 return (MIN(count, max));
/osnet-11/usr/src/lib/libproc/i386/
H A DPisadep.c140 ulong_t count, max; local
142 max = MIN(sz / sizeof (long), TR_ARG_MAX);
149 return (max);
159 return (max);
163 return (MIN(count, max));
/osnet-11/usr/src/lib/libshell/common/sh/
H A Denv.c46 int max; member in struct:_env_
94 if(ep->count > ep->max)
101 ep->max = ep->count;
207 ep->max = n-1;
/osnet-11/usr/src/lib/libldap4/common/
H A Dufn.c108 int max, i, err, scope, phase, tries; local
181 i = 0, max = 0;
198 max = 8;
199 } else if ( i >= max ) {
201 sizeof(char *) * 2 * max ))
210 max *= 2;
/osnet-11/usr/src/lib/libldap5/sources/ldap/common/
H A Dufn.c101 int max, i, err, scope = 0, phase, tries; local
169 i = 0, max = 0;
185 max = 8;
186 } else if ( i >= max ) {
188 dns, sizeof(char *) * 2 * max ))
195 max *= 2;
/osnet-11/usr/src/lib/libldap5/sources/ldap/util/
H A Dline64.c548 int max, cur, len, gotsome; local
551 max = cur = gotsome = 0;
583 while ( cur + (len + 1) > max ) {
585 max += BUFSIZ;
586 buf = (char *) malloc( max );
588 max *= 2;
589 buf = (char *) realloc( buf, max );
/osnet-11/usr/src/lib/libnisdb/yptol/
H A Dmap_ctrl.c62 * max_map: max number of maps in map_id_list
744 get_list_max(map_id_elt_t ***list, int *max) argument
747 *max = max_map;
/osnet-11/usr/src/lib/libnsl/rpc/
H A Dnetnamer.c133 int max = (int)sysconf(_SC_NGROUPS_MAX); local
146 while ((p = strchr(p, ',')) != NULL && len < max)
/osnet-11/usr/src/lib/libnsl/xpol/
H A Dxpol_lib.c201 uid_t min, uid_t max)
221 r->xr_uids.umax = max;
228 in_port_t min, in_port_t max)
249 r->xr_ports.pmax = max;
281 atoi_range(const char *n, uint_t min, uint_t max, int *err) argument
291 } else if (res < min || res > max) {
314 makerange(char *input, uint_t *min, uint_t *max, argument
323 *max = *min = atoi_range(input, minmin, maxmax, &err);
325 *max = atoi_range(p, minmin, maxmax, &err);
326 if (*min > *max) {
200 xpol_context_add_rule_uids(xpol_ctxt_t *ctxt, priv_set_t *set, uid_t min, uid_t max) argument
227 xpol_context_add_rule_ports(xpol_ctxt_t *ctxt, priv_set_t *set, int type, in_port_t min, in_port_t max) argument
353 uint_t min, max; local
[all...]
/osnet-11/usr/src/lib/libparted/common/libparted/cs/
H A Dconstraint.c117 * \p max, and to entirely contain \p min.
124 const PedGeometry* max)
130 PED_ASSERT (max != NULL, return NULL);
131 PED_ASSERT (ped_geometry_test_inside (max, min), return NULL);
133 ped_geometry_init (&start_range, min->dev, max->start,
134 min->start - max->start + 1);
136 max->end - min->end + 1);
141 min->length, max->length);
162 * \p max.
167 ped_constraint_new_from_max (const PedGeometry* max) argument
122 ped_constraint_new_from_min_max( const PedGeometry* min, const PedGeometry* max) argument
[all...]
/osnet-11/usr/src/lib/libparted/common/libparted/fs/ext2/
H A Dext2_inode_relocator.c64 int max; local
69 max = state->usedentries - 1;
74 if (min > max)
77 t = (min + max) >> 1;
82 max = t;
/osnet-11/usr/src/lib/libdtrace_jni/java/src/org/opensolaris/os/dtrace/
H A DDistribution.java167 long max; // next bucket minus one
168 long[] range; // two element array: { min, max }
173 max = range[1];
174 bucket = new Distribution.Bucket(min, max, frequencies[i]);
210 long max = range[1];
216 if (bucket.getMax() != max) {
217 throw new IllegalArgumentException("bucket max " +
218 bucket.getMax() + " at index " + i + ", expected " + max);
350 * Distribution} are consecutive, such that the max of one bucket is
363 private final long max; field in class:Distribution.Bucket
[all...]
/osnet-11/usr/src/lib/libeti/form/common/
H A Dchg_data.c93 int max = c->maxgrow; local
105 if (max)
106 grow = MIN(max - c->dcols, grow);
110 if (c->dcols == max)
115 if (max)
116 grow = MIN(max - c->drows, grow);
121 if (c->drows == max)
H A Dutility.c451 int max = f->maxgrow; local
461 } else if (!max || (onerow && f->dcols < max) ||
462 (!onerow && f->drows < max)) {
/osnet-11/usr/src/lib/fm/topo/libtopo/common/
H A Dmem.c102 topo_instance_t min, topo_instance_t max, void *notused1, void *notused2)
124 min, max, NULL) < 0) {
101 mem_enum(topo_mod_t *mod, tnode_t *pnode, const char *name, topo_instance_t min, topo_instance_t max, void *notused1, void *notused2) argument
H A Dmod.c100 topo_instance_t min, topo_instance_t max, void *notused1, void *notused2)
99 mod_enum(topo_mod_t *mod, tnode_t *pnode, const char *name, topo_instance_t min, topo_instance_t max, void *notused1, void *notused2) argument
H A Dzfs.c144 topo_instance_t max, void *notused1, void *notused2)
143 zfs_enum(topo_mod_t *mod, tnode_t *pnode, const char *name, topo_instance_t min, topo_instance_t max, void *notused1, void *notused2) argument
/osnet-11/usr/src/lib/fm/topo/modules/common/ipmi/common/
H A Dipmi_enum.c501 topo_instance_t min, topo_instance_t max, void *arg, void *unused)
500 ipmi_enum(topo_mod_t *mod, tnode_t *rnode, const char *name, topo_instance_t min, topo_instance_t max, void *arg, void *unused) argument
/osnet-11/usr/src/lib/fm/topo/modules/i86pc/x86pi/common/
H A Dx86pi.c151 topo_instance_t min, topo_instance_t max, void *pi_private, void *data)
283 int min, max; local
426 max = min + ncmp - 1;
438 f, min, max);
440 CHIP, min, max);
452 CHIP, CHIP, min, max,
454 min = max + 1;
150 x86pi_enum(topo_mod_t *mod, tnode_t *t_parent, const char *name, topo_instance_t min, topo_instance_t max, void *pi_private, void *data) argument
H A Dx86pi_bay.c286 * The max_inst_exp_bay value indicates that the max instance
384 int min = 0, max = 0; local
407 * instance nubmer is returned to the max inst var.
410 min, max, max_inst);
436 int min = 0, max = 0; local
445 rv = topo_mod_enumerate(mod, t_parent, BAY, BAY, min, max, inst);
465 int min = 0, max = 0; local
549 rv = topo_node_range_create(mod, tn_bay, DISK, min, max);
556 rv = topo_mod_enumerate(mod, tn_bay, DISK, DISK, min, max, NULL);
/osnet-11/usr/src/lib/fm/topo/modules/sun4v/chip/common/
H A Dchip_sun4v.c262 int max = -1; local
274 * find the min/max id of cpus per this cmp and create a cpu range
281 if ((max < 0) || (mcmp->cpumap_pid > max))
282 max = mcmp->cpumap_pid;
284 if (min < 0 || max < 0) {
285 topo_mod_dprintf(mod, "Invalid cpu range(%d,%d)\n", min, max);
288 if (topo_node_range_create(mod, rnode, name, 0, max+1) < 0) {
290 max, topo_mod_errmsg(mod));
368 topo_instance_t min, topo_instance_t max, md_info_
367 chip_create(topo_mod_t *mod, tnode_t *rnode, const char *name, topo_instance_t min, topo_instance_t max, md_info_t *chip) argument
437 chip_enum(topo_mod_t *mod, tnode_t *rnode, const char *name, topo_instance_t min, topo_instance_t max, void *arg, void *notused) argument
[all...]
/osnet-11/usr/src/lib/fm/topo/modules/sun4v/dimm/common/
H A Ddimm_sun4v.c409 topo_instance_t min, topo_instance_t max, void *arg, void *notused)
408 dimm_enum(topo_mod_t *mod, tnode_t *rnode, const char *name, topo_instance_t min, topo_instance_t max, void *arg, void *notused) argument

Completed in 45 milliseconds

12345678