Home
last modified time | relevance | path

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

12345

/titanic_51/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_51/usr/src/lib/libdtrace_jni/java/src/org/opensolaris/os/dtrace/
H A DLinearDistribution.java37 * bounded by the step parameter of the {@code lquantize()} action.
40 * step, unless it is the first bucket, which is the frequency of all
46 * and a step of 10. It has twelve buckets starting with {@code n < 0}
65 private long step; field in LinearDistribution
72 new String[] {"base", "step", "buckets" });
90 step = frequencyStep; in LinearDistribution()
94 * Creates a linear distribution with the given base, step, and
106 * @throws IllegalArgumentException if the given step is less than
116 step = bucketStep; in LinearDistribution()
118 if (step < in LinearDistribution()
129 getBucketRange(int i, int len, long base, long step) getBucketRange() argument
[all...]
H A DLogLinearDistribution.java27 * by the step parameter of the {@code llquantize()} action.
81 * @param enc The encoded representation of the high, low, step and steps
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()
/titanic_51/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
[all...]
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_51/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_51/usr/src/test/zfs-tests/tests/functional/acl/nontrivial/
H A Dzfs_acl_chmod_inherit_003_pos.ksh119 # step: indicate if the ACE be split during inherit.
121 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_51/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 in getLogLinearDistribution()
[all...]
/titanic_51/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()
866 uint_t step; cpcgen_manual_intel_file_before() local
[all...]
/titanic_51/usr/src/lib/libgen/inc/
H A Dregexpr.h60 extern int step(const char *string, const char *expbuf);
64 extern int step();
/titanic_51/usr/src/uts/common/io/igb/
H A Digb_sw.h248 * ASSERT(step < limit)
252 #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_51/usr/src/boot/lib/libz/test/
H A Dinfcover.c276 text to include in an error message, step is how much input data to feed
284 local void inf(char *hex, char *what, unsigned step, int win, unsigned len, in inf() argument
312 if (step == 0 || step > have) in inf()
313 step = have; in inf()
314 strm.avail_in = step; in inf()
315 have -= step; in inf()
339 strm.avail_in = step > have ? have : step; in inf()
/titanic_51/usr/src/uts/common/io/ixgbe/
H A Dixgbe_sw.h318 * ASSERT(step < limit)
322 #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_51/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);
753 * fast - step through the string at top speed
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( in fast()
955 step(struct re_guts *g, step() function
[all...]
/titanic_51/usr/src/man/man3gen/
H A DMakefile37 step.3gen \
51 step.3gen := LINKSRC = regexpr.3gen
/titanic_51/usr/src/cmd/expr/
H A Dmapfile-intf42 # expr provides its own versions of advance, compile, and step - define
48 step { FLAGS = INTERPOSE };
/titanic_51/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()
212 grub_printf("cpu: '%s' family %d model %d step %d\n", in amd64_config_cpu()
213 vendor, family, model, step); in amd64_config_cpu()
/titanic_51/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_51/usr/src/man/man5/
H A DMakefile175 step.5 \
193 step.5 := LINKSRC = regexp.5
/titanic_51/usr/src/uts/common/sys/fibre-channel/fca/emlxs/
H A Demlxs_sdapi.h124 uint32_t step);
131 uint32_t *step,
/titanic_51/usr/src/lib/libadm/common/
H A Dregexp.c48 #define step __step macro
/titanic_51/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 in dladm_walk_usage_time()
[all...]
/titanic_51/usr/src/cmd/nl/
H A Dnl.c618 if (step(p, bexpbuf)) {
626 if (step(p, hexpbuf)) {
634 if (step(p, fexpbuf)) {
/titanic_51/usr/src/cmd/sgs/librtld_db/demo/common/
H A Dlex.l63 ^{ws}*step {return (STEP);}

12345