Searched refs:hist (Results 1 - 25 of 33) sorted by relevance

12

/freebsd-9.3-release/bin/sh/
H A Dmyhistedit.h35 extern History *hist;
H A Dhistedit.c67 History *hist; /* history cookie */ variable
87 if (!hist) {
92 hist = history_init();
95 if (hist != NULL)
122 if (hist)
123 el_set(el, EL_HIST, history, hist);
153 if (hist) {
154 history_end(hist);
155 hist = NULL;
169 if (hist !
[all...]
H A Dinput.c300 if (parsefile->fd == 0 && hist && something) {
303 history(hist, &he, whichprompt == 1 ? H_ENTER : H_ADD,
/freebsd-9.3-release/gnu/usr.bin/gdb/doc/
H A DMakefile12 gpl.texi inc-hist.texinfo rluser.texinfo
22 inc-hist.texinfo: hsuser.texi inc-hist.diff
29 CLEANFILES= gdb-cfg.texi GDBvn.texi inc-hist.texinfo inc-hist.texinfo.orig \
/freebsd-9.3-release/contrib/libreadline/
H A Dhistory.c229 history_get_time (hist)
230 HIST_ENTRY *hist;
235 if (hist == 0 || hist->timestamp == 0)
237 ts = hist->timestamp;
330 free_history_entry (hist)
331 HIST_ENTRY *hist;
335 if (hist == 0)
337 FREE (hist->line);
338 FREE (hist
[all...]
/freebsd-9.3-release/usr.bin/bc/
H A Dextern.h40 extern History *hist;
H A Dscan.l39 History *hist;
297 history(hist, &he, H_ENTER, bp);
/freebsd-9.3-release/usr.bin/netstat/
H A Dipsec.c169 static void ipsec_hist(const u_quad_t *hist, size_t histmax,
178 ipsec_hist(const u_quad_t *hist, size_t histmax, const struct val2str *name, argument
187 if (hist[proto] <= 0)
198 printf("\t\t%s: %ju\n", p->str, (uintmax_t)hist[proto]);
201 (uintmax_t)hist[proto]);
213 #define hist(f, n, t) \ macro
227 hist(ipsecstat->in_ahhist, ipsec_ahnames, "AH input");
228 hist(ipsecstat->in_esphist, ipsec_espnames, "ESP input");
229 hist(ipsecstat->in_comphist, ipsec_compnames, "IPComp input");
238 hist(ipsecsta
244 #undef hist macro
287 ipsec_hist_new(const u_int32_t *hist, size_t histmax, const struct val2str *name, const char *title) argument
322 #define hist macro
348 #undef hist macro
371 #define hist macro
398 #undef hist macro
422 #define hist macro
453 #undef hist macro
[all...]
/freebsd-9.3-release/lib/libedit/TEST/
H A Dtest.c127 History *hist; local
135 hist = history_init(); /* Init the builtin history */
137 history(hist, &ev, H_SETSIZE, 100);
149 el_set(el, EL_HIST, history, hist);
211 if (history(hist, &ev, H_SET, lastevent) == -1)
213 history(hist, &ev, H_ADD , buf);
215 history(hist, &ev, H_ENTER, buf);
220 history(hist, &ev, continuation ? H_APPEND : H_ENTER, buf);
243 for (rv = history(hist, &ev, H_LAST); rv != -1;
244 rv = history(hist,
[all...]
/freebsd-9.3-release/contrib/gcc/
H A Dvalue-prof.c709 histogram_value hist;
738 hist = ggc_alloc (sizeof (*hist));
739 hist->hvalue.value = divisor;
740 hist->hvalue.stmt = stmt;
741 hist->type = HIST_TYPE_SINGLE_VALUE;
742 VEC_quick_push (histogram_value, *values, hist);
751 hist = ggc_alloc (sizeof (*hist));
752 hist
708 histogram_value hist; local
788 histogram_value hist; local
[all...]
H A Dprofile.c177 histogram_value hist = VEC_index (histogram_value, values, i);
178 switch (hist->type)
199 if (!coverage_counter_alloc (t, hist->n_counters))
202 switch (hist->type)
205 (profile_hooks->gen_interval_profiler) (hist, t, 0);
209 (profile_hooks->gen_pow2_profiler) (hist, t, 0);
213 (profile_hooks->gen_one_value_profiler) (hist, t, 0);
217 (profile_hooks->gen_const_delta_profiler) (hist, t, 0);
627 histogram_value hist = VEC_index (histogram_value, values, i);
628 n_histogram_counters[(int) hist
176 histogram_value hist = VEC_index (histogram_value, values, i); local
624 histogram_value hist = VEC_index (histogram_value, values, i); local
649 histogram_value hist = VEC_index (histogram_value, values, i); local
[all...]
/freebsd-9.3-release/sys/contrib/ia64/libuwx/src/
H A Duwx_step.c260 uint64_t hist; local
277 status = uwx_restore_reg(env, env->rstate[SBREG_PSP], &val, &hist);
281 env->history.special[UWX_REG_PSP] = hist;
287 status = uwx_restore_reg(env, env->rstate[SBREG_RP], &val, &hist);
291 env->history.special[UWX_REG_RP] = hist;
297 status = uwx_restore_reg(env, env->rstate[SBREG_PFS], &val, &hist);
301 env->history.special[UWX_REG_PFS] = hist;
482 uint64_t hist; local
522 status = uwx_restore_reg(env, env->rstate[SBREG_PRIUNAT], &val, &hist);
526 env->history.special[UWX_REG_PRIUNAT] = hist;
[all...]
/freebsd-9.3-release/usr.sbin/gstat/
H A Dgstat.c94 History *hist; local
97 hist = NULL;
179 hist = history_init();
180 if (hist == NULL)
182 history(hist, &hist_ev, H_SETSIZE, 100);
188 el_set(el, EL_HIST, history, hist);
191 history(hist, &hist_ev, H_ENTER, f_s);
384 history(hist, &hist_ev, H_ENTER, line);
/freebsd-9.3-release/usr.sbin/lpr/lpc/
H A Dlpc.c151 static History *hist; local
160 hist = NULL;
165 hist = history_init();
166 history(hist, &he, H_SETSIZE, 100);
167 el_set(el, EL_HIST, history, hist);
188 history(hist, &he, H_ENTER, bp);
/freebsd-9.3-release/usr.sbin/ngctl/
H A Dmain.c297 History *hist; local
308 hist = history_init();
309 if (hist == NULL)
311 history(hist, &hev, H_SETSIZE, 100);
312 history(hist, &hev, H_SETUNIQUE, 1);
313 el_set(el, EL_HIST, history, (const char *)hist);
324 history(hist, &hev, H_ENTER, buf);
333 history_end(hist);
/freebsd-9.3-release/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/
H A Drange_tree.c57 uint64_t hist[RANGE_TREE_HISTOGRAM_SIZE] = { 0 }; local
65 hist[idx]++;
66 ASSERT3U(hist[idx], !=, 0);
70 if (hist[i] != rt->rt_histogram[i]) {
71 zfs_dbgmsg("i=%d, hist=%p, hist=%llu, rt_hist=%llu",
72 i, hist, hist[i], rt->rt_histogram[i]);
74 VERIFY3U(hist[i], ==, rt->rt_histogram[i]);
/freebsd-9.3-release/usr.sbin/pppctl/
H A Dpppctl.c57 History *hist; /* libedit stuff */ member in struct:thread_data
296 history(td->hist, H_ENTER, l);
298 history(td->hist, &hev, H_ENTER, l);
581 td.hist = history_init();
589 history(td.hist, H_EVENT, size);
592 history(td.hist, &hev, H_SETSIZE, size);
604 el_set(td.edit, EL_HIST, history, (const char *)td.hist);
638 history_end(td.hist);
/freebsd-9.3-release/sys/ofed/drivers/infiniband/ulp/sdp/
H A Dsdp_proc.c244 #define SDPSTATS_HIST_GET(hist, hist_len, sum) ({ \
248 u32 *h = per_cpu(sdpstats, __i).hist; \
255 #define __sdpstats_seq_hist(seq, msg, hist, is_log) ({ \
257 int hist_len = ARRAY_SIZE(__get_cpu_var(sdpstats).hist);\
259 SDPSTATS_HIST_GET(hist, hist_len, tmp_hist); \
/freebsd-9.3-release/sys/sys/
H A Devent.h161 #define KNOTE(list, hist, flags) knote(list, hist, flags)
/freebsd-9.3-release/contrib/tnftp/src/
H A Dutil.c977 if (editing && el == NULL && hist == NULL) {
983 hist = history_init(); /* init the builtin history */
984 history(hist, &ev, H_SETSIZE, 100);/* remember 100 events */
985 el_set(el, EL_HIST, history, hist); /* use history */
1005 if (hist) {
1006 history_end(hist);
1007 hist = NULL;
H A Dftp_var.h265 GLOBAL History *hist; /* editline(3) history structure */ variable
/freebsd-9.3-release/lib/libedit/
H A DMakefile10 hist.c key.c map.c \
/freebsd-9.3-release/sbin/fsdb/
H A Dfsdb.c228 History *hist; local
236 hist = history_init();
237 history(hist, &he, H_SETSIZE, 100); /* 100 elt history buffer */
242 el_set(elptr, EL_HIST, history, hist);
249 history(hist, &he, H_ENTER, elline);
292 history_end(hist);
/freebsd-9.3-release/usr.bin/tftp/
H A Dmain.c710 static History *hist; local
719 hist = history_init();
720 history(hist, &he, H_SETSIZE, 100);
721 el_set(el, EL_HIST, history, hist);
734 history(hist, &he, H_ENTER, bp);
/freebsd-9.3-release/contrib/ntp/util/
H A DMakefile.in96 EXTRA_PROGRAMS = audio-pcm$(EXEEXT) byteorder$(EXEEXT) hist$(EXEEXT) \
167 hist_SOURCES = hist.c
168 hist_OBJECTS = hist.$(OBJEXT)
269 SOURCES = audio-pcm.c byteorder.c hist.c $(jitter_SOURCES) kern.c \
272 DIST_SOURCES = audio-pcm.c byteorder.c hist.c $(jitter_SOURCES) kern.c \
858 hist$(EXEEXT): $(hist_OBJECTS) $(hist_DEPENDENCIES) $(EXTRA_hist_DEPENDENCIES)
859 @rm -f hist$(EXEEXT)
922 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/hist.Po@am__quote@

Completed in 255 milliseconds

12