/titanic_41/usr/src/cmd/dtrace/test/tst/common/java_api/ |
H A D | tst.Bean.ksh.out | 45 …min = 1, max = 10, frequency = 0], org.opensolaris.os.dtrace.Distribution$Bucket[min = 11, max = 2… 56 …min = 1, max = 10, frequency = 0], org.opensolaris.os.dtrace.Distribution$Bucket[min = 11, max = 2… 68 …min = 1, max = 10, frequency = 0], org.opensolaris.os.dtrace.Distribution$Bucket[min = 11, max = 2… 79 …min = 1, max = 10, frequency = 0], org.opensolaris.os.dtrace.Distribution$Bucket[min = 11, max = 2… 150 …min = -4611686018427387904, max = -2305843009213693953, frequency = 0], org.opensolaris.os.dtrace.… 151 …min = -4611686018427387904, max = -2305843009213693953, frequency = 0], org.opensolaris.os.dtrace.… 153 …min = -4611686018427387904, max = -2305843009213693953, frequency = 0], org.opensolaris.os.dtrace.… 154 …min = -4611686018427387904, max = -2305843009213693953, frequency = 0], org.opensolaris.os.dtrace.… 156 …min = 1, max = 10, frequency = 0], org.opensolaris.os.dtrace.Distribution$Bucket[min = 11, max = 2… 157 …min = 1, max = 10, frequency = 0], org.opensolaris.os.dtrace.Distribution$Bucket[min = 11, max = 2… [all …]
|
/titanic_41/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 .------------------------------------------. max | count [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_41/usr/src/lib/libdtrace_jni/java/src/org/opensolaris/os/dtrace/ |
H A D | Distribution.java | 166 long min; // current bucket in createBuckets() local 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() 214 bucket.getMin() + " at index " + i + ", expected " + min); in checkBucketRange() 361 private final long min; field in Distribution.Bucket 421 min = rangeMinimumInclusive; in Bucket() 432 return min; in getMin() 468 return ((min == b.min) && in equals() [all …]
|
/titanic_41/usr/src/cmd/ssh/ssh/ |
H A D | gss-clnt.c | 72 OM_uint32 maj, min; in ssh_gssapi_client_mechs() local 80 maj = gss_indicate_mechs(&min, &indicated); in ssh_gssapi_client_mechs() 86 maj = gss_create_empty_oid_set(&min, &supported); in ssh_gssapi_client_mechs() 88 errmsg = ssh_gssapi_last_error(NULL, &maj, &min); in ssh_gssapi_client_mechs() 91 (void) gss_release_oid_set(&min, &indicated); in ssh_gssapi_client_mechs() 94 maj = gss_acquire_cred(&min, GSS_C_NO_NAME, 0, indicated, in ssh_gssapi_client_mechs() 98 errmsg = ssh_gssapi_last_error(NULL, &maj, &min); in ssh_gssapi_client_mechs() 102 (void) gss_release_oid_set(&min, &indicated); in ssh_gssapi_client_mechs() 103 (void) gss_release_oid_set(&min, &supported); in ssh_gssapi_client_mechs() 106 (void) gss_release_cred(&min, &creds); in ssh_gssapi_client_mechs() [all …]
|
/titanic_41/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_41/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_t max) in uu_strtouint() argument [all …]
|
/titanic_41/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() 154 bc = (max - b) / (max - min); in _rgb_to_hls()
|
/titanic_41/usr/src/cmd/ssh/sshd/ |
H A D | gss-serv.c | 84 OM_uint32 maj, min; in ssh_gssapi_server_mechs() local 88 (void) gss_release_oid_set(&min, &supported); in ssh_gssapi_server_mechs() 99 maj = gss_create_empty_oid_set(&min, &s); in ssh_gssapi_server_mechs() 102 ssh_gssapi_last_error(NULL, &maj, &min)); in ssh_gssapi_server_mechs() 106 maj = gss_indicate_mechs(&min, &indicated); in ssh_gssapi_server_mechs() 112 maj = gss_acquire_cred(&min, GSS_C_NO_NAME, 0, indicated, in ssh_gssapi_server_mechs() 117 "mechanisms (%s)", ssh_gssapi_last_error(NULL, &maj, &min)); in ssh_gssapi_server_mechs() 119 (void) gss_release_oid_set(&min, &indicated); in ssh_gssapi_server_mechs() 120 (void) gss_release_cred(&min, &creds); in ssh_gssapi_server_mechs() 129 maj = gss_add_oid_set_member(&min, &acquired->elements[i], &s); in ssh_gssapi_server_mechs() [all …]
|
/titanic_41/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) >= sizeof (dp->dps_minornm)) { in loadpolicy() [all …]
|
/titanic_41/usr/src/cmd/ssh/libssh/common/ |
H A D | kexgexs.c | 52 int min = -1, max = -1, nbits = -1, type; in kexgex_server() local 64 min = packet_get_int(); in kexgex_server() 67 min = MAX(DH_GRP_MIN, min); in kexgex_server() 73 min = DH_GRP_MIN; in kexgex_server() 82 if (max < min || nbits < min || max < nbits) in kexgex_server() 84 min, nbits, max); in kexgex_server() 87 dh = choose_dh(min, nbits, max); in kexgex_server() 143 min = max = -1; in kexgex_server() 152 min, nbits, max, in kexgex_server()
|
H A D | kexgexc.c | 52 int min, max, nbits; in kexgex_client() local 63 min = DH_GRP_MIN; in kexgex_client() 69 min = DH_GRP_MIN; in kexgex_client() 72 packet_put_int(min); in kexgex_client() 78 min, nbits, max); in kexgex_client() 93 if (BN_num_bits(p) < min || BN_num_bits(p) > max) in kexgex_client() 95 min, BN_num_bits(p), max); in kexgex_client() 160 min = max = -1; in kexgex_client() 169 min, nbits, max, in kexgex_client()
|
/titanic_41/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(mlen, len);
|
/titanic_41/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_qp, devlim->log_max_ra_req_qp); in hermon_cfg_profile_init_phase2() [all …]
|
/titanic_41/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(a) FROM t2 LIMIT 1 [all …]
|
/titanic_41/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, sec); in pc_pcttotv() [all …]
|
/titanic_41/usr/src/cmd/ssh/libopenbsd-compat/common/ |
H A D | bsd-snprintf.c | 70 int min, int max); 74 int min, int max, int flags); 78 int min, int max, int flags); 123 int min = 0; in dopr() local 173 min = 10*min + char_to_int (ch); in dopr() 176 min = va_arg (args, int); in dopr() 241 fmtint(buffer, &currlen, maxlen, value, 10, min, max, flags); in dopr() 253 fmtint(buffer, &currlen, maxlen, value, 8, min, max, flags); in dopr() 265 fmtint (buffer, &currlen, maxlen, value, 10, min, max, flags); in dopr() 279 fmtint(buffer, &currlen, maxlen, value, 16, min, max, flags); in dopr() [all …]
|
/titanic_41/usr/src/uts/common/zmod/ |
H A D | inftrees.c | 44 unsigned min, max; /* minimum and maximum code lengths */ local 128 for (min = 1; min <= MAXBITS; min++) 129 if (count[min] != 0) break; 130 if (root < min) root = min; 205 len = min; /* starting code length */ 237 min = fill; /* save offset to next table */ 268 next += min; /* here min is 1 << curr */
|
/titanic_41/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() [all …]
|
/titanic_41/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_41/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_41/usr/src/lib/fm/topo/modules/sun4v/chip/ |
H A D | chip_sun4v.c | 237 int min = -1; in cpu_create() local 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 > max) { in chip_create() 357 topo_mod_dprintf(mod, "Invalid chip range(%d,%d)\n", min, max); in chip_create() 368 for (i = min; i <= max; i++) { in chip_create() 414 topo_instance_t min, topo_instance_t max, void *arg, void *notused) in chip_enum() argument [all …]
|
/titanic_41/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_41/usr/src/cmd/lms/ |
H A D | version.h | 39 #define _MAKE_VER_STRING(maj, min, submin, bld) #maj "." #min "." #submin "." #bld argument 40 #define MAKE_VER_STRING(maj, min, submin, bld) _MAKE_VER_STRING(maj, min, submin, bld) argument
|
/titanic_41/usr/src/lib/libbc/libc/gen/common/ |
H A D | qsort.c | 59 char *min, *max; in qsort() local 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()
|