Home
last modified time | relevance | path

Searched refs:steps (Results 1 – 25 of 96) sorted by relevance

1234

/dragonfly/contrib/gcc-8.0/libgcc/
H A Dlibgcov-profiler.c48 int start, unsigned steps) in __gcov_interval_profiler() argument
52 counters[steps + 1]++; in __gcov_interval_profiler()
53 else if (delta >= steps) in __gcov_interval_profiler()
54 counters[steps]++; in __gcov_interval_profiler()
68 int start, unsigned steps) in __gcov_interval_profiler_atomic() argument
72 __atomic_fetch_add (&counters[steps + 1], 1, __ATOMIC_RELAXED); in __gcov_interval_profiler_atomic()
73 else if (delta >= steps) in __gcov_interval_profiler_atomic()
74 __atomic_fetch_add (&counters[steps], 1, __ATOMIC_RELAXED); in __gcov_interval_profiler_atomic()
/dragonfly/usr.sbin/fdformat/
H A Dfdformat.c230 int rate = -1, gaplen = -1, secsize = -1, steps = -1; in main() local
274 steps = atoi(optarg); in main()
348 if (steps >= 0) fdt.steptrac = steps; in main()
/dragonfly/contrib/zstd/lib/dictBuilder/
H A Dfastcover.c515 coverParams->steps = fastCoverParams.steps; in FASTCOVER_convertToCoverParams()
530 fastCoverParams->steps = coverParams.steps; in FASTCOVER_convertToFastCoverParams()
626 const unsigned kSteps = parameters->steps == 0 ? 40 : parameters->steps; in ZDICT_optimizeTrainFromBuffer_fastCover()
716 data->parameters.steps = kSteps; in ZDICT_optimizeTrainFromBuffer_fastCover()
H A Dzdict.h139 …unsigned steps; /* Number of steps : Only used for optimization : 0 means default (40… member
151 …unsigned steps; /* Number of steps : Only used for optimization : 0 means default (40… member
H A Dcover.c1123 const unsigned kSteps = parameters->steps == 0 ? 40 : parameters->steps; in ZDICT_optimizeTrainFromBuffer_cover()
1205 data->parameters.steps = kSteps; in ZDICT_optimizeTrainFromBuffer_cover()
/dragonfly/contrib/gcc-8.0/gcc/
H A Dvalue-prof.c235 + hist->hdata.intvl.steps - 1)); in dump_histogram_value()
240 for (i = 0; i < hist->hdata.intvl.steps; i++) in dump_histogram_value()
357 streamer_write_uhwi (ob, hist->hdata.intvl.steps); in stream_out_histogram_value()
402 ncounters = new_val->hdata.intvl.steps + 2; in stream_in_histogram_value()
1095 unsigned int i, steps; in gimple_mod_subtract_transform() local
1117 for (i = 0; i < histogram->hdata.intvl.steps; i++) in gimple_mod_subtract_transform()
1122 steps = histogram->hdata.intvl.steps; in gimple_mod_subtract_transform()
1142 for (i = 0; i < histogram->hdata.intvl.steps; i++) in gimple_mod_subtract_transform()
1148 if (i == steps in gimple_mod_subtract_transform()
1916 hist->hdata.intvl.steps = 2; in gimple_divmod_values_to_profile()
[all …]
H A Dvalue-prof.h64 unsigned int steps; /* Number of values in it. */ member
H A Dtree-profile.c312 tree steps = build_int_cst_type (unsigned_type_node, in gimple_gen_interval_profiler() local
313 value->hdata.intvl.steps); in gimple_gen_interval_profiler()
320 ref_ptr, val, start, steps); in gimple_gen_interval_profiler()
/dragonfly/contrib/gcc-4.7/gcc/
H A Dvalue-prof.c215 + hist->hdata.intvl.steps - 1)); in dump_histogram_value()
220 for (i = 0; i < hist->hdata.intvl.steps; i++) in dump_histogram_value()
977 unsigned int i, steps; in gimple_mod_subtract_transform() local
1000 for (i = 0; i < histogram->hdata.intvl.steps; i++) in gimple_mod_subtract_transform()
1005 steps = histogram->hdata.intvl.steps; in gimple_mod_subtract_transform()
1025 for (i = 0; i < histogram->hdata.intvl.steps; i++) in gimple_mod_subtract_transform()
1031 if (i == steps in gimple_mod_subtract_transform()
1677 hist->hdata.intvl.steps = 2; in gimple_divmod_values_to_profile()
1780 hist->n_counters = hist->hdata.intvl.steps + 2; in gimple_find_values_to_profile()
H A Dtree-profile.c265 tree steps = build_int_cst_type (unsigned_type_node, in gimple_gen_interval_profiler() local
266 value->hdata.intvl.steps); in gimple_gen_interval_profiler()
273 ref_ptr, val, start, steps); in gimple_gen_interval_profiler()
H A Dvalue-prof.h62 unsigned int steps; /* Number of values in it. */ member
/dragonfly/contrib/gcc-4.7/libgcc/
H A Dlibgcov.c854 int start, unsigned steps) in __gcov_interval_profiler() argument
858 counters[steps + 1]++; in __gcov_interval_profiler()
859 else if (delta >= steps) in __gcov_interval_profiler()
860 counters[steps]++; in __gcov_interval_profiler()
/dragonfly/games/adventure/
H A Dinit.c101 int keys, lamp, grate, cage, rod, rod2, steps, /* mnemonics */ variable
184 steps = vocab(DECR('s', 't', 'e', 'p', 's'), 1, 0); in linkdata()
H A Dmain.c121 if (obj == steps && toting(nugget)) in main()
135 if (obj == steps && loc == fixed[steps]) in main()
H A Dhdr.h139 extern int keys, lamp, grate, cage, rod, rod2, steps, /* mnemonics */
/dragonfly/contrib/zstd/programs/
H A Dzstdcli.c400 …if (longCommandWArg(&stringPtr, "steps=")) { params->steps = readU32FromChar(&stringPtr); if (stri… in parseCoverParameters()
422 …=%u\nd=%u\nsteps=%u\nsplit=%u\nshrink%u\n", params->k, params->d, params->steps, (unsigned)(params… in parseCoverParameters()
439 …if (longCommandWArg(&stringPtr, "steps=")) { params->steps = readU32FromChar(&stringPtr); if (stri… in parseFastCoverParameters()
462 …plit=%u\naccel=%u\nshrink=%u\n", params->k, params->d, params->f, params->steps, (unsigned)(params… in parseFastCoverParameters()
486 params.steps = 4; in defaultCoverParams()
499 params.steps = 4; in defaultFastCoverParams()
H A Ddibio.c333 coverParams->steps, splitPercentage); in DiB_trainFromFiles()
348 … fastCoverParams->d, fastCoverParams->f, fastCoverParams->steps, splitPercentage, in DiB_trainFromFiles()
/dragonfly/bin/pax/
H A Dtables.c1230 int steps; in st_hash() local
1249 steps = len/sizeof(u_int); in st_hash()
1257 for (i = 0; i < steps; ++i) { in st_hash()
/dragonfly/contrib/less/
H A Dsearch.c404 int steps = 0; in hlist_find() local
429 if (steps >= HILITE_LOOKASIDE_STEPS) in hlist_find()
431 steps++; in hlist_find()
/dragonfly/contrib/tcpdump/
H A DREADME.md210 - Do all of the above steps several times, both directions,
219 redo the steps above.
/dragonfly/usr.sbin/cron/doc/
H A DREADME63 lists into ranges with steps -- basically, this step is
H A DCONVERSION75 current one does, barring the extra steps in installing or changing it.
/dragonfly/contrib/bmake/
H A Dinstall-sh44 # Ignore errors from steps indicated by "errs" (``s,o,g,m'').
/dragonfly/contrib/gdb-7/gdb/mi/
H A Dmi-main.c1662 size_t len, i, steps, remainder; in mi_cmd_data_write_memory_bytes() local
1699 steps = count / len; in mi_cmd_data_write_memory_bytes()
1701 for (j = 0; j < steps; j++) in mi_cmd_data_write_memory_bytes()
1705 memcpy (data + steps * len, databuf, remainder); in mi_cmd_data_write_memory_bytes()
/dragonfly/sys/contrib/dev/acpica/source/compiler/
H A Dreadme.txt117 These steps will add the compiler to the tools menu as a custom tool.

1234