/lk-master/lib/text/ |
A D | text.c | 47 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 D | font.c | 32 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 D | console.c | 70 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 D | debug.c | 39 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 D | uf2conv.py | 181 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 D | assert.h | 89 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 D | stackusage | 16 for line in sys.stdin: 17 t = line.split()
|
/lk-master/external/platform/nrfx/doc/buildfiles/ |
A D | extra_stylesheet.css | 14 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 D | memp.c | 70 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 D | codestyle | 13 --keep-one-line-blocks --pad-header --convert-tabs $@
|
/lk-master/external/platform/stm32f0xx/STM32F0xx_HAL_Driver/inc/ |
A D | stm32_assert_template.h | 61 void assert_failed(char* file, uint32_t line);
|
A D | stm32f0xx_hal_conf_template.h | 300 void assert_failed(char* file, uint32_t line);
|
A D | stm32f0xx_hal_conf.h | 301 void assert_failed(uint8_t* file, uint32_t line);
|
/lk-master/external/platform/pico/rp2_common/pico_runtime/ |
A D | runtime.c | 204 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 D | memp.h | 103 void *memp_malloc_fn(memp_t type, const char* file, const int line);
|
/lk-master/external/platform/stm32f7xx/STM32F7xx_HAL_Driver/Inc/ |
A D | stm32f7xx_hal_conf.h | 407 void assert_failed(uint8_t* file, uint32_t line);
|
A D | stm32f7xx_hal_conf_template.h | 408 void assert_failed(uint8_t* file, uint32_t line);
|
/lk-master/arch/mips/ |
A D | mips.ld | 204 .line 0 : { *(.line) }
|
/lk-master/external/platform/nrfx/doc/ |
A D | main_page.dox | 46 line to the @ref nrfx_glue file:
|
A D | nrfx.doxyfile | 45 # 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 D | systick_nvic.patch | 7 this line since arch/arm/arm-m/arch.c sets the priority to medium to
|