/titanic_51/usr/src/cmd/dtrace/test/tst/common/java_api/ |
H A D | tst.Bean.ksh.out | 45 , shebang!], value = class org.opensolaris.os.dtrace.LinearDistribution[base = 1, step = 10, buckets = [org.opensolaris.os.dtrace.Distribution$Bucket[min = 1, max = 10, frequency = 0], org.opensolaris.os.dtrace.Distribution$Bucket[min = 11, max = 20, frequency = 1], org.opensolaris.os.dtrace.Distribution$Bucket[min = 21, max = 30, frequency = 2], org.opensolaris.os.dtrace.Distribution$Bucket[min = 31, max = 40, frequency = 3], org.opensolaris.os.dtrace.Distribution$Bucket[min = 41, max = 50, frequency = 4], org.opensolaris.os.dtrace.Distribution$Bucket[min = 51, max = 60, frequency = 5], org.opensolaris.os.dtrace.Distribution$Bucket[min = 61, max = 70, frequency = 6], org.opensolaris.os.dtrace.Distribution$Bucket[min = 71, max = 80, frequency = 7], org.opensolaris.os.dtrace.Distribution$Bucket[min = 81, max = 90, frequency = 8], org.opensolaris.os.dtrace.Distribution$Bucket[min [all...] |
/titanic_51/usr/src/cmd/dtrace/test/tst/common/aggs/ |
H A D | tst.aggpackbanner.ksh.out | 3 key min .------------------------------------------. max | count 12 key min .------------------------------------------. max | count 21 key min .------------------------------------------. max | count 30 key min .------------------------------------------. max | count 39 key min .------------------------------------------. max | count 49 key min .------------------------------------------. max | count 58 key min .------------------------------------------. max | count 67 key min .------------------------------------------. max | count 76 key min .------------------------------------------. max | count 86 key min [all...] |
H A D | tst.aggpack.d.out | 3 min .--------------------------------. max | count 7 min .--------------------------------. max | count 11 min .---. max | count 14 key min .---. max | count 17 key min .---. max | count 20 key min .---. max | count 23 key min .---. max | count
|
/titanic_51/usr/src/lib/libdtrace_jni/java/src/org/opensolaris/os/dtrace/ |
H A D | Distribution.java | 166 long min; // current bucket in createBuckets() local 168 long[] range; // two element array: { min, max } in createBuckets() 172 min = range[0]; in createBuckets() 174 bucket = new Distribution.Bucket(min, max, frequencies[i]); in createBuckets() 209 long min = range[0]; in checkBucketRange() local 212 if (bucket.getMin() != min) { in checkBucketRange() 213 throw new IllegalArgumentException("bucket min " + in checkBucketRange() 214 bucket.getMin() + " at index " + i + ", expected " + min); in checkBucketRange() 351 * always one less than the min of the next bucket (or {@link 361 private final long min; field in Distribution.Bucket 541 int min = -1; getDisplayRange() local [all...] |
/titanic_51/usr/src/cmd/sgs/libconv/common/ |
H A D | time.c | 41 int hour, min; in conv_time() local 57 if ((min = sec / 60) != 0) in conv_time() 59 if ((hour = min / 60) != 0) in conv_time() 60 min = min % 60; in conv_time() 64 MSG_ORIG(MSG_TIME_HMSF), hour, min, sec, usec); in conv_time() 65 else if (min) in conv_time() 67 MSG_ORIG(MSG_TIME_MSF), min, sec, usec); in conv_time()
|
/titanic_51/usr/src/lib/libuutil/common/ |
H A D | uu_strtoint.c | 165 int64_t min, int64_t max) in uu_strtoint() argument 170 if (min > max) in uu_strtoint() 175 if (max > INT8_MAX || min < INT8_MIN) in uu_strtoint() 179 if (max > INT16_MAX || min < INT16_MIN) in uu_strtoint() 183 if (max > INT32_MAX || min < INT32_MIN) in uu_strtoint() 187 if (max > INT64_MAX || min < INT64_MIN) in uu_strtoint() 194 if (min == 0 && max == 0) { in uu_strtoint() 195 min = -(1ULL << (8 * sz - 1)); in uu_strtoint() 204 if (val < min) { in uu_strtoint() 236 uint64_t min, uint64_ in uu_strtouint() argument [all...] |
/titanic_51/usr/src/lib/libcurses/screen/ |
H A D | init_color.c | 128 double max, min; in _rgb_to_hls() local 133 min = MIN(r, g, b); in _rgb_to_hls() 137 l = (max + min) / 2; in _rgb_to_hls() 141 if (max == min) { in _rgb_to_hls() 146 s = (max - min) / (max + min); in _rgb_to_hls() 148 s = (max - min) / (2 - max - min); in _rgb_to_hls() 152 rc = (max - r) / (max - min); in _rgb_to_hls() 153 gc = (max - g) / (max - min); in _rgb_to_hls() [all...] |
/titanic_51/usr/src/cmd/devfsadm/ |
H A D | devpolicy.c | 162 char *min; in loadpolicy() local 211 min = strchr(maj, ':'); in loadpolicy() 213 if (min != NULL) { in loadpolicy() 214 *min++ = '\0'; in loadpolicy() 215 if (strchr(min, ':') != NULL) { in loadpolicy() 221 min = "*"; in loadpolicy() 228 if (*min == '(') { in loadpolicy() 232 if (parse_minor_range(min, &dp->dps_lomin, in loadpolicy() 234 err_print(INVALID_MINOR, min); in loadpolicy() 239 if (strlen(min) > in loadpolicy() [all...] |
/titanic_51/usr/src/uts/common/inet/ipf/ |
H A D | misc.c | 30 void mb_copydata(min, off, len, buf) in mb_copydata() argument 31 mblk_t *min; in mb_copydata() 39 for (m = min; (m != NULL) && (len > 0); m = m->b_cont) { 44 olen = min(off, mlen); 53 clen = min(mlen, len); 61 void mb_copyback(min, off, len, buf) in mb_copyback() argument 62 mblk_t *min; in mb_copyback() 70 for (m = min, mp = NULL; (m != NULL) && (len > 0); m = m->b_cont) { 77 olen = min(off, mlen); 86 clen = min(mle [all...] |
/titanic_51/usr/src/uts/common/io/ib/adapters/hermon/ |
H A D | hermon_cfg.c | 300 cp->cp_log_num_mtt = min(hermon_log_num_mtt, devlim->log_max_mtt); in hermon_cfg_profile_init_phase2() 301 cp->cp_log_num_dmpt = min(hermon_log_num_dmpt, devlim->log_max_dmpt); in hermon_cfg_profile_init_phase2() 304 cp->cp_log_max_mrw_sz = min(hermon_log_max_mrw_sz, in hermon_cfg_profile_init_phase2() 306 cp->cp_log_num_pd = min(hermon_log_num_pd, devlim->log_max_pd); in hermon_cfg_profile_init_phase2() 307 cp->cp_log_num_qp = min(hermon_log_num_qp, devlim->log_max_qp); in hermon_cfg_profile_init_phase2() 308 cp->cp_log_num_cq = min(hermon_log_num_cq, devlim->log_max_cq); in hermon_cfg_profile_init_phase2() 309 cp->cp_log_num_srq = min(hermon_log_num_srq, devlim->log_max_srq); in hermon_cfg_profile_init_phase2() 310 cp->cp_log_num_eq = min(hermon_log_num_eq, devlim->log_max_eq); in hermon_cfg_profile_init_phase2() 311 cp->cp_log_eq_sz = min(hermon_log_eq_sz, devlim->log_max_eq_sz); in hermon_cfg_profile_init_phase2() 313 min(hermon_log_num_rdb_per_q in hermon_cfg_profile_init_phase2() [all...] |
/titanic_51/usr/src/lib/libsqlite/test/ |
H A D | minmax.test | 16 # aggregate min() and max() functions and which are handled as 55 execsql {SELECT min(x) FROM t1} 70 execsql {SELECT min(x) FROM t1} 96 execsql {SELECT min(a) FROM t2} 130 SELECT coalesce(min(x+0),-1), coalesce(max(x+0),-1) FROM 149 # Make sure the min(x) and max(x) optimizations work on empty tables 155 SELECT coalesce(min(x),999) FROM t3; 160 SELECT coalesce(min(rowid),999) FROM t3; 179 # Make sure the min(x) and max(x) optimizations work when there 184 SELECT min( [all...] |
/titanic_51/usr/src/uts/common/fs/pcfs/ |
H A D | pc_subr.c | 121 uint_t year, month, day, hour, min, sec; in pc_tvtopct() local 157 min = (int)(unixtime / 60); in pc_tvtopct() 158 unixtime -= 60 * min; in pc_tvtopct() 163 PC_DPRINTF3(1, "ux2pc time: %dh%dm%ds\n", hour, min, sec); in pc_tvtopct() 170 ASSERT(min < 60); in pc_tvtopct() 174 LE_16(hour << HOURSHIFT | min << MINSHIFT | (sec / 2) << SECSHIFT); in pc_tvtopct() 192 uint_t year, month, day, hour, min, sec; in pc_pcttotv() local 195 min = (LE_16(pctp->pct_time) >> MINSHIFT) & MINMASK; in pc_pcttotv() 213 hour > 23 || min > 59 || sec > 59) { in pc_pcttotv() 216 day, month, year, hour, min, se in pc_pcttotv() [all...] |
/titanic_51/usr/src/boot/lib/libz/ |
H A D | inftrees.c | 42 unsigned min, max; /* minimum and maximum code lengths */ local 126 for (min = 1; min < max; min++) 127 if (count[min] != 0) break; 128 if (root < min) root = min; 202 len = min; /* starting code length */ 235 min = fill; /* save offset to next table */ 266 next += min; /* her [all...] |
/titanic_51/usr/src/contrib/zlib/ |
H A D | inftrees.c | 38 unsigned min, max; /* minimum and maximum code lengths */ in inflate_table() local 122 for (min = 1; min < max; min++) in inflate_table() 123 if (count[min] != 0) break; in inflate_table() 124 if (root < min) root = min; in inflate_table() 196 len = min; /* starting code length */ in inflate_table() 229 min = fill; /* save offset to next table */ in inflate_table() 260 next += min; /* her in inflate_table() [all...] |
/titanic_51/usr/src/uts/common/fs/dev/ |
H A D | sdev_vtops.c | 100 minor_t min; in devvt_validate() local 135 if (devvt_str2minor(nm, &min) != 0) { in devvt_validate() 139 if (vt_minor_valid(min) == B_FALSE) in devvt_validate() 154 minor_t min; in devvt_create_rvp() local 170 if (devvt_str2minor(nm, &min) != 0) in devvt_create_rvp() 173 if (vt_minor_valid(min) == B_FALSE) in devvt_create_rvp() 177 vap->va_rdev = makedevice(maj, min); in devvt_create_rvp() 237 minor_t min; in devvt_create_snode() local 246 devvt_str2minor(nm, &min) != 0) in devvt_create_snode() 260 vap->va_rdev = makedevice(maj, min); in devvt_create_snode() 358 int min, cnt; devvt_cleandir() local [all...] |
/titanic_51/usr/src/lib/gss_mechs/mech_krb5/mech/ |
H A D | store_cred.c | 127 OM_uint32 maj, maj2, min; local 167 min = krb5_gss_init_context(&ctx); 168 if (min) { 169 *minor_status = min; 216 maj2 = krb5_gss_acquire_cred(&min, 259 (void) gss_release_oid_set(&min, elements_stored); 267 (void) gss_release_oid_set(&min, &desired_mechs); 269 (void) krb5_gss_release_cred(&min, 272 (void) krb5_gss_release_name(&min, &in_name);
|
/titanic_51/usr/src/tools/protolist/ |
H A D | protolist.c | 51 char maj[10], min[10]; in visit_dir() local 68 maj[0] = min[0] = symsrc[0] = '-'; in visit_dir() 69 maj[1] = min[1] = symsrc[1] = '\0'; in visit_dir() 107 (void) sprintf(min, "%ld", minor(st->st_rdev)); in visit_dir() 115 (void) sprintf(min, "%ld", minor(st->st_rdev)); in visit_dir() 146 inum, st->st_nlink, maj, min); in visit_dir()
|
/titanic_51/usr/src/lib/fm/topo/modules/sun4v/chip/ |
H A D | chip_sun4v.c | 237 int min = -1; in cpu_create() local 250 * find the min/max id of cpus per this cmp and create a cpu range in cpu_create() 255 if ((min < 0) || (mcmp->cpumap_pid < min)) in cpu_create() 256 min = mcmp->cpumap_pid; in cpu_create() 260 if (min < 0 || max < 0) { in cpu_create() 261 topo_mod_dprintf(mod, "Invalid cpu range(%d,%d)\n", min, max); in cpu_create() 344 topo_instance_t min, topo_instance_t max, md_info_t *chip) in chip_create() argument 356 if (min < 0 || max < 0 || min > ma in chip_create() 414 chip_enum(topo_mod_t * mod,tnode_t * rnode,const char * name,topo_instance_t min,topo_instance_t max,void * arg,void * notused) chip_enum() argument [all...] |
/titanic_51/usr/src/cmd/sgs/rtld/common/ |
H A D | tsort.c | 308 _dep_visit(Lm_list *lml, int min, Rt_map *clmp, Rt_map *dlmp, uint_t bflags, in _dep_visit() argument 318 return (min); in _dep_visit() 331 return (min); in _dep_visit() 338 return (min); in _dep_visit() 347 return (min); in _dep_visit() 355 return (min); in _dep_visit() 362 return (min); in _dep_visit() 379 if (_min < min) { in _dep_visit() 383 return (min); in _dep_visit() 393 int min; in dep_visit() local [all...] |
/titanic_51/usr/src/lib/libbc/libc/gen/common/ |
H A D | qsort.c | 59 char *min, *max; in qsort() local 78 * the min, and swapping it into the first position. in qsort() 93 * insertion sort. For each remaining element, min, from [1] to [n-1], in qsort() 98 for (min = base; (hi = min += qsz) < max; ) { in qsort() 99 while (qcmp(hi -= qsz, min) > 0) in qsort() 101 if ((hi += qsz) != min) { in qsort() 102 for (lo = min + qsz; --lo >= min; ) { in qsort()
|
/titanic_51/usr/src/uts/common/io/ |
H A D | l_strplumb.c | 59 kstr_open(major_t maj, minor_t min, vnode_t **vpp, int *fd) in kstr_open() argument 64 vp = makespecvp(makedevice(maj, min), VCHR); in kstr_open() 212 * "maj", "min", and "lastmin" are value-result parameters. 219 kstr_autopush(int op, major_t *maj, minor_t *min, minor_t *lastmin, in kstr_autopush() argument 252 push.sap_minor = *min; in kstr_autopush() 265 *min = push.sap_minor; in kstr_autopush() 271 *min = push.sap_minor; in kstr_autopush() 277 *min = (minor_t)-1; in kstr_autopush() 297 push.sap_minor = *min; in kstr_autopush() 312 if (*min in kstr_autopush() [all...] |
/titanic_51/usr/src/cmd/tic/ |
H A D | tic_read.c | 102 #define min(a, b) ((a) > (b) ? (b) : (a)) macro 166 read(fd, TermNames, min(127, header.name_size)); 174 read(fd, UB, min(BoolCount, header.bool_count)); 185 read(fd, (char *)UN, min(NumCount, header.num_count) * 2); 187 for (i = 0; i < min(header.num_count, NumCount); i++) { 220 num_strings = min(StrCount, header.str_count); 226 numread = read(fd, byte, 2*min(num_strings, 245 numread = read(fd, number, 2*min(num_strings,
|
/titanic_51/usr/src/psm/stand/boot/sparc/common/ |
H A D | sun4u_memlist.c | 134 int i, j, min; in sort_reglist() local 138 min = i; in sort_reglist() 141 if (ar[j].addr < ar[min].addr) in sort_reglist() 142 min = j; in sort_reglist() 145 if (i != min) { in sort_reglist() 146 /* Swap ar[i] and ar[min] */ in sort_reglist() 147 temp = ar[min]; in sort_reglist() 148 ar[min] = ar[i]; in sort_reglist()
|
/titanic_51/usr/src/lib/libast/common/string/ |
H A D | fmtre.c | 38 short min; member 118 if (p->min = *s == '-') in fmtre() 151 p->min = 0; in fmtre() 158 if (p->min = *s == '-') in fmtre() 187 p->min = 0; in fmtre() 198 if (p->min) in fmtre()
|
/titanic_51/usr/src/contrib/ast/src/lib/libast/string/ |
H A D | fmtre.c | 38 short min; member 118 if (p->min = *s == '-') in fmtre() 151 p->min = 0; in fmtre() 158 if (p->min = *s == '-') in fmtre() 187 p->min = 0; in fmtre() 198 if (p->min) in fmtre()
|