Home
last modified time | relevance | path

Searched refs:chars (Results 1 – 4 of 4) sorted by relevance

/DragonOS-0.1.8/kernel/src/libs/libUI/
Dtextui.c69 …(vline)->chars = chars_ptr; …
150 memset(vline->chars, 0, sizeof(struct textui_char_chromatic_t) * window->chars_per_line); in __textui_new_line()
184 vline->chars[vline->index].c = character; in __textui_putchar_window()
185 vline->chars[vline->index].FRcolor = FRcolor & 0xffffff; in __textui_putchar_window()
186 vline->chars[vline->index].BKcolor = BKcolor & 0xffffff; in __textui_putchar_window()
257 window->vlines.chromatic[window->vline_operating].chars[tmp].c = ' '; in textui_putchar_window()
258 … window->vlines.chromatic[window->vline_operating].chars[tmp].BKcolor = BKcolor & 0xffffff; in textui_putchar_window()
266 memset(window->vlines.chromatic[window->vline_operating].chars, 0, in textui_putchar_window()
Dtextui.h74 struct textui_char_normal_t *chars; // 字符对象数组 member
84 struct textui_char_chromatic_t *chars; member
Dtextui-render.c96 __textui_render_chromatic(actual_line_id, start + i, &vline->chars[start + i]); in textui_refresh_characters()
/DragonOS-0.1.8/kernel/src/filesystem/fat/
Dentry.rs1064 for c in name.chars() { in validate_long_name()
1767 let short_name = binding.chars().flat_map(|c| c.to_uppercase()); in eq_name()
1769 let long_name = binding.chars().flat_map(|c| c.to_uppercase()); in eq_name()
1770 let name = name.chars().flat_map(|c| c.to_uppercase()); in eq_name()
1910 for c in src.chars() { in copy_part()
1943 for c in name.chars() { in fletcher_16_checksum()
2205 let mut name: Vec<u16> = name.chars().map(|c| c as u16).collect(); in new()