Home
last modified time | relevance | path

Searched refs:block (Results 1 – 9 of 9) sorted by relevance

/lvgl-3.6.0/src/misc/
Dlv_tlsf.c382 static size_t block_size(const block_header_t * block) in block_size() argument
384 return block->size & ~(block_header_free_bit | block_header_prev_free_bit); in block_size()
387 static void block_set_size(block_header_t * block, size_t size) in block_set_size() argument
389 const size_t oldsize = block->size; in block_set_size()
390 block->size = size | (oldsize & (block_header_free_bit | block_header_prev_free_bit)); in block_set_size()
393 static int block_is_last(const block_header_t * block) in block_is_last() argument
395 return block_size(block) == 0; in block_is_last()
398 static int block_is_free(const block_header_t * block) in block_is_free() argument
400 return tlsf_cast(int, block->size & block_header_free_bit); in block_is_free()
403 static void block_set_free(block_header_t * block) in block_set_free() argument
[all …]
/lvgl-3.6.0/docs/_static/css/
Dcustom.css26 display: block;
35 display: inline-block;
44 display: inline-block;
76 display: block;
99 display: inline-block;
124 display: inline-block;
Dfontawesome.min.css5block;font-style:normal;font-variant:normal;text-rendering:auto;line-height:1}.fa-lg{font-size:1.3…
/lvgl-3.6.0/scripts/
Dcode-format.cfg6 --indent-preproc-block
DDoxyfile201 # multi-line C++ special comment block (i.e. a block of //! or /// comments) as
203 # to treat a multi-line C++ comment block as a detailed description. Set this
508 # blocks will be appended to the function's detailed documentation block.
1118 # of the possible markers and block names see the documentation.
2393 # the !include statement in a plantuml block.
/lvgl-3.6.0/docs/get-started/platforms/
Dnxp.md18 PXP is running. RTOS is required to block the LVGL drawing thread and switch to another task or sus…
52 When rotating a source image and the output is not divisible by the block size, the incorrect pixel…
98 …- `pxp_run()`: Start PXP job. Use OS-specific mechanism to block drawing thread. PXP must finish d…
107 VGLite is running. An RTOS is required to block the LVGL drawing thread and switch to another task …
Drenesas.md11 …p the CPU for other operations while dave-2d runs. An RTOS is required to block the LVGL drawing t…
13 …p the CPU for other operations while dave-2d runs. An RTOS is required to block the LVGL drawing t…
/lvgl-3.6.0/docs/overview/
Dtimer.md61 …e an object because something else is still using it, or you don't want to block the execution now.
/lvgl-3.6.0/docs/widgets/core/
Dtextarea.md16 A block cursor can be created by adding a background color and background opacity to `LV_PART_CURSO…