Home
last modified time | relevance | path

Searched full:d (Results 1 – 25 of 355) sorted by relevance

12345678910>>...15

/lvgl-latest/src/libs/thorvg/
DtvgSwCommon.h243 typedef uint8_t(*SwMask)(uint8_t s, uint8_t d, uint8_t a); //src, dst, alpha
244 typedef uint32_t(*SwBlender)(uint32_t s, uint32_t d, uint8_t a); //src, dst, alpha
311 static inline uint32_t INTERPOLATE(uint32_t s, uint32_t d, uint8_t a) in INTERPOLATE() argument
313 …8) & 0xff00ff) - ((d >> 8) & 0xff00ff)) * a) + (d & 0xff00ff00)) & 0xff00ff00) + ((((((s & 0xff00f… in INTERPOLATE()
316 static inline uint8_t INTERPOLATE8(uint8_t s, uint8_t d, uint8_t a) in INTERPOLATE8() argument
318 return (((s) * (a) + 0xff) >> 8) + (((d) * ~(a) + 0xff) >> 8); in INTERPOLATE8()
351 static inline uint32_t opBlendInterp(uint32_t s, uint32_t d, uint8_t a) in opBlendInterp() argument
353 return INTERPOLATE(s, d, a); in opBlendInterp()
356 static inline uint32_t opBlendNormal(uint32_t s, uint32_t d, uint8_t a) in opBlendNormal() argument
359 return t + ALPHA_BLEND(d, IA(t)); in opBlendNormal()
[all …]
DtvgSwRaster.cpp171 static inline uint8_t _opMaskNone(uint8_t s, TVG_UNUSED uint8_t d, TVG_UNUSED uint8_t a) in _opMaskNone() argument
176 static inline uint8_t _opMaskAdd(uint8_t s, uint8_t d, uint8_t a) in _opMaskAdd() argument
178 return s + MULTIPLY(d, a); in _opMaskAdd()
182 static inline uint8_t _opMaskSubtract(uint8_t s, uint8_t d, TVG_UNUSED uint8_t a) in _opMaskSubtract() argument
184 return MULTIPLY(s, 255 - d); in _opMaskSubtract()
188 static inline uint8_t _opMaskIntersect(uint8_t s, uint8_t d, TVG_UNUSED uint8_t a) in _opMaskIntersect() argument
190 return MULTIPLY(s, d); in _opMaskIntersect()
194 static inline uint8_t _opMaskDifference(uint8_t s, uint8_t d, uint8_t a) in _opMaskDifference() argument
196 return MULTIPLY(s, 255 - d) + MULTIPLY(d, a); in _opMaskDifference()
200 static inline uint8_t _opMaskLighten(uint8_t s, uint8_t d, uint8_t a) in _opMaskLighten() argument
[all …]
/lvgl-latest/src/display/
Dlv_display.c640 lv_display_t * d = lv_obj_get_display(new_scr); in lv_screen_load_anim() local
641 lv_obj_t * act_scr = d->act_scr; in lv_screen_load_anim()
643 if(act_scr == new_scr || d->scr_to_load == new_scr) { in lv_screen_load_anim()
649 if(d->scr_to_load && act_scr != d->scr_to_load) { in lv_screen_load_anim()
650 lv_anim_delete(d->scr_to_load, NULL); in lv_screen_load_anim()
651 lv_obj_set_pos(d->scr_to_load, 0, 0); in lv_screen_load_anim()
652 lv_obj_remove_local_style_prop(d->scr_to_load, LV_STYLE_OPA, 0); in lv_screen_load_anim()
654 d->prev_scr = d->act_scr; in lv_screen_load_anim()
655 act_scr = d->scr_to_load; /*Active screen changed.*/ in lv_screen_load_anim()
657 scr_load_internal(d->scr_to_load); in lv_screen_load_anim()
[all …]
/lvgl-latest/src/draw/vg_lite/
Dlv_vg_lite_utils.c88 LV_LOG_USER("Feature-%d: %s\t - %s", in lv_vg_lite_dump_info()
100 LV_LOG_USER("Error code: %d(%s)", (int)error, lv_vg_lite_error_string(error)); in lv_vg_lite_error_dump_info()
111 LV_LOG_ERROR("vg_lite_get_mem_size error: %d(%s)", in lv_vg_lite_error_dump_info()
124 LV_LOG_ERROR("vg_lite_dump_command_buffer error: %d(%s)", in lv_vg_lite_error_dump_info()
322 LV_LOG_USER("length: %d", (int)len); in lv_vg_lite_path_dump_info()
326 LV_LOG_USER("format: %d", (int)path->format); in lv_vg_lite_path_dump_info()
327 LV_LOG_USER("quality: %d", (int)path->quality); in lv_vg_lite_path_dump_info()
328 LV_LOG_USER("path_changed: %d", (int)path->path_changed); in lv_vg_lite_path_dump_info()
329 LV_LOG_USER("pdata_internal: %d", (int)path->pdata_internal); in lv_vg_lite_path_dump_info()
330 LV_LOG_USER("type: %d", (int)path->path_type); in lv_vg_lite_path_dump_info()
[all …]
Dlv_vg_lite_grad.c138 LV_LOG_INFO("repeat/reflect spread(%d) is not supported", grad->spread); in lv_vg_lite_draw_grad()
147 LV_LOG_WARN("Failed to get gradient, style: %d", grad->style); in lv_vg_lite_draw_grad()
214 LV_LOG_ERROR("Unsupported gradient type: %d", grad_item->type); in lv_vg_lite_draw_grad()
258 LV_LOG_WARN("Unsupported gradient extend mode: %d", grad_dsc->extend); in lv_vg_lite_draw_grad_helper()
308 LV_LOG_WARN("Unsupported gradient direction: %d", grad_dsc->dir); in lv_vg_lite_draw_grad_helper()
389 LV_LOG_ERROR("vg_lite_init_grad error: %d", (int)err); in linear_grad_create()
399 … LV_LOG_WARN("Gradient stops limited: %d, max: %d", item->lv.stops_count, VLC_MAX_GRADIENT_STOPS); in linear_grad_create()
428 … LV_LOG_WARN("Gradient stops limited: %d, max: %d", item->lv.stops_count, VLC_MAX_GRADIENT_STOPS); in linear_ext_grad_create()
466 LV_LOG_ERROR("vg_lite_update_linear_grad error: %d", (int)err); in linear_ext_grad_create()
481 … LV_LOG_WARN("Gradient stops limited: %d, max: %d", item->lv.stops_count, VLC_MAX_GRADIENT_STOPS); in radial_grad_create()
[all …]
/lvgl-latest/src/draw/nxp/vglite/
Dlv_draw_vglite_img.c243 "Area: ([%d,%d], [%d,%d]) -> ([%d,%d], [%d,%d]) | " in _vglite_blit_split()
244 "Size: ([%dx%d] -> [%dx%d]) | " in _vglite_blit_split()
271 "Area: ([%d,%d], [%d,%d]) -> ([%d,%d], [%d,%d]) | " in _vglite_blit_split()
272 "Size: ([%dx%d] -> [%dx%d]) | " in _vglite_blit_split()
285 "Area: ([%d,%d], [%d,%d]) -> ([%d,%d], [%d,%d]) | " in _vglite_blit_split()
286 "Size: ([%dx%d] -> [%dx%d]) | " in _vglite_blit_split()
306 VGLITE_TRACE("X shift: src: %d, dst: %d", shift_src_x, shift_dest_x); in _vglite_blit_split()
360 VGLITE_TRACE("Tile [%d, %d] " in _vglite_blit_split()
361 "Area: ([%d,%d], [%d,%d]) -> ([%d,%d], [%d,%d]) | " in _vglite_blit_split()
362 "Size: ([%dx%d] -> [%dx%d]) | " in _vglite_blit_split()
/lvgl-latest/src/libs/tjpgd/
Dtjpgd.c20 / Jul 01, 2020 R0.01d Fixed wrong integer type usage.
166 uint8_t d; in create_qt_tbl() local
173 d = *data++; /* Get table property */ in create_qt_tbl()
174 if(d & 0xF0) return JDR_FMT1; /* Err: not 8-bit resolution */ in create_qt_tbl()
175 i = d & 3; /* Get table ID */ in create_qt_tbl()
203 uint8_t d, * pb, * pd; in create_huffman_tbl() local
210 d = *data++; /* Get table number and class */ in create_huffman_tbl()
211 if(d & 0xEE) return JDR_FMT1; /* Err: invalid class/number */ in create_huffman_tbl()
212 cls = d >> 4; in create_huffman_tbl()
213 num = d & 0x0F; /* class = dc(0)/ac(1), table number = 0/1 */ in create_huffman_tbl()
[all …]
/lvgl-latest/src/draw/sw/blend/helium/
Dlv_blend_helium.S235 ldst 0, ld, \src_bpp, SRC, S, D, 0, 0
238 ldst 0, ld, \src_bpp, SRC, S, D, 1, 0
245 ldst 0, ld, \src_bpp, SRC, D, S, 0, 0
247 ldst 0, ld, \src_bpp, SRC, D, S, 1, 0
286 load_index \dst_bpp, D, S, 0
381 premult D, D_A
409 premult D, D_A
435 premult D, S_A
472 ldst 1, st, \dst_bpp, DST, D, S, 0, 1, !, \aligned
476 ldst 0, ld, \src_bpp, SRC, D, S, 0, 1, !, \aligned
[all …]
/lvgl-latest/src/libs/thorvg/rapidjson/internal/
Ddtoa.h74 uint32_t d = 0; in DigitGen() local
76 case 9: d = p1 / 100000000; p1 %= 100000000; break; in DigitGen()
77 case 8: d = p1 / 10000000; p1 %= 10000000; break; in DigitGen()
78 case 7: d = p1 / 1000000; p1 %= 1000000; break; in DigitGen()
79 case 6: d = p1 / 100000; p1 %= 100000; break; in DigitGen()
80 case 5: d = p1 / 10000; p1 %= 10000; break; in DigitGen()
81 case 4: d = p1 / 1000; p1 %= 1000; break; in DigitGen()
82 case 3: d = p1 / 100; p1 %= 100; break; in DigitGen()
83 case 2: d = p1 / 10; p1 %= 10; break; in DigitGen()
84 case 1: d = p1; p1 = 0; break; in DigitGen()
[all …]
Dstrtod.h37 inline double StrtodNormalPrecision(double d, int p) { in StrtodNormalPrecision() argument
40 d = FastPath(d, -308); in StrtodNormalPrecision()
41 d = FastPath(d, p + 308); in StrtodNormalPrecision()
44 d = FastPath(d, p); in StrtodNormalPrecision()
45 return d; in StrtodNormalPrecision()
56 inline int CheckWithinHalfULP(double b, const BigInteger& d, int dExp) { in CheckWithinHalfULP() argument
98 BigInteger dS = d; in CheckWithinHalfULP()
113 inline bool StrtodFast(double d, int p, double* result) { in StrtodFast() argument
118 d *= internal::Pow10(p - 22); in StrtodFast()
122 if (p >= -22 && p <= 22 && d <= 9007199254740991.0) { // 2^53 - 1 in StrtodFast()
[all …]
/lvgl-latest/scripts/gen_json/
Dcreate_fake_lib_c.py95d"\n#define PRIi8 "i"\n#define PRIo8 "o"\n#define PRIu8 "u"\n#define PRIx8 "x"\n#define PRIX8 "X"\…
/lvgl-latest/tests/src/test_cases/widgets/
Dtest_btnmatrix.c43 static const char * exp_map[] = {"A", "B", "\n", "C", "D", ""}; in test_button_matrix_set_map_works()
60 static const char * btn_map[] = {"A", "B", "\n", "C", "D", ""}; in test_button_matrix_render_2()
67 static const char * btn_map2[] = {"A", "\n", "B", "\n", "C", "\n", "D", ""}; in test_button_matrix_render_2()
79 static const char * btn_map3[] = {"A", "B", "C", "\n", "D", "E", "F", ""}; in test_button_matrix_render_2()
95 static const char * btn_map4[] = {"A", "B", "C", "D", "E", "F", "G", "\n", in test_button_matrix_render_2()
96 "G", "F", "E", "D", "C", "B", "A", "" in test_button_matrix_render_2()
132 static const char * btn_map[] = {"A", "B", "\n", "C", "D", ""}; in test_button_matrix_set_ctrl_map_works()
158 static const char * btn_map[] = {"A", "B", "\n", "C", "D", ""}; in test_button_matrix_set_button_ctrl_works()
183 static const char * btn_map[] = {"A", "B", "\n", "C", "D", ""}; in test_button_matrix_clear_button_ctrl_works()
204 static const char * btn_map[] = {"A", "B", "\n", "C", "D", ""}; in test_button_matrix_set_selected_button_works()
[all …]
/lvgl-latest/src/libs/thorvg/rapidjson/
Dschema.h93 inline void PrintValidatorPointersData(const char* s, const char* d, unsigned depth) { in PrintValidatorPointersData() argument
94 printf(" Sch: %*s'%s'\n Doc: %*s'%s'\n", depth * 4, " ", s, depth * 4, " ", d); in PrintValidatorPointersData()
97 inline void PrintValidatorPointersData(const wchar_t* s, const wchar_t* d, unsigned depth) { in PrintValidatorPointersData() argument
98 wprintf(L" Sch: %*ls'%ls'\n Doc: %*ls'%ls'\n", depth * 4, L" ", s, depth * 4, L" ", d); in PrintValidatorPointersData()
125 inline void PrintMethodData(const char* method, double d) { in PrintMethodData() argument
126 printf("%s, Data: '%lf'\n", method, d); in PrintMethodData()
219 Specification(SchemaDraft d) : draft(d), oapi(kVersionNone) {} in Specification()
344 bool Int(int i) { Number n; n.u.i = i; n.d = static_cast<double>(i); return WriteNumber(n); } in Int()
345 …bool Uint(unsigned u) { Number n; n.u.u = u; n.d = static_cast<double>(u); return WriteNumber(n); } in Uint()
346 …bool Int64(int64_t i) { Number n; n.u.i = i; n.d = static_cast<double>(i); return WriteNumber(n); } in Int64()
[all …]
Dreader.h178 bool Double(double d);
626 IterativeParsingState d = Transit<parseFlags>(state_, t, n, is, handler); in IterativeParseNext() local
629 if (RAPIDJSON_UNLIKELY(IsIterativeParsingCompleteState(d))) { in IterativeParseNext()
631 if (d == IterativeParsingErrorState) { in IterativeParseNext()
637 RAPIDJSON_ASSERT(d == IterativeParsingFinishState); in IterativeParseNext()
638 state_ = d; in IterativeParseNext()
656 state_ = d; in IterativeParseNext()
1480 double d = 0.0; in ParseNumber() local
1527 d = std::numeric_limits<double>::quiet_NaN(); in ParseNumber()
1533d = (minus ? -std::numeric_limits<double>::infinity() : std::numeric_limits<double>::infinity()); in ParseNumber()
[all …]
/lvgl-latest/src/drivers/display/drm/
Dlv_linux_drm.c108 #define DIV_ROUND_UP(n, d) (((n) + (d) - 1) / (d)) argument
317 LV_LOG_ERROR("drmModeAtomicAddProperty (%s:%" PRIu64 ") failed: %d", name, value, ret); in drm_add_plane_property()
336 LV_LOG_ERROR("drmModeAtomicAddProperty (%s:%" PRIu64 ") failed: %d", name, value, ret); in drm_add_crtc_property()
355 LV_LOG_ERROR("drmModeAtomicAddProperty (%s:%" PRIu64 ") failed: %d", name, value, ret); in drm_add_conn_property()
395 LV_LOG_ERROR("drmModeAtomicCommit failed: %s (%d)", strerror(errno), errno); in drm_dmabuf_set_plane()
447 LV_LOG_TRACE("found plane %d", *plane_id); in find_plane()
489 LV_LOG_TRACE("drm: connector %d: connected", conn->connector_id); in drm_find_connector()
492 LV_LOG_TRACE("drm: connector %d: disconnected", conn->connector_id); in drm_find_connector()
495 LV_LOG_TRACE("drm: connector %d: unknownconnection", conn->connector_id); in drm_find_connector()
498 LV_LOG_TRACE("drm: connector %d: unknown", conn->connector_id); in drm_find_connector()
[all …]
/lvgl-latest/docs/details/integration/renderers/
Darm2d.rst4 Arm-2D GPU
7 Arm-2D is not a GPU but **an abstraction layer for 2D GPUs dedicated to
11 Arm-2D accelerates LVGL9 with two modes: **Synchronous Mode** and
16 - When Arm-2D backed 2D-GPUs are available, for example, **DMAC-350 based 2D
19 Arm-2D is an open-source project on GitHub. For more, please refer to:
20 https://github.com/ARM-software/Arm-2D.
30 enable Arm-2D synchronous acceleration for LVGL.
33 Arm-2D Asynchronous acceleration for LVGL.
44 As mentioned before, Arm-2D is an abstraction layer for 2D GPU; hence if
46 ACI) available for Arm-2D, it provides negligible performance boost for
[all …]
/lvgl-latest/src/widgets/calendar/
Dlv_calendar.c129 lv_calendar_date_t d; in lv_calendar_set_month_shown() local
130 d.year = calendar->showed_date.year; in lv_calendar_set_month_shown()
131 d.month = calendar->showed_date.month; in lv_calendar_set_month_shown()
132 d.day = calendar->showed_date.day; in lv_calendar_set_month_shown()
142 uint8_t act_mo_len = get_month_length(d.year, d.month); in lv_calendar_set_month_shown()
143 uint8_t day_first = get_day_of_week(d.year, d.month, 1); in lv_calendar_set_month_shown()
148 gregorian_time = d; in lv_calendar_set_month_shown()
159 lv_snprintf(calendar->nums[i], sizeof(calendar->nums[0]), "%d", c); in lv_calendar_set_month_shown()
162 uint8_t prev_mo_len = get_month_length(d.year, d.month - 1); in lv_calendar_set_month_shown()
165 gregorian_time = gregorian_get_last_month_time(&d); in lv_calendar_set_month_shown()
[all …]
/lvgl-latest/src/drivers/wayland/
Dlv_wayland.c295 LV_LOG_TRACE("frame: %d done, new frame: %d", in graphic_obj_frame_done()
1107 int d; in draw_window() local
1108 for(d = 0; d < NUM_DECORATIONS; d++) { in draw_window()
1109 …window->decoration[d] = create_graphic_obj(&application, window, (FIRST_DECORATION + d), window->b… in draw_window()
1110 if(!window->decoration[d]) { in draw_window()
1111 LV_LOG_ERROR("Failed to create decoration %d", d); in draw_window()
1201 LV_LOG_TRACE("w:%d h:%d", width, height); in xdg_toplevel_handle_configure()
1202 LV_LOG_TRACE("current body w:%d h:%d", window->body->width, window->body->height); in xdg_toplevel_handle_configure()
1203 LV_LOG_TRACE("window w:%d h:%d", window->width, window->height); in xdg_toplevel_handle_configure()
1207 LV_LOG_TRACE("will not resize to w:%d h:%d", width, height); in xdg_toplevel_handle_configure()
[all …]
/lvgl-latest/src/others/gridnav/
Dlv_gridnav.c150 int32_t d = lv_obj_get_width(dsc->focused_obj) / 4; in gridnav_event_cb() local
151 if(d <= 0) d = 1; in gridnav_event_cb()
152 lv_obj_scroll_by_bounded(dsc->focused_obj, -d, 0, LV_ANIM_ON); in gridnav_event_cb()
170 int32_t d = lv_obj_get_width(dsc->focused_obj) / 4; in gridnav_event_cb() local
171 if(d <= 0) d = 1; in gridnav_event_cb()
172 lv_obj_scroll_by_bounded(dsc->focused_obj, d, 0, LV_ANIM_ON); in gridnav_event_cb()
190 int32_t d = lv_obj_get_height(dsc->focused_obj) / 4; in gridnav_event_cb() local
191 if(d <= 0) d = 1; in gridnav_event_cb()
192 lv_obj_scroll_by_bounded(dsc->focused_obj, 0, -d, LV_ANIM_ON); in gridnav_event_cb()
209 int32_t d = lv_obj_get_height(dsc->focused_obj) / 4; in gridnav_event_cb() local
[all …]
/lvgl-latest/src/misc/
Dlv_matrix.c140 float d; in lv_matrix_inverse() local
154 d = (m->m[0][0] * det00) + (m->m[0][1] * det01) + (m->m[0][2] * det02); in lv_matrix_inverse()
157 if(d == 0.0f) in lv_matrix_inverse()
161 d = 1.0f / d; in lv_matrix_inverse()
166 matrix->m[0][0] = d * det00; in lv_matrix_inverse()
167 matrix->m[0][1] = d * ((m->m[2][1] * m->m[0][2]) - (m->m[0][1] * m->m[2][2])); in lv_matrix_inverse()
168 matrix->m[0][2] = d * ((m->m[0][1] * m->m[1][2]) - (m->m[1][1] * m->m[0][2])); in lv_matrix_inverse()
169 matrix->m[1][0] = d * det01; in lv_matrix_inverse()
170 matrix->m[1][1] = d * ((m->m[0][0] * m->m[2][2]) - (m->m[2][0] * m->m[0][2])); in lv_matrix_inverse()
171 matrix->m[1][2] = d * ((m->m[1][0] * m->m[0][2]) - (m->m[0][0] * m->m[1][2])); in lv_matrix_inverse()
[all …]
Dlv_math.c132 int64_t d; /*slope value at specified t*/ in lv_cubic_bezier() local
134 int32_t d; in lv_cubic_bezier() local
164 /* get slop at t, d = 3 * ax * t^2 + 2 * bx + t + cx */ in lv_cubic_bezier()
165 d = ax; /* use 64bit operation if needed. */ in lv_cubic_bezier()
166 d = (3 * d * t) >> CUBIC_PRECISION_BITS; in lv_cubic_bezier()
167 d = ((d + 2 * bx) * t) >> CUBIC_PRECISION_BITS; in lv_cubic_bezier()
168 d += cx; in lv_cubic_bezier()
170 if(LV_ABS(d) <= 1) break; in lv_cubic_bezier()
172 d = ((int64_t)xs * (1L << CUBIC_PRECISION_BITS)) / d; in lv_cubic_bezier()
173 if(d == 0) break; /*Reached precision limits*/ in lv_cubic_bezier()
[all …]
/lvgl-latest/demos/ebike/translations/
Dlv_i18n.c83 {"March %d - March %d", "مارس %d - مارس %d"},
87 {"March %d", "مارس %d"},
128 {"March %d - March %d", "三月 %d - 三月 %d"},
132 {"March %d", "三月 %d"},
/lvgl-latest/src/libs/fsdrv/
Dlv_fs_posix.c121 LV_LOG_WARN("Could not open file: %s, flags: 0x%x, errno: %d", buf, flags, errno); in fs_open()
142 LV_LOG_WARN("Could not close file: %d, errno: %d", fd, errno); in fs_close()
166 LV_LOG_WARN("Could not read file: %d, errno: %d", fd, errno); in fs_read()
190 LV_LOG_WARN("Could not write file: %d, errno: %d", fd, errno); in fs_write()
227 LV_LOG_WARN("Could not seek file: %d, errno: %d", fd, errno); in fs_seek()
249 LV_LOG_WARN("Could not get position of file: %d, errno: %d", fd, errno); in fs_tell()
273 LV_LOG_WARN("Could not open directory: %s, errno: %d", buf, errno); in fs_dir_open()
321 LV_LOG_WARN("Could not close directory: errno: %d", errno); in fs_dir_close()
/lvgl-latest/src/libs/ffmpeg/
Dlv_ffmpeg.c201 LV_LOG_INFO("frame refresh period = %d ms, rate = %d fps", in lv_ffmpeg_player_set_src()
249 LV_LOG_ERROR("Error cmd: %d", cmd); in lv_ffmpeg_player_set_cmd()
398 "old: width = %d, height = %d, format = %s\n" in ffmpeg_output_video_frame()
399 "new: width = %d, height = %d, format = %s\n", in ffmpeg_output_video_frame()
408 LV_LOG_TRACE("video_frame coded_n:%d", frame->coded_picture_number); in ffmpeg_output_video_frame()
430 LV_LOG_WARN("The width(%d) and height(%d) the image " in ffmpeg_output_video_frame()
449 LV_LOG_WARN("ffmpeg linesize = %d, but lvgl image require %d", in ffmpeg_output_video_frame()
506 LV_LOG_WARN("ffmpeg_decode_packet ended %d", ret); in ffmpeg_decode_packet()
665 LV_LOG_WARN("video frame is empty %d", ret); in ffmpeg_update_next_frame()
818 LV_LOG_INFO("alloc video_src_bufsize = %d", ret); in ffmpeg_image_allocate()
[all …]
/lvgl-latest/src/others/font_manager/
Dlv_font_manager.c271 LV_LOG_WARN("NO record found for font: %p(%d)," in lv_font_manager_delete_font_single()
431 LV_LOG_WARN("font: %p(%d) -> ref: %s(%d)", in lv_font_manager_check_resource()
447 LV_LOG_WARN("font: %s(%d), ref_cnt = %d", in lv_font_manager_check_resource()
468 LV_LOG_INFO("font: %p(%d) matched", (void *)font, (int)font->line_height); in lv_font_manager_search_rec_node()
485 LV_LOG_INFO("font: %s(%d) matched", ft_info->name, ft_info->size); in lv_font_manager_search_refer_node()
519 LV_LOG_ERROR("Freetype font init failed, name: %s, render_mode: %d, size: %d, style: %d", in lv_font_manager_create_font_warpper()
544 LV_LOG_INFO("refer_node existed, ref_cnt++ = %d", refer_node->ref_cnt); in lv_font_manager_get_freetype_font()
581 LV_LOG_WARN("NO record found for font: %s(%d)," in lv_font_manager_reset_freetype_font()
591 LV_LOG_INFO("refer_node existed, ref_cnt-- = %d", refer_node->ref_cnt); in lv_font_manager_reset_freetype_font()

12345678910>>...15