Home
last modified time | relevance | path

Searched refs:lv_fs_read (Results 1 – 14 of 14) sorted by relevance

/lvgl-3.7.0/src/font/
Dlv_font_loader.c203 *res = lv_fs_read(it->fp, &(it->byte_value), 1, NULL); in read_bits()
232 if(lv_fs_read(fp, &length, 4, NULL) != LV_FS_RES_OK in read_label()
233 || lv_fs_read(fp, buf, 4, NULL) != LV_FS_RES_OK in read_label()
245 …if(lv_fs_read(fp, cmap_table, font_dsc->cmap_num * sizeof(cmap_table_bin_t), NULL) != LV_FS_RES_OK… in load_cmaps_tables()
269 if(lv_fs_read(fp, glyph_id_ofs_list, ids_size, NULL) != LV_FS_RES_OK) { in load_cmaps_tables()
286 if(lv_fs_read(fp, unicode_list, list_size, NULL) != LV_FS_RES_OK) { in load_cmaps_tables()
295 … if(lv_fs_read(fp, buf, sizeof(uint16_t) * cmap->list_length, NULL) != LV_FS_RES_OK) { in load_cmaps_tables()
317 if(lv_fs_read(fp, &cmaps_subtables_count, sizeof(uint32_t), NULL) != LV_FS_RES_OK) { in load_cmaps()
445 if(lv_fs_read(fp, &glyph_bmp[cur_bmp_size], bmp_size, NULL) != LV_FS_RES_OK) { in load_glyph()
499 if(lv_fs_read(fp, &font_header, sizeof(font_header_bin_t), NULL) != LV_FS_RES_OK) { in lvgl_load_font()
[all …]
/lvgl-3.7.0/tests/src/test_cases/
Dtest_fs.c38 res = lv_fs_read(&fa, buf, sizeof(buf), &br); in test_read()
42 res = lv_fs_read(&fb, buf, sizeof(buf), &br); in test_read()
/lvgl-3.7.0/src/extra/libs/bmp/
Dlv_bmp.c88 lv_fs_read(&f, headers, 54, NULL); in decoder_info()
141 lv_fs_read(&b.f, header, 54, NULL); in decoder_open()
201 lv_fs_read(&b->f, buf, len * (b->bpp / 8), NULL); in decoder_read_line()
/lvgl-3.7.0/src/draw/
Dlv_img_decoder.c294 res = lv_fs_read(&f, header, sizeof(lv_img_header_t), &rn); in lv_img_decoder_built_in_info()
380 lv_fs_res_t res = lv_fs_read(&user_data->f, fs_buf, len, NULL); in lv_img_decoder_built_in_open()
437 lv_fs_read(&user_data->f, &cur_color, sizeof(lv_color32_t), NULL); in lv_img_decoder_built_in_open()
553 res = lv_fs_read(&user_data->f, buf, btr, &br); in lv_img_decoder_built_in_line_true_color()
633 lv_fs_read(&user_data->f, fs_buf, w, NULL); in lv_img_decoder_built_in_line_alpha()
700 lv_fs_read(&user_data->f, fs_buf, w, NULL); in lv_img_decoder_built_in_line_indexed()
/lvgl-3.7.0/src/misc/
Dlv_fs.h172 lv_fs_res_t lv_fs_read(lv_fs_file_t * file_p, void * buf, uint32_t btr, uint32_t * br);
Dlv_fs.c205 lv_fs_res_t lv_fs_read(lv_fs_file_t * file_p, void * buf, uint32_t btr, uint32_t * br) in lv_fs_read() function
/lvgl-3.7.0/src/extra/libs/sjpg/
Dlv_sjpg.c223 res = lv_fs_read(&file, buff, 8, &rn); in decoder_info()
231 res = lv_fs_read(&file, buff, 4, &rn); in decoder_info()
324 lv_fs_read(lv_file_p, buff, (uint32_t)ndata, &rn); in input_func()
516 res = lv_fs_read(&lv_file, buff, 22, &rn); in decoder_open()
564 res = lv_fs_read(&lv_file, buff, 2, &rn); in decoder_open()
/lvgl-3.7.0/docs/libs/
Dfsdrv.md45 Cached reading is also supported if `LV_FS_..._CACHE_SIZE` is set to not `0` value. `lv_fs_read` ca…
/lvgl-3.7.0/src/extra/libs/png/
Dlv_png.c87 lv_fs_read(&f, &size, 8, &rn); in decoder_info()
Dlodepng.c365 res = lv_fs_read(&f, out, size, &br); in lodepng_buffer_file()
/lvgl-3.7.0/src/extra/libs/tiny_ttf/
Dlv_tiny_ttf.c32 lv_fs_read(stream->file, data, to_read, &br); in ttf_cb_stream_read()
/lvgl-3.7.0/docs/overview/
Dfile-system.md78 res = lv_fs_read(&f, buf, 8, &read_num);
/lvgl-3.7.0/
DKconfig925 int ">0 to cache this number of bytes in lv_fs_read()"
939 int ">0 to cache this number of bytes in lv_fs_read()"
953 int ">0 to cache this number of bytes in lv_fs_read()"
964 int ">0 to cache this number of bytes in lv_fs_read()"
975 int ">0 to cache this number of bytes in lv_fs_read()"
/lvgl-3.7.0/src/extra/libs/gif/
Dgifdec.c648 lv_fs_read(&gif->fd, buf, len, NULL); in f_gif_read()