Home
last modified time | relevance | path

Searched refs:step (Results 1 – 25 of 112) sorted by relevance

12345

/illumos-gate/usr/src/uts/common/gssapi/mechs/krb5/crypto/des/
H A Df_parity.c19 #define smask(step) ((1<<step)-1) argument
20 #define pstep(x,step) (((x)&smask(step))^(((x)>>step)&smask(step))) argument
/illumos-gate/usr/src/lib/libdtrace_jni/java/src/org/opensolaris/os/dtrace/
H A DLinearDistribution.java65 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 DLogLinearDistribution.java124 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/cmd/cron/
H A Dparse.c94 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 Dcpuid_subr.c814 synth_amd_info(uint_t family, uint_t model, uint_t step, in synth_amd_info() argument
828 step >= rmp->rm_steplo && step <= rmp->rm_stephi) { in synth_amd_info()
872 _cpuid_skt(uint_t vendor, uint_t family, uint_t model, uint_t step) in _cpuid_skt() argument
879 synth_amd_info(family, model, step, &skt, NULL, NULL, NULL); in _cpuid_skt()
891 _cpuid_sktstr(uint_t vendor, uint_t family, uint_t model, uint_t step) in _cpuid_sktstr() argument
900 synth_amd_info(family, model, step, &skt, NULL, NULL, NULL); in _cpuid_sktstr()
920 _cpuid_chiprev(uint_t vendor, uint_t family, uint_t model, uint_t step) in _cpuid_chiprev() argument
927 synth_amd_info(family, model, step, NULL, &chiprev, NULL, NULL); in _cpuid_chiprev()
939 _cpuid_uarchrev(uint_t vendor, uint_t family, uint_t model, uint_t step) in _cpuid_uarchrev() argument
946 synth_amd_info(family, model, step, NULL, NULL, NULL, in _cpuid_uarchrev()
[all …]
/illumos-gate/usr/src/cmd/sgs/demo_rdb/tests/
H A Dplt_skip28 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 Dsteps25 step 10
28 step
/illumos-gate/usr/src/cmd/dtrace/test/tst/common/java_api/src/
H A DTestBean.java252 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 Dcpcgen.c419 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()
448 step++; in cpcgen_parse_model()
450 while (*step != '\0') { in cpcgen_parse_model()
451 if (!isxdigit(*step)) { in cpcgen_parse_model()
461 switch (*step) { in cpcgen_parse_model()
518 "character: '%c'", *step); in cpcgen_parse_model()
521 step++; in cpcgen_parse_model()
883 uint_t step; in cpcgen_manual_intel_file_before() local
[all …]
/illumos-gate/usr/src/lib/libgen/inc/
H A Dregexpr.h58 extern int step(const char *string, const char *expbuf);
62 extern int step();
/illumos-gate/usr/src/uts/common/io/igb/
H A Digb_sw.h256 #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/uts/common/io/ixgbe/
H A Dixgbe_sw.h327 #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/man/man3gen/
H A DMakefile37 step.3gen \
51 step.3gen := LINKSRC = regexpr.3gen
/illumos-gate/usr/src/lib/libc/port/regex/
H A Dengine.c53 #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 Dlstring.c54 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 Dmapfile-intf42 # 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 Dexpand.c196 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/uts/sun4/os/
H A Ddtrace_subr.c125 uint8_t step = curthread->t_dtrace_step; in dtrace_return_probe() local
143 if (step == 0) { in dtrace_return_probe()
/illumos-gate/usr/src/lib/libdladm/common/
H A Dusage.c40 #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/common/sys/fibre-channel/fca/emlxs/
H A Demlxs_sdapi.h124 uint32_t step);
131 uint32_t *step,
/illumos-gate/usr/src/man/man7/
H A DMakefile185 step.7 \
205 step.7 := LINKSRC = regexp.7
/illumos-gate/usr/src/lib/libadm/common/
H A Dregexp.c46 #define step __step macro
/illumos-gate/usr/src/cmd/nl/
H A Dnl.c615 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 Dhpi_pfc.c327 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 Ddtrace_subr.c184 uint8_t step = curthread->t_dtrace_step; in dtrace_user_probe() local
203 if (step == 0) { in dtrace_user_probe()

12345