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

1234567891011>>

/osnet-11/usr/src/grub/grub2/grub-core/kern/ia64/
H A Ddl.c202 Elf_Rela *rel, *max; local
205 max = rel + s->sh_size / s->sh_entsize;
206 rel < max;
/osnet-11/usr/src/lib/libast/common/regex/
H A Dreglib.h286 short max; member in struct:Celt_s
308 int max; /* max index */ member in struct:Vector_s
487 int max; member in struct:Trie_s
/osnet-11/usr/src/lib/libdhcputil/common/
H A Ddhcp_symbol.c464 dsym_parse_intrange(const char *field, int *intval, int min, int max) argument
472 if (longval < min || longval > max) {
869 dsym_get_code_ranges(const char *cat, ushort_t *min, ushort_t *max, argument
879 *max = entry->dc_max;
/osnet-11/usr/src/lib/fm/topo/libtopo/common/
H A Dfmd.c95 topo_instance_t max, void *notused1, void *notused2)
94 fmd_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 Dcpu.c182 topo_instance_t min, topo_instance_t max, cpu_node_t *cpuip)
216 topo_instance_t min, topo_instance_t max, void *arg, void *notused2)
239 return (cpu_create(mod, pnode, name, min, max, cpuip));
252 min, max, NULL) < 0) {
181 cpu_create(topo_mod_t *mod, tnode_t *rnode, const char *name, topo_instance_t min, topo_instance_t max, cpu_node_t *cpuip) argument
215 cpu_enum(topo_mod_t *mod, tnode_t *pnode, const char *name, topo_instance_t min, topo_instance_t max, void *arg, void *notused2) argument
H A Dlegacy_hc.c97 topo_instance_t min, topo_instance_t max, void *notused1, void *notused2)
96 legacy_hc_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 Dpkg.c93 topo_instance_t min, topo_instance_t max, void *notused1, void *notused2)
92 pkg_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/sun4v/sun4vpi/common/
H A Dpi_pciexrc.c139 topo_instance_t max; local
154 max = PCIEX_MAX_DEVICE;
155 result = topo_node_range_create(mod, t_node, PCI_BUS, min, max);
167 min, max, NULL);
H A Dpi_bay.c440 int min = 0, max = 0; local
608 rv = topo_node_range_create(mod, *t_node, DISK, min, max);
617 rv = topo_mod_enumerate(mod, *t_node, DISK, DISK, min, max,
/osnet-11/usr/src/cmd/perl/contrib/Sun/Solaris/Project/
H A DProject.xs257 # ($max, $flags), where $max is the integer value
/osnet-11/usr/src/lib/fm/topo/modules/common/ses/common/
H A Dses.c2191 uint64_t max; local
2210 max = 0;
2215 if (ctlsnp->sen_instance > max)
2216 max = ctlsnp->sen_instance;
2227 "%llu %s nodes", cp->sec_csn, index, max + 1, SASEXPANDER);
2230 * The max number represent the number of elements
2237 * still creating the range based max number here.
2242 SASEXPANDER, 0, max) != 0) {
2296 * The max nubmer of the phy count is 256 since SES-2
2302 * matches with the max numbe
2474 uint64_t max; local
3175 int max; local
3303 int i, err, max; local
4164 ses_enum(topo_mod_t *mod, tnode_t *rnode, const char *name, topo_instance_t min, topo_instance_t max, void *arg, void *reqdata) argument
[all...]
/osnet-11/usr/src/cmd/powertop/common/
H A Dpowertop.h61 #define max(A, B) (((A) < (B)) ? (B) : (A)) macro
120 * This is the value of sizeof ("18446744073709551615"), which is the max
424 extern int pt_delta_str(char *s1, char *s2, uint64_t *delta, int max);
H A Dutil.c89 int max, cpus_conf; local
92 max = sysconf(_SC_CPUID_MAX);
96 if (max == -1 || cpus_conf == -1) {
97 max = cpus_conf = 1;
107 for (cpuid = 0; cpuid < max; cpuid++) {
262 * max string will contain n-1 ':'s and one null terminator
/osnet-11/usr/src/lib/libparted/common/libparted/fs/ext2/
H A Dext2_block_relocator.c149 int max; local
154 max = state->usedentries - 1;
159 if (min > max)
162 t = (min + max) >> 1;
166 max = t - 1;
/osnet-11/usr/src/lib/libxcurses/src/libc/xcurses/
H A Dm_cc.c51 int max; member in struct:__anon2735
61 if (sp->max <= sp->used)
85 string.max = n;
224 string.max = n;
244 if (string.used < string.max)
/osnet-11/usr/src/lib/pam_modules/authtok_check/
H A Dauthtok_check.c609 size_t pwlen, opwlen, max; local
615 max = pwdef->maxlength;
616 pwlen = MIN(strlen(pw), max);
617 opwlen = MIN(strlen(opw), max);
624 while (*opw != '\0' && *pw != '\0' && max-- != 0) {
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/
H A Dregexec.c3019 depending on the current iteration, min/max of {min,max} and
3099 cc.max = ARG2(scan);
3133 (long)cc->max, PTR2UV(cc))
3233 if (n >= cc->max) { /* Maximum greed exceeded? */
3268 if (n < cc->max) { /* More greed allowed? */
3361 n = ARG2(scan); /* max to match */
3523 n = ARG2(scan); /* max to match */
3529 n = ARG2(scan); /* max to match */
4015 S_regrepeat(pTHX_ regnode *p, I32 max) argument
4258 S_regrepeat_hard(pTHX_ regnode *p, I32 max, I32 *lp) argument
[all...]
/osnet-11/usr/src/lib/libpool/common/
H A Dpool_internal.c68 const char *c_max_prop = "max";
213 { "pset.max", POOL_VALUE_INITIALIZER, PP_STORED | PP_INIT, res_max_init,
570 uint64_t min, max; local
574 * max must be a uint
576 if (pool_value_get_uint64(pval, &max) != PO_SUCCESS) {
581 * max can't be less than min (if it exists)
589 if (max < min) {
594 * Ensure that changes to the max in a dynamic configuration
608 if (max < oldmax) {
610 * Ensure that the modified total max i
624 uint64_t min, max; local
1024 resource_get_max(const pool_resource_t *res, uint64_t *max) argument
[all...]
/osnet-11/usr/src/lib/libast/common/vmalloc/
H A Dvmprofile.c45 #define PFMAX(pf) ((pf)->data.data.fm.max)
52 Vmulong_t max; /* max busy space for region */ member in union:_pfdata_s::__anon1194
321 Vmulong_t nf, Vmulong_t sf, Vmulong_t max, Vmulong_t size)
323 static char* pfsummary(buf, na, sa, nf, sf, max, size)
329 Vmulong_t max;
341 if(max > 0)
343 buf = (*_Vmstrcpy)(buf, (*_Vmitoa)(max,-1), ':');
320 pfsummary(char* buf, Vmulong_t na, Vmulong_t sa, Vmulong_t nf, Vmulong_t sf, Vmulong_t max, Vmulong_t size) argument
/osnet-11/usr/src/lib/libshell/common/sh/
H A Dio.c403 int max,n, **fdptrs = shp->fdptrs; local
409 max = strtol(astconf("OPEN_MAX",NiL,NiL),NiL,0);
410 if(fd >= max)
416 if(n > max)
417 n = max;
418 max = shp->gd->lim.open_max;
420 if(max)
421 memcpy(shp->sftable,sftable,max*sizeof(Sfio_t*));
423 if(max)
424 memcpy(shp->fdptrs,fdptrs,max*sizeo
[all...]
H A Darray.c70 int *max; member in struct:fixed_array
107 fp->max = (int*)(fp+1);
108 fp->incr = fp->max+fp->ndim;
1069 if((fp->cur[dot]+1) < fp->max[dot])
1248 ap->header.nelem |= fp->max[0];
1320 sfprintf(out,"[%d]",fp->max[n]);
1358 fp->max = (int*)(fp+1);
1359 fp->incr = fp->max+n;
1361 fp->max[0] = (int)sh_arith(shp,(char*)sub);
1366 fp->max[
[all...]
/osnet-11/usr/src/lib/libpkg/common/
H A Dpkgserv.c183 size_t max = 0; local
209 if (len < max)
215 max = len;
230 &fullpath[max]) >= PATH_MAX) {
/osnet-11/usr/src/lib/libeti/form/common/
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/modules/common/disk/common/
H A Ddisk.c44 const char *name, topo_instance_t min, topo_instance_t max,
43 disk_enum(topo_mod_t *mod, tnode_t *baynode, const char *name, topo_instance_t min, topo_instance_t max, void *arg, void *notused) argument
/osnet-11/usr/src/lib/fm/topo/modules/common/xfp/common/
H A Dxfp.c207 topo_instance_t min, topo_instance_t max, void *notused, void *data)
206 xfp_enum(topo_mod_t *mod, tnode_t *rnode, const char *name, topo_instance_t min, topo_instance_t max, void *notused, void *data) argument

Completed in 117 milliseconds

1234567891011>>