Home
last modified time | relevance | path

Searched refs:line (Results 1 – 21 of 21) sorted by relevance

/lk-master/lib/text/
A Dtext.c47 struct text_line *line = malloc(sizeof(struct text_line)); in text_draw() local
49 line->str = strdup(string); in text_draw()
50 line->x = x; in text_draw()
51 line->y = y; in text_draw()
53 list_add_head(&text_list, &line->node); in text_draw()
69 struct text_line *line; in text_update() local
70 list_for_every_entry(&text_list, line, struct text_line, node) { in text_update()
72 int x = line->x; in text_update()
73 for (c = line->str; *c; c++) { in text_update()
74 font_draw_char(surface, *c, x, line->y, TEXT_COLOR); in text_update()
/lk-master/lib/font/
A Dfont.c32 uint line; in font_draw_char() local
36 line = FONT[c * FONT_Y + i]; in font_draw_char()
38 if (line & 0x1) in font_draw_char()
40 line = line >> 1; in font_draw_char()
/lk-master/lib/console/
A Dconsole.c70 static void add_history(console_t *con, const char *line);
116 return con->history + line * LINE_LEN; in history_line()
138 static void add_history(console_t *con, const char *line) { in add_history() argument
140 if (line[0] == 0) in add_history()
144 if (strcmp(line, history_line(con, last)) == 0) in add_history()
209 char line[LINE_LEN + MAX_NUM_ARGS * 3]; in cmd_repeat() local
216 line[idx++] = ' '; in cmd_repeat()
218 line[idx++] = '"'; in cmd_repeat()
220 line[idx++] = *src; in cmd_repeat()
222 line[idx++] = '"'; in cmd_repeat()
[all …]
/lk-master/lib/debug/
A Ddebug.c39 void assert_fail_msg(const char* file, int line, const char* expression, const char* fmt, ...) { in assert_fail_msg() argument
42 printf("ASSERT FAILED at (%s:%d): %s\n", file, line, expression); in assert_fail_msg()
51 void assert_fail(const char* file, int line, const char* expression) { in assert_fail() argument
52 printf("ASSERT FAILED at (%s:%d): %s\n", file, line, expression); in assert_fail()
/lk-master/platform/rp20xx/tools/
A Duf2conv.py181 for line in buf.split('\n'):
182 if line[0] != ":":
186 while i < len(line) - 1:
187 rec.append(int(line[i:i+2], 16))
224 for line in to_str(r).split('\n'):
225 words = re.split('\s+', line)
/lk-master/lib/libc/include/
A Dassert.h89 void assert_fail(const char *file, int line, const char *expression) __NO_RETURN __NO_INLINE;
90 void assert_fail_msg(const char *file, int line, const char *expression, const char *fmt,
/lk-master/arch/arm/
A Dstackusage16 for line in sys.stdin:
17 t = line.split()
/lk-master/external/platform/nrfx/doc/buildfiles/
A Dextra_stylesheet.css14 line-height: 20px;
101 div.fragment div.line {
103 line-height:18px;
246 line-height:18px;
253 line-height:18px;
259 line-height:18px;
265 line-height:18px;
418 line-height: 1em;
/lk-master/external/lib/lwip/core/
A Dmemp.c70 int line; member
392 memp_malloc_fn(memp_t type, const char* file, const int line) in memp_malloc()
412 memp->line = line; in memp_malloc()
/lk-master/scripts/
A Dcodestyle13 --keep-one-line-blocks --pad-header --convert-tabs $@
/lk-master/external/platform/stm32f0xx/STM32F0xx_HAL_Driver/inc/
A Dstm32_assert_template.h61 void assert_failed(char* file, uint32_t line);
A Dstm32f0xx_hal_conf_template.h300 void assert_failed(char* file, uint32_t line);
A Dstm32f0xx_hal_conf.h301 void assert_failed(uint8_t* file, uint32_t line);
/lk-master/external/platform/pico/rp2_common/pico_runtime/
A Druntime.c204 void __assert_func(const char *file, int line, const char *func, const char *failedexpr) { in __assert_func() argument
206 failedexpr, file, line, func ? ", function: " : "", in __assert_func()
/lk-master/external/lib/lwip/include/lwip/
A Dmemp.h103 void *memp_malloc_fn(memp_t type, const char* file, const int line);
/lk-master/external/platform/stm32f7xx/STM32F7xx_HAL_Driver/Inc/
A Dstm32f7xx_hal_conf.h407 void assert_failed(uint8_t* file, uint32_t line);
A Dstm32f7xx_hal_conf_template.h408 void assert_failed(uint8_t* file, uint32_t line);
/lk-master/arch/mips/
A Dmips.ld204 .line 0 : { *(.line) }
/lk-master/external/platform/nrfx/doc/
A Dmain_page.dox46 line to the @ref nrfx_glue file:
A Dnrfx.doxyfile45 # Using the PROJECT_BRIEF tag one can provide an optional one line description
180 # first line (until the first dot) of a Javadoc-style comment as the brief
189 # line (until the first dot) of a Qt-style comment as the brief description. If
197 # multi-line C++ special comment block (i.e. a block of //! or /// comments) as
199 # to treat a multi-line C++ comment block as a detailed description. Set this
771 # The default value is: $file:$line: $text.
773 WARN_FORMAT = "$file:$line: $text"
1021 # tools must be available from the command line (i.e. in the search path).
1470 # doxygen will group on one line in the generated HTML documentation.
2125 # remove all references to function-like macros that are alone on a line, have
[all …]
/lk-master/external/arch/arm/arm-m/CMSIS/Patch/
A Dsystick_nvic.patch7 this line since arch/arm/arm-m/arch.c sets the priority to medium to

Completed in 30 milliseconds