/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 = 91, max [all...] |
/titanic_51/usr/src/lib/libcurses/screen/ |
H A D | init_color.c | 128 double max, min; in _rgb_to_hls() local 132 max = MAX(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 in _rgb_to_hls() [all...] |
/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() 196 max = (1ULL << (8 * sz - 1)) - 1; in uu_strtoint() 207 } else if (val > max) { in uu_strtoint() 236 uint64_t min, uint64_t max) in uu_strtouint() argument [all...] |
/titanic_51/usr/src/cmd/perl/contrib/Sun/Solaris/Project/t/ |
H A D | Project.t | 444 [ 0, 0, { "allowunits" => 1 }, "value9:150::::task.max-lwps=(priv,1000M,deny,signal=SIGHUP),(priv,1000k,deny,signal=SIGKILL)" ], 457 [ 0, 0, { "allowunits" => 1 }, "rctl1:163::::task.max-lwps=(priv,1000,deny,signal=HUP),(priv,1000k,deny,signal=15)" ], 458 [ 0, 0, {}, "rctl1:163::::task.max-lwps=(priv,1000,deny,signal=HUP),(priv,10001,deny,signal=15)" ], 459 [ 0, 0, {}, "rctl2:164::::process.max-port-events=(basic,1000,deny)" ], 460 [ 0, 0, { "allowunits" => 1 }, "rctl3:165::::project.max-crypto-memory=(priv,2.2gb,deny)" ], 461 [ 0, 0, {}, "rctl3:165::::project.max-crypto-memory=(priv,10,deny)" ], 462 [ 0, 0, { "allowunits" => 1 }, "rctl4:166::::project.max-crypto-memory=(privileged,100m,deny)" ], 463 [ 0, 0, {}, "rctl4:166::::project.max-crypto-memory=(privileged,100,deny)" ], 464 [ 0, 0, { "allowunits" => 1 }, "rctl5:167::::project.max-crypto-memory=(priv,1000m,deny)" ], 465 [ 0, 0, {}, "rctl5:167::::project.max [all...] |
/titanic_51/usr/src/lib/libsqlite/test/ |
H A D | minmax.test | 16 # aggregate min() and max() functions and which are handled as 62 execsql {SELECT max(x) FROM t1} 77 execsql {SELECT max(x) FROM t1} 84 execsql {SELECT max(y) FROM t1} 103 execsql {SELECT max(a) FROM t2} 110 execsql {INSERT INTO t2 VALUES((SELECT max(a) FROM t2)+1,999)} 112 execsql {SELECT max(a) FROM t2} 118 execsql {INSERT INTO t2 VALUES((SELECT max(a) FROM t2)+1,999)} 121 SELECT b FROM t2 WHERE a=(SELECT max(a) FROM t2) 130 SELECT coalesce(min(x+0),-1), coalesce(max( [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 .------------------------------------------. max | coun [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 | 167 long max; // next bucket minus one in createBuckets() local 168 long[] range; // two element array: { min, max } in createBuckets() 173 max = range[1]; in createBuckets() 174 bucket = new Distribution.Bucket(min, max, frequencies[i]); in createBuckets() 210 long max = range[1]; in checkBucketRange() local 216 if (bucket.getMax() != max) { in checkBucketRange() 217 throw new IllegalArgumentException("bucket max " + in checkBucketRange() 218 bucket.getMax() + " at index " + i + ", expected " + max); in checkBucketRange() 350 * Distribution} are consecutive, such that the max of one bucket is 363 private final long max; field in Distribution.Bucket 542 int max = -1; getDisplayRange() local [all...] |
/titanic_51/usr/src/lib/libbc/libc/gen/common/ |
H A D | qsort.c | 59 char *min, *max; in qsort() local 67 max = base + n * qsz; in qsort() 69 qst(base, max); in qsort() 72 hi = max; in qsort() 98 for (min = base; (hi = min += qsz) < max; ) { in qsort() 128 qst(char *base, char *max) in qst() argument 137 * current partition. (Which should be max - base). in qst() 140 * If max is larger than that guy, then it's that guy, else compare in qst() 141 * max with loser of first and take larger. Things are set up to in qst() 144 lo = max in qst() [all...] |
/titanic_51/usr/src/lib/libslp/clib/ |
H A D | SLPGetRefreshInterval.c | 50 int mr = 0; /* max results placeholder */ in SLPGetRefreshInterval() 51 unsigned short max = 0; /* max interval result cookie */ in SLPGetRefreshInterval() local 79 &max, &collator, &mr); in SLPGetRefreshInterval() 83 &max, &collator, &mr); in SLPGetRefreshInterval() 91 return (max); in SLPGetRefreshInterval() 98 unsigned short *max = (unsigned short *)cookie; in refresh_interval_cb() local 106 *max = 0; in refresh_interval_cb() 119 if (anint > *max) { in refresh_interval_cb() 120 *max in refresh_interval_cb() [all...] |
/titanic_51/usr/src/boot/lib/libz/ |
H A D | inftrees.c | 42 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...] |
/titanic_51/usr/src/contrib/zlib/ |
H A D | inftrees.c | 38 unsigned min, max; /* minimum and maximum code lengths */ in inflate_table() local 110 for (max = MAXBITS; max >= 1; max--) in inflate_table() 111 if (count[max] != 0) break; in inflate_table() 112 if (root > max) root = max; in inflate_table() 113 if (max == 0) { /* no symbols to code at all */ in inflate_table() 122 for (min = 1; min < max; min++) in inflate_table() 133 if (left > 0 && (type == CODES || max ! in inflate_table() [all...] |
/titanic_51/usr/src/ucbcmd/tr/ |
H A D | tr.c | 52 struct string { int last, max; char *p; } string1, string2; member 64 string1.max = string2.max = 0; in main() 138 if(s->max) { in next() 139 if(s->last++ < s->max) in next() 141 s->max = s->last = 0; in next() 145 s->max = nextc(s); in next() 146 if(s->max==0) { in next() 150 if(s->max < s->last) { in next() 151 s->last = s->max in next() [all...] |
/titanic_51/usr/src/uts/common/io/ixgbe/core/ |
H A D | ixgbe_dcb.c | 48 s32 ixgbe_dcb_calculate_tc_credits(u8 *bw, u16 *refill, u16 *max, in ixgbe_dcb_calculate_tc_credits() argument 73 max[i] = bw[i] ? (bw[i]*IXGBE_DCB_MAX_CREDIT)/100 : min_credit; in ixgbe_dcb_calculate_tc_credits() 128 * larger than the max frame size so here we find the smallest in ixgbe_dcb_calculate_tc_credits_cee() 130 * greater than the max frame size. in ixgbe_dcb_calculate_tc_credits_cee() 228 void ixgbe_dcb_unpack_max_cee(struct ixgbe_dcb_config *cfg, u16 *max) in ixgbe_dcb_unpack_max_cee() argument 234 max[tc] = tc_config[tc].desc_credits_max; in ixgbe_dcb_unpack_max_cee() 459 u16 max[IXGBE_DCB_MAX_TRAFFIC_CLASS] = { 0 }; in ixgbe_dcb_config_rx_arbiter_cee() local 462 ixgbe_dcb_unpack_max_cee(dcb_config, max); in ixgbe_dcb_config_rx_arbiter_cee() 469 ret = ixgbe_dcb_config_rx_arbiter_82598(hw, refill, max, tsa); in ixgbe_dcb_config_rx_arbiter_cee() 476 ret = ixgbe_dcb_config_rx_arbiter_82599(hw, refill, max, bwgi in ixgbe_dcb_config_rx_arbiter_cee() 500 u16 max[IXGBE_DCB_MAX_TRAFFIC_CLASS]; ixgbe_dcb_config_tx_desc_arbiter_cee() local 542 u16 max[IXGBE_DCB_MAX_TRAFFIC_CLASS]; ixgbe_dcb_config_tx_data_arbiter_cee() local 650 u16 max[IXGBE_DCB_MAX_TRAFFIC_CLASS]; ixgbe_dcb_hw_config_cee() local 715 ixgbe_dcb_hw_config(struct ixgbe_hw * hw,u16 * refill,u16 * max,u8 * bwg_id,u8 * tsa,u8 * map) ixgbe_dcb_hw_config() argument [all...] |
/titanic_51/usr/src/test/zfs-tests/tests/functional/acl/nontrivial/ |
H A D | zfs_acl_chmod_001_neg.ksh | 89 typeset -i max=1024 94 # One more ACE exceed the max limitation. 95 (( max = max - cnt + 1 )) 96 while (( max > 0 )); do 97 if (( max == 1 )); then 102 ((cnt = 1024 - max)) 107 (( max -= 1 ))
|
/titanic_51/usr/src/lib/libm/i386/src/ |
H A D | expm1f.s | 77 fstp %st(0) / 2**(z-[z])-1,max([z],-100) 78 fld1 / 1,2**(z-[z])-1,max([z],-100) 79 faddp %st,%st(1) / 2**(z-[z]) ,max([z],-100) 80 fscale / exp(x) ,max([z],-100) 81 fld1 / 1,exp(x) ,max([z],-100) 82 fsubrp %st,%st(1) / exp(x)-1 ,max([z],-100) 109 fstp %st(0) / max([z],-100) 110 fld1 / 1,max([z],-100) 111 fscale / exp(x) ,max([z],-100) 112 fld1 / 1,exp(x) ,max([ [all...] |
/titanic_51/usr/src/lib/libldap5/sources/ldap/common/ |
H A D | cache.c | 66 int i, max, rc; in nsldapi_add_result_to_cache() local 91 max = GRABSIZE; in nsldapi_add_result_to_cache() 94 if ( i == (max - 1) ) { in nsldapi_add_result_to_cache() 95 max += GRABSIZE; in nsldapi_add_result_to_cache() 97 sizeof(LDAPMod *) * max ); in nsldapi_add_result_to_cache() 130 if ( i == (max - 1) ) { in nsldapi_add_result_to_cache() 131 max++; in nsldapi_add_result_to_cache() 133 sizeof(LDAPMod *) * max ); in nsldapi_add_result_to_cache()
|
/titanic_51/usr/src/lib/fm/topo/modules/sun4v/chip/ |
H A D | chip_sun4v.c | 238 int max = -1; in cpu_create() local 250 * find the min/max id of cpus per this cmp and create a cpu range in cpu_create() 257 if ((max < 0) || (mcmp->cpumap_pid > max)) in cpu_create() 258 max = 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() 264 if (topo_node_range_create(mod, rnode, name, 0, max+1) < 0) { in cpu_create() 266 max, topo_mod_errmsg(mod)); in cpu_create() 344 topo_instance_t min, topo_instance_t max, md_info_ in chip_create() argument 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/lib/libfruutils/ |
H A D | fru_tag.c | 80 static fru_tag_t max = { 0xFFFFFFFFFFFFFFFFULL }; in mk_tag() local 87 if ((dense > max.a.dense) || (pl_len > max.a.pl_len)) { in mk_tag() 96 if ((dense > max.b.dense) || (pl_len > max.b.pl_len)) { in mk_tag() 105 if ((dense > max.c.dense) || (pl_len > max.c.pl_len)) { in mk_tag() 114 if ((dense > max.d.dense) || (pl_len > max.d.pl_len)) { in mk_tag() 123 if ((dense > max in mk_tag() [all...] |
/titanic_51/usr/src/cmd/lp/cmd/lpsched/ |
H A D | daisyforms.c | 382 int max = 0; in max_requests_needing_form_mounted() local 401 (++pps->nrequests >= max)) in max_requests_needing_form_mounted() 402 max = pps->nrequests; in max_requests_needing_form_mounted() 407 if (++pps->nrequests >= max) in max_requests_needing_form_mounted() 408 max = pps->nrequests; in max_requests_needing_form_mounted() 409 return (max); in max_requests_needing_form_mounted() 417 int max = 0; in max_requests_needing_pwheel_mounted() local 439 if (++pps->nrequests >= max) in max_requests_needing_pwheel_mounted() 440 max = pps->nrequests; in max_requests_needing_pwheel_mounted() 448 if (++pps->nrequests >= max) in max_requests_needing_pwheel_mounted() [all...] |
/titanic_51/usr/src/uts/common/io/1394/targets/av1394/ |
H A D | av1394_queue.c | 44 av1394_initq(av1394_queue_t *q, ddi_iblock_cookie_t ibc, int max) in av1394_initq() argument 53 q->q_max = max; in av1394_initq() 66 av1394_setmaxq(av1394_queue_t *q, int max) in av1394_setmaxq() argument 69 q->q_max = max; in av1394_setmaxq() 76 int max; in av1394_getmaxq() local 79 max = q->q_max; in av1394_getmaxq() 81 return (max); in av1394_getmaxq()
|
/titanic_51/usr/src/cmd/krb5/kadmin/kclient/ |
H A D | kconf.c | 38 int max; member 51 list->max = 10; in init_list() 52 list->list = malloc(list->max * sizeof (char *)); in init_list() 75 list->num = list->max = 0; in end_list() 88 if (list->num + 1 >= list->max) { in add_to_list() 89 newmax = list->max + 10; in add_to_list() 93 list->max = newmax; in add_to_list()
|
/titanic_51/usr/src/cmd/svr4pkg/pkgremove/ |
H A D | special.c | 140 * int i = 0, j, max; 142 * if (get_special_contents(NULL, &ppcSC, &max) != 0) exit(1); 156 search_special_contents(char **ppcSC, const char *pcpath, int *piX, int max) in search_special_contents() argument 159 if (ppcSC == NULL || *piX == max) in search_special_contents() 162 while (*piX < max) { in search_special_contents() 314 * max The number of entries allocated. 321 free_special_contents(char ***pppcSC, int max) in free_special_contents() argument 329 for (i = 0; ppc != NULL && i < max; i++) in free_special_contents() 372 * max The number of special contents rules. 383 char **ppcSC, int max, in in generate_special_contents_rules() argument 511 int max; /* Max number of special contents entries. */ special_contents_remove() local [all...] |
/titanic_51/usr/src/lib/libslp/javalib/com/sun/slp/ |
H A D | UARequester.java | 121 int max = config.getMaximumResults(); in findServiceTypes() local 132 addUnique(serviceTypes, ret, max); in findServiceTypes() 177 int max = config.getMaximumResults(); in findServices() local 203 addUnique(serviceURLs, ret, max); in findServices() 254 int max = config.getMaximumResults(); in findAttributes() local 299 if (ret.size() > max) { in findAttributes() 300 ret.setSize(max); in findAttributes() 358 int max = config.getMaximumResults(); in findAttributes() local 361 for (i = 0; i < n && ret.size() < max; i++) { in findAttributes() 396 if (ret.size() >= max) { in findAttributes() 575 addUnique(Vector incoming, Vector returns, int max) addUnique() argument [all...] |
/titanic_51/usr/src/tools/gk/ |
H A D | gen_make.machines.sh | 35 max=$(((cpus + 1) * 2)) 43 printf "script suggests\nsetting concurrency to $max for a single-user " 46 printf "$THISHOST max=$max\n" >> $HOME/.make.machines 47 printf "dmake concurrency for host $THISHOST set to $max.\n"
|