Lines Matching refs:temp
123 histentry_T *temp; in init_history() local
136 temp = ALLOC_MULT(histentry_T, newlen); in init_history()
137 if (temp == NULL) // out of memory! in init_history()
152 temp = NULL; in init_history()
153 if (newlen == 0 || temp != NULL) in init_history()
158 clear_hist_entry(&temp[i]); in init_history()
163 temp[i] = history[type][i]; in init_history()
166 clear_hist_entry(&temp[i]); in init_history()
168 temp[i] = history[type][j]; in init_history()
176 temp[i] = history[type][j]; in init_history()
187 history[type] = temp; in init_history()