Home
last modified time | relevance | path

Searched refs:lastindex (Results 1 – 3 of 3) sorted by relevance

/AliOS-Things-master/components/amp/engine/duktape_engine/
A Drepl.c258 int lastindex = 0; in repl_up_history() local
260 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() local
292 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()
/AliOS-Things-master/hardware/chip/rtl872xd/tools/autopatch/
A Dauto_patch.bat79 set /a lastindex=!errorlevel!
80 set %2=!str:~0,%lastindex%!
86 set /a lastindex=!errorlevel!+1
87 set %2=!str:~%lastindex%!
/AliOS-Things-master/components/cli/src/
A Dcli.c636 uint32_t index, detectindex, lastindex; in cli_up_history() local
641 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() local
676 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