Home
last modified time | relevance | path

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

12345

/titanic_44/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
/titanic_44/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()
/titanic_44/usr/src/uts/i86pc/os/
H A Dcpuid_subr.c356 synth_amd_info(uint_t family, uint_t model, uint_t step, in synth_amd_info() argument
370 step >= rmp->rm_steplo && step <= rmp->rm_stephi) { in synth_amd_info()
441 _cpuid_skt(uint_t vendor, uint_t family, uint_t model, uint_t step) in _cpuid_skt() argument
447 synth_amd_info(family, model, step, &skt, NULL, NULL); in _cpuid_skt()
459 _cpuid_sktstr(uint_t vendor, uint_t family, uint_t model, uint_t step) in _cpuid_sktstr() argument
467 synth_amd_info(family, model, step, &skt, NULL, NULL); in _cpuid_sktstr()
487 _cpuid_chiprev(uint_t vendor, uint_t family, uint_t model, uint_t step) in _cpuid_chiprev() argument
493 synth_amd_info(family, model, step, NULL, &chiprev, NULL); in _cpuid_chiprev()
505 _cpuid_chiprevstr(uint_t vendor, uint_t family, uint_t model, uint_t step) in _cpuid_chiprevstr() argument
511 synth_amd_info(family, model, step, NULL, NULL, &revstr); in _cpuid_chiprevstr()
H A Ddtrace_subr.c198 uint8_t step = curthread->t_dtrace_step; in dtrace_user_probe() local
217 if (step == 0) { in dtrace_user_probe()
/titanic_44/usr/src/cmd/sgs/librtld_db/demo/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
/titanic_44/usr/src/test/zfs-tests/tests/functional/acl/nontrivial/
H A Dzfs_acl_chmod_inherit_003_pos.ksh121 typeset -i count=0 pass=0 passcnt=0 isinherit=0 maxnumber=4 step=0
144 step=0
148 step=1
223 step=0
268 if ((step > 0)); then
269 ((count = count + step))
/titanic_44/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 …]
/titanic_44/usr/src/tools/cpcgen/
H A Dcpcgen.c398 const char *brand, *fam, *mod, *step; in cpcgen_parse_model() local
413 step = strtok_r(NULL, "-", &last); in cpcgen_parse_model()
433 if (step == NULL) { in cpcgen_parse_model()
438 if (*step != '[' || ((last = strrchr(step, ']')) == NULL)) { in cpcgen_parse_model()
440 "stepping range brackets", step); in cpcgen_parse_model()
442 step++; in cpcgen_parse_model()
444 while (*step != '\0') { in cpcgen_parse_model()
445 if (!isxdigit(*step)) { in cpcgen_parse_model()
447 "stepping identifier '0x%x'", *step); in cpcgen_parse_model()
455 switch (*step) { in cpcgen_parse_model()
[all …]
/titanic_44/usr/src/lib/libgen/inc/
H A Dregexpr.h60 extern int step(const char *string, const char *expbuf);
64 extern int step();
/titanic_44/usr/src/uts/common/io/igb/
H A Digb_sw.h252 #define NEXT_INDEX(index, step, limit) (((index) + (step)) < (limit) ? \ argument
253 (index) + (step) : (index) + (step) - (limit))
254 #define PREV_INDEX(index, step, limit) ((index) >= (step) ? \ argument
255 (index) - (step) : (index) + (limit) - (step))
/titanic_44/usr/src/uts/common/io/ixgbe/
H A Dixgbe_sw.h322 #define NEXT_INDEX(index, step, limit) (((index) + (step)) < (limit) ? \ argument
323 (index) + (step) : (index) + (step) - (limit))
324 #define PREV_INDEX(index, step, limit) ((index) >= (step) ? \ argument
325 (index) - (step) : (index) + (limit) - (step))
/titanic_44/usr/src/lib/libc/port/locale/
H A Dengine.c49 #define step sstep macro
60 #define step lstep macro
71 #define step mstep macro
110 static states step(struct re_guts *, sopno, sopno, states, wint_t, states);
773 st = step(m->g, startst, stopst, st, NOTHING, st); in fast()
813 st = step(m->g, startst, stopst, st, in fast()
828 st = step(m->g, startst, stopst, st, flagch, st); in fast()
840 st = step(m->g, startst, stopst, tmp, c, st); in fast()
842 assert(EQ(step(m->g, startst, stopst, st, NOTHING, st), st)); in fast()
876 st = step(m->g, startst, stopst, st, NOTHING, st); in slow()
[all …]
/titanic_44/usr/src/man/man3gen/
H A DMakefile37 step.3gen \
51 step.3gen := LINKSRC = regexpr.3gen
/titanic_44/usr/src/cmd/expr/
H A Dmapfile-intf42 # expr provides its own versions of advance, compile, and step - define
48 step { FLAGS = INTERPOSE };
/titanic_44/usr/src/grub/grub-0.97/stage2/
H A Dexpand.c195 uint_t family, model, step; in amd64_config_cpu() local
210 step = BITX(vcr->r_eax, 3, 0); in amd64_config_cpu()
213 vendor, family, model, step); in amd64_config_cpu()
/titanic_44/usr/src/man/man5/
H A DMakefile159 step.5 \
177 step.5 := LINKSRC = regexp.5
/titanic_44/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()
/titanic_44/usr/src/uts/common/sys/fibre-channel/fca/emlxs/
H A Demlxs_sdapi.h124 uint32_t step);
131 uint32_t *step,
/titanic_44/usr/src/lib/libadm/common/
H A Dregexp.c48 #define step __step macro
/titanic_44/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()
/titanic_44/usr/src/cmd/nl/
H A Dnl.c618 if (step(p, bexpbuf)) {
626 if (step(p, hexpbuf)) {
634 if (step(p, fexpbuf)) {
/titanic_44/usr/src/cmd/sgs/librtld_db/demo/common/
H A Dlex.l63 ^{ws}*step {return (STEP);}
/titanic_44/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()

12345