/illumos-gate/usr/src/cmd/dtrace/test/tst/common/aggs/ |
H A D | tst.max_neg.d | 31 * Positive max() test using negative values 35 * NOTES: This is verifiable simple positive test of the max() function. 43 @ = max(0); 44 @ = max(-900);
|
H A D | err.D_PROTO_LEN.maxnoarg.d | 31 * max() should not accept a call with no arguments 39 @a[1] = max();
|
H A D | err.D_PROTO_LEN.maxtoomany.d | 31 * max() should not more than one argument 39 @a[1] = max(1, 2);
|
H A D | err.D_AGG_SCALAR.maxnoarg.d | 32 * max() should not accept a non-scalar value 39 @a[pid] = max(probefunc);
|
H A D | err.D_AGG_REDEF.redef.d | 44 @a = max(0);
|
H A D | tst.forms.d | 43 @b = max(1); 45 @d[0] = max(1);
|
H A D | tst.max.d | 31 * Positive max() test 35 * NOTES: This is verifiable simple positive test of the max() function. 49 @a = max(i);
|
/illumos-gate/usr/src/cmd/dtrace/test/tst/common/clauses/ |
H A D | err.D_IDENT_UNDEF.aggfun.d | 39 @a = max(x);
|
/illumos-gate/usr/src/uts/common/io/comstar/port/qlt/ |
H A D | qlt.conf | 28 #Name: PCI max read request override 30 #Usage: This field specifies the value to be used for the PCI max read 37 pci-max-read-request=2048; 39 #Name: PCI max payload override 41 #Usage: This field specifies the value to be used for the PCI max payload 45 #pcie-max-payload-size=1024;
|
/illumos-gate/usr/src/uts/common/io/skd/ |
H A D | skd.conf | 25 # max-scsi-reqs-per-msg: 29 # max-ssi-reqs: 33 # max-sgs-per-req: 42 max-scsi-reqs-per-msg=1; 44 max-scsi-reqs=64; 46 max-sgs-per-req=256;
|
/illumos-gate/usr/src/uts/common/io/rsm/ |
H A D | rsm.conf | 31 #The max-exported-memory property provides for setting an upper limit 37 max-exported-memory=0; 48 max-segments=65535;
|
/illumos-gate/usr/src/cmd/ipf/lib/common/ |
H A D | ratoi.c | 12 int ratoi(ps, pi, min, max) 14 int *pi, min, max; 20 if (*pe != '\0' || i < min || i > max)
|
/illumos-gate/usr/src/lib/libcurses/screen/ |
H A D | init_color.c | 128 double max, min; local 132 max = MAX(r, g, b); 137 l = (max + min) / 2; 141 if (max == min) { 146 s = (max - min) / (max + min); 148 s = (max - min) / (2 - max - min); 152 rc = (max - r) / (max [all...] |
/illumos-gate/usr/src/cmd/dtrace/test/tst/common/grammar/ |
H A D | tst.stmts.d | 50 @b = max(x); 52 @d[x] = max(x);
|
/illumos-gate/usr/src/lib/libslp/clib/ |
H A D | SLPGetRefreshInterval.c | 50 int mr = 0; /* max results placeholder */ 51 unsigned short max = 0; /* max interval result cookie */ local 79 &max, &collator, &mr); 83 &max, &collator, &mr); 91 return (max); 98 unsigned short *max = (unsigned short *)cookie; local 106 *max = 0; 119 if (anint > *max) { 120 *max [all...] |
/illumos-gate/usr/src/cmd/dtrace/test/tst/common/privs/ |
H A D | tst.noprivdrop.ksh | 64 max=`expr $cpus \* 500` 66 if [[ $count -gt $max ]]; then 67 echo "count ($count) is greater than allowed max ($max)" 71 echo "count ($count) is within allowed max ($max)"
|
/illumos-gate/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"
|
/illumos-gate/usr/src/uts/common/io/aac/ |
H A D | aac.conf | 47 dma-max=0x20000;
|
/illumos-gate/usr/src/lib/libuutil/common/ |
H A D | uu_strtoint.c | 165 int64_t min, int64_t max) 170 if (min > max) 175 if (max > INT8_MAX || min < INT8_MIN) 179 if (max > INT16_MAX || min < INT16_MIN) 183 if (max > INT32_MAX || min < INT32_MIN) 187 if (max > INT64_MAX || min < INT64_MIN) 194 if (min == 0 && max == 0) { 196 max = (1ULL << (8 * sz - 1)) - 1; 207 } else if (val > max) { 236 uint64_t min, uint64_t max) 164 uu_strtoint(const char *s, void *v, size_t sz, int base, int64_t min, int64_t max) argument 235 uu_strtouint(const char *s, void *v, size_t sz, int base, uint64_t min, uint64_t max) argument [all...] |
/illumos-gate/usr/src/test/zfs-tests/tests/functional/acl/nontrivial/ |
H A D | zfs_acl_chmod_001_neg.ksh | 93 typeset -i max=1024 98 # One more ACE exceed the max limitation. 99 (( max = max - cnt + 1 )) 100 while (( max > 0 )); do 101 if (( max == 1 )); then 106 ((cnt = 1024 - max)) 111 (( max -= 1 ))
|
/illumos-gate/usr/src/lib/libc/port/i18n/ |
H A D | wmemcpy.c | 41 size_t max = SIZE_MAX / sizeof (wchar_t); local 43 if (n <= max) { 51 if (n > max) { 52 len = max;
|
/illumos-gate/usr/src/ucbcmd/tr/ |
H A D | tr.c | 52 struct string { int last, max; char *p; } string1, string2; member in struct:string 64 string1.max = string2.max = 0; 138 if(s->max) { 139 if(s->last++ < s->max) 141 s->max = s->last = 0; 145 s->max = nextc(s); 146 if(s->max==0) { 150 if(s->max < s->last) { 151 s->last = s->max [all...] |
/illumos-gate/usr/src/lib/libdtrace_jni/java/src/org/opensolaris/os/dtrace/ |
H A D | Distribution.java | 167 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...] |
/illumos-gate/usr/src/cmd/dtrace/test/tst/common/java_api/src/ |
H A D | TestMaxConsumers.java | 58 int max = (property == null ? 0 : property); 59 int n = (property == null ? 11 : (max < 1 ? 1 : max)); 82 if (max > 0) { 83 System.out.println("Error: " + (max + 1) + " > " +
|
/illumos-gate/usr/src/lib/libbc/libc/gen/common/ |
H A D | qsort.c | 59 char *min, *max; local 67 max = base + n * qsz; 69 qst(base, max); 72 hi = max; 98 for (min = base; (hi = min += qsz) < max; ) { 128 qst(char *base, char *max) argument 137 * current partition. (Which should be max - base). 140 * If max is larger than that guy, then it's that guy, else compare 141 * max with loser of first and take larger. Things are set up to 144 lo = max [all...] |