Searched refs:history_size (Results 1 - 5 of 5) sorted by relevance

/freebsd-10.2-release/contrib/libreadline/
H A Dhistory.c71 static int history_size; variable
98 state->size = history_size;
114 history_size = state->size;
291 if (history_size == 0)
293 history_size = DEFAULT_HISTORY_GROW_SIZE;
294 the_history = (HIST_ENTRY **)xmalloc (history_size * sizeof (HIST_ENTRY *));
299 if (history_length == (history_size - 1))
301 history_size += DEFAULT_HISTORY_GROW_SIZE;
303 xrealloc (the_history, history_size * sizeof (HIST_ENTRY *));
/freebsd-10.2-release/contrib/gdb/gdb/
H A Dtop.c981 static int history_size;
1578 hist_len = history_size;
1579 for (offset = 0; offset < history_size; offset++)
1639 if (history_size == INT_MAX)
1641 else if (history_size >= 0)
1642 stifle_history (history_size);
1645 history_size = INT_MAX;
1699 history_size = atoi (tmpenv);
1700 else if (!history_size)
1701 history_size
976 static int history_size; variable
[all...]
/freebsd-10.2-release/sys/dev/vt/
H A Dvt_buf.c420 vtbuf_grow(struct vt_buf *vb, const term_pos_t *p, unsigned int history_size) argument
427 history_size = MAX(history_size, p->tp_row);
430 bufsize = history_size * p->tp_col * sizeof(term_char_t);
432 rowssize = history_size * sizeof(term_pos_t *);
446 vb->vb_history_size = history_size;
454 if (history_size > old_history_size) {
512 * (old_history_size - history_size) lines of history are
515 for (r = 0; r < history_size; r ++) {
527 (old_history_size - history_size))
[all...]
/freebsd-10.2-release/sys/dev/syscons/
H A Dsyscons.h343 int history_size; /* size of history buffer */ member in struct:scr_stat
H A Dsyscons.c3305 scp->history_size = 0;

Completed in 174 milliseconds