/illumos-gate/usr/src/lib/libdtrace_jni/java/src/org/opensolaris/os/dtrace/ |
H A D | LinearDistribution.java | 65 private long step; field in LinearDistribution 90 step = frequencyStep; in LinearDistribution() 116 step = bucketStep; in LinearDistribution() 118 if (step < 1) { in LinearDistribution() 129 getBucketRange(int i, int len, long base, long step) in getBucketRange() argument 137 min = (base + ((i - 1) * step)); in getBucketRange() 145 max = ((base + (i * step)) - 1); in getBucketRange() 156 return getBucketRange(i, len, base, step); in getBucketRange() 183 return step; in getStep() 259 if (step < 1) { in readObject()
|
H A D | LogLinearDistribution.java | 124 long next, step; in fillRangeCache() local 146 step = (next > nsteps) ? (next / nsteps) : 1; in fillRangeCache() 150 rangeCache[bucket][1] = value + step - 1; in fillRangeCache() 153 if ((value += step) != next) in fillRangeCache() 157 step = (next > nsteps) ? (next / nsteps) : 1; in fillRangeCache()
|
/illumos-gate/usr/src/uts/common/gssapi/mechs/krb5/crypto/des/ |
H A D | f_parity.c | 19 #define smask(step) ((1<<step)-1) argument 20 #define pstep(x,step) (((x)&smask(step))^(((x)>>step)&smask(step))) argument
|
/illumos-gate/usr/src/cmd/cron/ |
H A D | parse.c | 94 uint_t num = 0, num2 = 0, step = 0; in next_field() local 159 READNUMBER(step); in next_field() 161 if (step == 0) { in next_field() 166 step = 1; in next_field() 170 for (i = num; i <= num2; i += step) { in next_field() 175 for (i = num; i <= upper; i += step) { in next_field() 180 for (; i <= num2; i += step) { in next_field()
|
/illumos-gate/usr/src/uts/intel/os/ |
H A D | cpuid_subr.c | 898 synth_amd_info(uint_t family, uint_t model, uint_t step, in synth_amd_info() argument 912 step >= rmp->rm_steplo && step <= rmp->rm_stephi) { in synth_amd_info() 956 _cpuid_skt(uint_t vendor, uint_t family, uint_t model, uint_t step) in _cpuid_skt() argument 963 synth_amd_info(family, model, step, &skt, NULL, NULL, NULL); in _cpuid_skt() 975 _cpuid_sktstr(uint_t vendor, uint_t family, uint_t model, uint_t step) in _cpuid_sktstr() argument 984 synth_amd_info(family, model, step, &skt, NULL, NULL, NULL); in _cpuid_sktstr() 1004 _cpuid_chiprev(uint_t vendor, uint_t family, uint_t model, uint_t step) in _cpuid_chiprev() argument 1011 synth_amd_info(family, model, step, NULL, &chiprev, NULL, NULL); in _cpuid_chiprev() 1023 _cpuid_uarchrev(uint_t vendor, uint_t family, uint_t model, uint_t step) in _cpuid_uarchrev() argument 1030 synth_amd_info(family, model, step, NULL, NULL, NULL, in _cpuid_uarchrev() [all …]
|
/illumos-gate/usr/src/cmd/sgs/demo_rdb/tests/ |
H A D | plt_skip | 28 echo "The following step will step over the PLT's and directly" 31 step 30 33 # Disable the pltskip routine to see it step through 41 step 30
|
H A D | steps | 25 step 10 28 step
|
/illumos-gate/usr/src/cmd/dtrace/test/tst/common/java_api/src/ |
H A D | TestBean.java | 252 int step = 10; in getLinearDistribution() local 255 for (int i = base; i < (n * step); i += step) { in getLinearDistribution() 256 bucket = new Distribution.Bucket(i, (i + (step - 1)), in getLinearDistribution() 257 ((i - 1) / step)); in getLinearDistribution() 260 bucket = new Distribution.Bucket((n * step) + 1, Long.MAX_VALUE, 0); in getLinearDistribution() 262 LinearDistribution d = new LinearDistribution(base, step, buckets); in getLinearDistribution() 270 long next, step; in getLogLinearDistribution() local 288 step = (next > nsteps) ? (next / nsteps) : 1; in getLogLinearDistribution() 291 bucket = new Distribution.Bucket(value, value + step - 1, 5); in getLogLinearDistribution() 294 if ((value += step) != next) in getLogLinearDistribution() [all …]
|
/illumos-gate/usr/src/tools/cpcgen/ |
H A D | cpcgen.c | 404 const char *brand, *fam, *mod, *step; in cpcgen_parse_model() local 419 step = strtok_r(NULL, "-", &last); in cpcgen_parse_model() 439 if (step == NULL) { in cpcgen_parse_model() 444 if (*step != '[' || ((last = strrchr(step, ']')) == NULL)) { in cpcgen_parse_model() 446 "stepping range brackets", step); in cpcgen_parse_model() 448 step++; in cpcgen_parse_model() 450 while (*step != '\0') { in cpcgen_parse_model() 451 if (!isxdigit(*step)) { in cpcgen_parse_model() 453 "stepping identifier '0x%x'", *step); in cpcgen_parse_model() 461 switch (*step) { in cpcgen_parse_model() [all …]
|
/illumos-gate/usr/src/lib/libgen/inc/ |
H A D | regexpr.h | 58 extern int step(const char *string, const char *expbuf); 62 extern int step();
|
/illumos-gate/usr/src/uts/common/io/ixgbe/ |
H A D | ixgbe_sw.h | 327 #define NEXT_INDEX(index, step, limit) (((index) + (step)) < (limit) ? \ argument 328 (index) + (step) : (index) + (step) - (limit)) 329 #define PREV_INDEX(index, step, limit) ((index) >= (step) ? \ argument 330 (index) - (step) : (index) + (limit) - (step))
|
/illumos-gate/usr/src/uts/common/io/igb/ |
H A D | igb_sw.h | 256 #define NEXT_INDEX(index, step, limit) (((index) + (step)) < (limit) ? \ argument 257 (index) + (step) : (index) + (step) - (limit)) 258 #define PREV_INDEX(index, step, limit) ((index) >= (step) ? \ argument 259 (index) - (step) : (index) + (limit) - (step))
|
/illumos-gate/usr/src/man/man3gen/ |
H A D | Makefile | 37 step.3gen \ 51 step.3gen := LINKSRC = regexpr.3gen
|
/illumos-gate/usr/src/lib/libc/port/regex/ |
H A D | engine.c | 53 #define step sstep macro 64 #define step lstep macro 75 #define step mstep macro 112 static states step(struct re_guts *, sopno, sopno, states, wint_t, states); 808 st = step(m->g, startst, stopst, st, NOTHING, st); in walk() 849 st = step(m->g, startst, stopst, st, in walk() 864 st = step(m->g, startst, stopst, st, flagch, st); in walk() 885 st = step(m->g, startst, stopst, tmp, c, st); in walk() 887 assert(EQ(step(m->g, startst, stopst, st, NOTHING, st), st)); in walk() 906 step(struct re_guts *g, in step() function [all …]
|
/illumos-gate/usr/src/uts/common/fs/zfs/lua/ |
H A D | lstring.c | 54 size_t step = (l >> LUAI_HASHLIMIT) + 1; in luaS_hash() local 55 for (l1 = l; l1 >= step; l1 -= step) in luaS_hash()
|
/illumos-gate/usr/src/cmd/expr/ |
H A D | mapfile-intf | 42 # expr provides its own versions of advance, compile, and step - define 48 step { FLAGS = INTERPOSE };
|
/illumos-gate/usr/src/grub/grub-0.97/stage2/ |
H A D | expand.c | 196 uint_t family, model, step; in amd64_config_cpu() local 211 step = BITX(vcr->r_eax, 3, 0); in amd64_config_cpu() 214 vendor, family, model, step); in amd64_config_cpu()
|
/illumos-gate/usr/src/lib/libdladm/common/ |
H A D | usage.c | 40 #define NET_RESET_TOT(tbytes, ttime, tibytes, tobytes, step) { \ argument 41 (step) = 1; \ 1055 int step = 1; in dladm_walk_usage_res() local 1126 tot_obytes, step); in dladm_walk_usage_res() 1134 if (--step == 0) { in dladm_walk_usage_res() 1152 tot_obytes, step); in dladm_walk_usage_res() 1196 int step = 1; in dladm_walk_usage_time() local 1271 if (--step == 0) { in dladm_walk_usage_time() 1277 step = 1; in dladm_walk_usage_time() 1294 step = 1; in dladm_walk_usage_time()
|
/illumos-gate/usr/src/uts/sun4/os/ |
H A D | dtrace_subr.c | 125 uint8_t step = curthread->t_dtrace_step; in dtrace_return_probe() local 143 if (step == 0) { in dtrace_return_probe()
|
/illumos-gate/usr/src/uts/common/sys/fibre-channel/fca/emlxs/ |
H A D | emlxs_sdapi.h | 124 uint32_t step); 131 uint32_t *step,
|
/illumos-gate/usr/src/man/man7/ |
H A D | Makefile | 186 step.7 \ 206 step.7 := LINKSRC = regexp.7
|
/illumos-gate/usr/src/lib/libadm/common/ |
H A D | regexp.c | 46 #define step __step macro
|
/illumos-gate/usr/src/cmd/nl/ |
H A D | nl.c | 615 if (step(p, bexpbuf)) { in main() 623 if (step(p, hexpbuf)) { in main() 631 if (step(p, fexpbuf)) { in main()
|
/illumos-gate/usr/src/uts/common/io/hxge/ |
H A D | hpi_pfc.c | 327 int step = 8; in hpi_pfc_cfg_vlan_table_clear() local 333 offset = PFC_VLAN_TABLE + i * step; in hpi_pfc_cfg_vlan_table_clear() 932 uint32_t step = sizeof (uint32_t); in hpi_pfc_mac_addr_get_i() local 942 HXGE_REG_RD32(handle, HCR_REG + HCR_ADDR_LO + slot * step, &addr_lo); in hpi_pfc_mac_addr_get_i() 943 HXGE_REG_RD32(handle, HCR_REG + HCR_ADDR_HI + slot * step, &addr_hi); in hpi_pfc_mac_addr_get_i()
|
/illumos-gate/usr/src/uts/i86pc/os/ |
H A D | dtrace_subr.c | 184 uint8_t step = curthread->t_dtrace_step; in dtrace_user_probe() local 203 if (step == 0) { in dtrace_user_probe()
|