HomeSort by: relevance | last modified time | path
    Searched defs:hist (Results 1 - 25 of 36) sorted by relevancy

1 2

  /src/usr.bin/mail/
complete.h 40 History *hist; /* editline(3) history structure */ member in struct:__anon8277
  /src/external/bsd/unbound/dist/util/
timehist.c 72 dosetup(struct timehist* hist)
77 for(i=0; i<hist->num; i++) {
78 hist->buckets[i].lower = last;
80 hist->buckets[i].upper = last;
81 hist->buckets[i].count = 0;
87 struct timehist* hist = (struct timehist*)calloc(1, local
89 if(!hist)
91 hist->num = NUM_BUCKETS_HIST;
92 hist->buckets = (struct th_buck*)calloc(hist->num
    [all...]
  /src/external/gpl3/gcc/dist/gcc/
gimple-streamer-out.cc 66 histogram_value hist; local
83 hist = gimple_histogram_value (fn, stmt);
84 bp_pack_value (&bp, hist != NULL, 1);
191 if (hist)
192 stream_out_histogram_value (ob, hist);
profile.cc 168 histogram_value hist = values[i]; local
169 unsigned t = COUNTER_FOR_HIST_TYPE (hist->type);
171 if (!coverage_counter_alloc (t, hist->n_counters))
174 switch (hist->type)
177 gimple_gen_interval_profiler (hist, t);
181 gimple_gen_pow2_profiler (hist, t);
185 gimple_gen_topn_values_profiler (hist, t);
189 gimple_gen_ic_profiler (hist, t);
193 gimple_gen_average_profiler (hist, t);
197 gimple_gen_ior_profiler (hist, t)
897 histogram_value hist = values[i]; local
923 histogram_value hist = values[i]; local
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/
gimple-streamer-out.cc 66 histogram_value hist; local
83 hist = gimple_histogram_value (fn, stmt);
84 bp_pack_value (&bp, hist != NULL, 1);
191 if (hist)
192 stream_out_histogram_value (ob, hist);
  /src/lib/libedit/TEST/
tc1.c 132 History *hist; local
141 hist = history_init(); /* Init the builtin history */
143 history(hist, &ev, H_SETSIZE, 100);
155 el_set(el, EL_HIST, history, hist);
217 if (history(hist, &ev, H_SET, lastevent) == -1)
219 history(hist, &ev, H_ADD , buf);
221 history(hist, &ev, H_ENTER, buf);
226 history(hist, &ev, continuation ? H_APPEND : H_ENTER, buf);
249 for (rv = history(hist, &ev, H_LAST); rv != -1;
250 rv = history(hist, &ev, H_PREV)
    [all...]
wtc1.c 114 HistoryW *hist; local
127 hist = history_winit(); /* Init built-in history */
128 history_w(hist, &ev, H_SETSIZE, 100); /* Remember 100 events */
129 history_w(hist, &ev, H_LOAD, hfile);
139 el_wset(el, EL_HIST, history_w, hist); /* FIXME - history_w? */
193 history_w(hist, &ev, continuation ? H_APPEND : H_ENTER, line);
214 for(rc = history_w(hist, &ev, H_LAST);
216 rc = history_w(hist, &ev, H_PREV))
222 history_w(hist, &ev, H_CLEAR);
228 history_w(hist, &ev, H_LOAD
    [all...]
  /src/external/bsd/bc/dist/
global.h 122 EXTERN History *hist; variable
  /src/usr.sbin/crash/
crash.c 69 static History *hist; variable
106 history_end(hist);
272 history(hist, &he, H_ENTER, el);
478 hist = history_init();
479 history(hist, &he, H_SETSIZE, 100);
483 el_set(elptr, EL_HIST, history, hist);
  /src/usr.sbin/lpr/lpc/
lpc.c 81 History *hist; variable
142 history_end(hist);
165 hist = history_init();
166 history(hist, &he, H_SETSIZE, 100); /* 100 elt history buffer */
171 el_set(elptr, EL_HIST, history, hist);
179 history(hist, &he, H_ENTER, elline);
  /src/external/cddl/osnet/dist/uts/common/fs/zfs/
range_tree.c 57 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]);
  /src/external/gpl3/binutils/dist/gprof/
symtab.h 72 hist; member in struct:sym
  /src/external/gpl3/binutils/dist/gprofng/src/
Exp_Layout.cc 364 Histable *hist = CallStack::getStackPC (user_stack, 0); local
365 if (hist->get_type () == Histable::INSTR)
367 DbeInstr *instr = (DbeInstr*) hist;
371 else if (hist->get_type () == Histable::LINE)
373 DbeLine *line = (DbeLine *) hist;
Expression.cc 434 Histable *hist = stack->get_instr (); local
438 cur->v.val = hist->convertto (Histable::FUNCTION)->id;
444 cur->v.val = hist->convertto (Histable::LINE)->id;
446 cur->v.fn = hist->convertto (Histable::FUNCTION)->id;
453 cur->v.val = hist->convertto (Histable::INSTR)->id;
455 cur->v.fn = hist->convertto (Histable::FUNCTION)->id;
symtab.h 74 hist; member in struct:sym
CallStack.cc 244 Histable *hist; local
247 hist = pcs->fetch (btm);
248 if (hist->get_type () == Histable::INSTR)
249 instr = (DbeInstr *) hist;
251 instr = (DbeInstr *) hist->convertto (Histable::INSTR);
279 hist = pcs->fetch (top);
280 if (hist->get_type () == Histable::INSTR)
281 instr = (DbeInstr *) hist;
283 instr = (DbeInstr *) hist->convertto (Histable::INSTR);
310 hist = (DbeInstr*) pcs->fetch (i)
    [all...]
  /src/external/gpl3/binutils.old/dist/gprof/
symtab.h 72 hist; member in struct:sym
  /src/external/gpl3/binutils.old/dist/gprofng/src/
Exp_Layout.cc 364 Histable *hist = CallStack::getStackPC (user_stack, 0); local
365 if (hist->get_type () == Histable::INSTR)
367 DbeInstr *instr = (DbeInstr*) hist;
371 else if (hist->get_type () == Histable::LINE)
373 DbeLine *line = (DbeLine *) hist;
Expression.cc 434 Histable *hist = stack->get_instr (); local
438 cur->v.val = hist->convertto (Histable::FUNCTION)->id;
444 cur->v.val = hist->convertto (Histable::LINE)->id;
446 cur->v.fn = hist->convertto (Histable::FUNCTION)->id;
453 cur->v.val = hist->convertto (Histable::INSTR)->id;
455 cur->v.fn = hist->convertto (Histable::FUNCTION)->id;
CallStack.cc 244 Histable *hist; local
247 hist = pcs->fetch (btm);
248 if (hist->get_type () == Histable::INSTR)
249 instr = (DbeInstr *) hist;
251 instr = (DbeInstr *) hist->convertto (Histable::INSTR);
279 hist = pcs->fetch (top);
280 if (hist->get_type () == Histable::INSTR)
281 instr = (DbeInstr *) hist;
283 instr = (DbeInstr *) hist->convertto (Histable::INSTR);
310 hist = (DbeInstr*) pcs->fetch (i)
    [all...]
  /src/sys/netinet/
dccp_tfrc.h 105 struct s_hist_head hist; /* Packet history */ member in struct:tfrc_send_ccb
218 struct r_hist_head hist; /* Packet history */ member in struct:tfrc_recv_ccb
  /src/external/bsd/unbound/dist/smallapp/
unbound-control.c 323 struct timehist* hist; local
325 hist = timehist_setup();
326 if(!hist)
328 timehist_import(hist, s->svr.hist, NUM_BUCKETS_HIST);
329 for(i=0; i<hist->num; i++) {
331 (int)hist->buckets[i].lower.tv_sec,
332 (int)hist->buckets[i].lower.tv_usec,
333 (int)hist->buckets[i].upper.tv_sec,
334 (int)hist->buckets[i].upper.tv_usec
    [all...]
  /src/bin/sh/
histedit.c 78 History *hist; /* history cookie */ variable
128 if (!hist) {
133 hist = history_init();
136 if (hist != NULL) {
164 if (hist)
165 el_set(el, EL_HIST, history, hist);
206 if (hist) {
207 history_end(hist);
208 hist = NULL;
254 (hs == NULL ? "''" : hs), flags, "!hist" + (hist != NULL)))
    [all...]
  /src/usr.bin/cdplay/
cdplay.c 161 static History *hist; variable
286 hist = history_init();
287 history(hist, &he, H_SETSIZE, 100); /* 100 elt history buffer */
291 el_set(elptr, EL_HIST, history, hist);
301 history(hist, &he, H_ENTER, elline);
323 history_end(hist);
  /src/usr.bin/ftp/
ftp_var.h 263 GLOBAL History *hist; /* editline(3) history structure */ variable

Completed in 33 milliseconds

1 2