Home
last modified time | relevance | path

Searched refs:bytes (Results 1 – 25 of 26) sorted by relevance

12

/lvgl-3.7.0/src/misc/
Dlv_tlsf.h57 lv_tlsf_t lv_tlsf_create_with_pool(void * mem, size_t bytes);
62 lv_pool_t lv_tlsf_add_pool(lv_tlsf_t tlsf, void * mem, size_t bytes);
66 void * lv_tlsf_malloc(lv_tlsf_t tlsf, size_t bytes);
67 void * lv_tlsf_memalign(lv_tlsf_t tlsf, size_t align, size_t bytes);
Dlv_txt.c530 uint8_t bytes[4]; in lv_txt_unicode_to_utf8() local
533 bytes[0] = ((letter_uni >> 6) & 0x1F) | 0xC0; in lv_txt_unicode_to_utf8()
534 bytes[1] = ((letter_uni >> 0) & 0x3F) | 0x80; in lv_txt_unicode_to_utf8()
535 bytes[2] = 0; in lv_txt_unicode_to_utf8()
536 bytes[3] = 0; in lv_txt_unicode_to_utf8()
539 bytes[0] = ((letter_uni >> 12) & 0x0F) | 0xE0; in lv_txt_unicode_to_utf8()
540 bytes[1] = ((letter_uni >> 6) & 0x3F) | 0x80; in lv_txt_unicode_to_utf8()
541 bytes[2] = ((letter_uni >> 0) & 0x3F) | 0x80; in lv_txt_unicode_to_utf8()
542 bytes[3] = 0; in lv_txt_unicode_to_utf8()
545 bytes[0] = ((letter_uni >> 18) & 0x07) | 0xF0; in lv_txt_unicode_to_utf8()
[all …]
Dlv_tlsf.c967 lv_pool_t lv_tlsf_add_pool(lv_tlsf_t tlsf, void * mem, size_t bytes) in lv_tlsf_add_pool() argument
973 const size_t pool_bytes = align_down(bytes - pool_overhead, ALIGN_SIZE); in lv_tlsf_add_pool()
1079 lv_tlsf_t lv_tlsf_create_with_pool(void * mem, size_t bytes) in lv_tlsf_create_with_pool() argument
1082 lv_tlsf_add_pool(tlsf, (char *)mem + lv_tlsf_size(), bytes - lv_tlsf_size()); in lv_tlsf_create_with_pool()
/lvgl-3.7.0/examples/libs/png/
Dimg_wink_png.py2 img_wink_png_map = bytes([
/lvgl-3.7.0/examples/libs/rlottie/
Dlv_example_rlottie_approve.py13 lv_example_rlottie_approve = bytes([
/lvgl-3.7.0/src/extra/widgets/span/
Dlv_span.c27 uint16_t bytes; member
470 snippet.bytes = next_ofs; in lv_spangroup_get_expand_height()
855 snippet.bytes = next_ofs; in lv_draw_span()
881 if(last_snippet->txt[last_snippet->bytes] == '\0') { in lv_draw_span()
889 if(last_snippet->txt[last_snippet->bytes] != '\0') { in lv_draw_span()
890 last_snippet->bytes = strlen(last_snippet->txt); in lv_draw_span()
891 … last_snippet->txt_w = lv_txt_get_width(last_snippet->txt, last_snippet->bytes, last_snippet->font, in lv_draw_span()
939 uint32_t txt_bytes = pinfo->bytes; in lv_draw_span()
/lvgl-3.7.0/docs/libs/
Dpng.md10 …ge is decoded so during decoding RAM equals to `image width x image height x 4` bytes are required.
Dtiny_ttf.md28 available). The cache size is indicated in bytes.
Dfreetype.md18 1. `LV_FREETYPE_CACHE_SIZE`:maximum memory(bytes) used to cache font bitmap, outline, character map…
Dsjpg.md14 - By default the sjpg image cache will be image width * 2 * 16 bytes (can be modified)
/lvgl-3.7.0/examples/widgets/chart/
Dlv_example_chart_3.py7 dsc.text = bytes(month[dsc.value],"ascii")
/lvgl-3.7.0/docs/widgets/core/
Dbtnmatrix.md5 …e only eight extra bytes of memory instead of the ~100-150 bytes a normal [Button](/widgets/core/b…
Dlabel.md57 …e very long (e.g. > 40k characters) labels by saving some extra data (~12 bytes) to speed up drawi…
/lvgl-3.7.0/
DKconfig41 … bool "Swap the 2 bytes of RGB565 color. Useful if the display has an 8-bit interface (e.g. SPI)."
154 radius * 4 bytes are used per circle (the most often used
183 This adds (sizeof(lv_color_t) + 1) bytes per additional stop
190 LV_GRAD_CACHE_DEF_SIZE sets the size of this cache in bytes.
779 … bool "Store extra some info in labels (12 bytes) to speed up drawing of very long texts."
925 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()"
[all …]
/lvgl-3.7.0/src/extra/libs/gif/
Dgifdec.c35 uint8_t bytes[2]; in read_num() local
37 f_gif_read(gif, bytes, 2); in read_num()
38 return bytes[0] + (((uint16_t) bytes[1]) << 8); in read_num()
/lvgl-3.7.0/docs/overview/
Dfile-system.md20 drv.cache_size = my_cache_size; /*Cache size for reading in bytes. 0 to not cache.*/
62 …n_cb`, `buf` is the data to write, `btw` is the Bytes To Write, `bw` is the actually written bytes.
Dimage.md19 - **data_size** length of `data` in bytes
39 The bytes of `LV_IMG_CF_TRUE_COLOR` images are stored in the following order.
85 - RGB565 Swap for 16-bit color depth (two bytes are swapped)
Dcolor.md7 You may set `LV_COLOR_16_SWAP` in `lv_conf.h` to swap bytes of *RGB565* colors. You may need this w…
Dstyle.md290 …- `LV_LAYER_SIMPLE_BUF_SIZE`: [bytes] the optimal target buffer size. LVGL will try to allocate th…
291 …- `LV_LAYER_SIMPLE_FALLBACK_BUF_SIZE`: [bytes] used if `LV_LAYER_SIMPLE_BUF_SIZE` couldn't be all…
Dfont.md175 …d.ac.uk/~richard/utf-8.cgi?input=f287&mode=hex). For `0xf287` the *Hex UTF-8 bytes* are `EF 8A 87`.
/lvgl-3.7.0/docs/get-started/platforms/
Dnxp.md141 32 bytes for RGB565 and 64 bytes for ARGB8888.
142 …- For pixel engine (PE) destination, the alignment should be 64 bytes for all tiled (4x4) buffer l…
/lvgl-3.7.0/tests/unity/
Dunity.c1515 UNITY_UINT32 bytes; in UnityAssertEqualMemory() local
1536 bytes = length; in UnityAssertEqualMemory()
1537 while (bytes--) in UnityAssertEqualMemory()
1549 UnityPrintNumberUnsigned(length - bytes - 1); in UnityAssertEqualMemory()
/lvgl-3.7.0/docs/intro/
Dindex.md192 It swaps the upper and lower bytes of the pixels.
/lvgl-3.7.0/demos/widgets/
Dlv_demo_widgets.py22 buf1_1 = bytes(480 * 10)
/lvgl-3.7.0/src/extra/libs/tiny_ttf/
Dstb_truetype_htcw.h1698 stbtt_int32 bytes = ttUSHORT(data, index_map + 2); local
1699 if(unicode_codepoint < bytes - 6)

12