HomeSort by: relevance | last modified time | path
    Searched defs:history_size (Results 1 - 2 of 2) sorted by relevancy

  /src/external/gpl3/gdb/dist/readline/readline/
history.c 81 static int history_size; variable
108 state->size = history_size;
123 history_size = state->size;
306 if (history_size == 0)
309 history_size = (history_max_entries > MAX_HISTORY_INITIAL_SIZE)
313 history_size = DEFAULT_HISTORY_INITIAL_SIZE;
314 the_history = (HIST_ENTRY **)xmalloc (history_size * sizeof (HIST_ENTRY *));
319 if (history_length == (history_size - 1))
321 history_size += DEFAULT_HISTORY_GROW_SIZE;
323 xrealloc (the_history, history_size * sizeof (HIST_ENTRY *))
    [all...]
  /src/external/gpl3/gdb.old/dist/readline/readline/
history.c 81 static int history_size; variable
108 state->size = history_size;
123 history_size = state->size;
306 if (history_size == 0)
309 history_size = (history_max_entries > MAX_HISTORY_INITIAL_SIZE)
313 history_size = DEFAULT_HISTORY_INITIAL_SIZE;
314 the_history = (HIST_ENTRY **)xmalloc (history_size * sizeof (HIST_ENTRY *));
319 if (history_length == (history_size - 1))
321 history_size += DEFAULT_HISTORY_GROW_SIZE;
323 xrealloc (the_history, history_size * sizeof (HIST_ENTRY *))
    [all...]

Completed in 29 milliseconds