Searched refs:lastindex (Results 1 – 3 of 3) sorted by relevance
258 int lastindex = 0; in repl_up_history() local260 lastindex = g_repl->his_idx; in repl_up_history()277 while (g_repl->history[lastindex] != '\0') in repl_up_history()279 *inaddr++ = g_repl->history[lastindex]; in repl_up_history()280 lastindex = (lastindex + 1) % REPL_INBUF_SIZE; in repl_up_history()290 int lastindex = 0; in repl_down_history() local292 lastindex = g_repl->his_idx; in repl_down_history()308 while (g_repl->history[lastindex] != '\0') in repl_down_history()310 *inaddr++ = g_repl->history[lastindex]; in repl_down_history()311 lastindex = (lastindex + 1) % REPL_INBUF_SIZE; in repl_down_history()
79 set /a lastindex=!errorlevel!80 set %2=!str:~0,%lastindex%!86 set /a lastindex=!errorlevel!+187 set %2=!str:~%lastindex%!
636 uint32_t index, detectindex, lastindex; in cli_up_history() local641 lastindex = g_cli->his_idx; in cli_up_history()660 while (g_cli->history[lastindex] != '\0') { in cli_up_history()661 *inaddr++ = g_cli->history[lastindex]; in cli_up_history()662 lastindex = (lastindex + 1) % CLI_INBUF_SIZE; in cli_up_history()672 uint32_t index, lastindex; in cli_down_history() local676 lastindex = g_cli->his_idx; in cli_down_history()689 while (g_cli->history[lastindex] != '\0') { in cli_down_history()690 *inaddr++ = g_cli->history[lastindex]; in cli_down_history()691 lastindex = (lastindex + 1) % CLI_INBUF_SIZE; in cli_down_history()
Completed in 7 milliseconds