Home
last modified time | relevance | path

Searched refs:required (Results 1 – 25 of 53) sorted by relevance

123

/lvgl-latest/src/misc/
Dlv_lru.c145 int required = 0; in lv_lru_set() local
156 required = (int)(value_length - item->value_length); in lv_lru_set()
170 required = (int) value_length; in lv_lru_set()
180 if(required > 0 && (size_t) required > cache->free_memory) { in lv_lru_set()
181 while(cache->free_memory < (size_t) required) in lv_lru_set()
184 cache->free_memory -= required; in lv_lru_set()
Dlv_iter.c147 const uint32_t required = iter->peek_offset + 1 - peek_count; in lv_iter_peek() local
148 const uint32_t filled = lv_circle_buf_fill(c_buf, required, peek_fill_cb, iter); in lv_iter_peek()
149 if(filled != required) return LV_RESULT_INVALID; in lv_iter_peek()
Dlv_circle_buf.c294 …const uint32_t required = lv_array_capacity(&circle_buf->array) - lv_array_size(&circle_buf->array… in circle_buf_prepare_empty() local
295 for(uint32_t i = 0; i < required; i++) lv_array_push_back(&circle_buf->array, NULL); in circle_buf_prepare_empty()
/lvgl-latest/tests/
DCMakeLists.txt329 # libjpeg is required for the jpeg test case
343 # Add auto generated source required for XDG shell
351 # libpng is required for the png test case
355 # libfreetype is required for the font test case
364 # libinput is required for the libinput device driver test case
370 # OpenGL ES is required for its driver
404 # libdrm is required for the DRM display driver test case
/lvgl-latest/src/drivers/windows/
Dlv_windows_context.h23 #error [lv_windows] LV_OS_WINDOWS is required. Enable it in lv_conf.h (LV_USE_OS LV_OS_WINDOWS)
/lvgl-latest/scripts/gdb/lvglgdb/
Ddebugger.py32 required=True,
/lvgl-latest/docs/intro/add-lvgl-to-your-project/
Dgetting_lvgl.rst24 examples and demos directories, no extra action is required.
/lvgl-latest/docs/details/main-components/
Dfs.rst122 drv.user_data = my_user_data; /* Any custom data if required */
288 To use files in Image Widgets the following callbacks are required:
334 all required bytes available?"}}
335 C -->|yes| D["copy all required bytes from
339 required bytes
353 --> O["copy the required bytes
357 --> L{{"is the number of required
366 --> P["copy the required bytes
Ddraw.rst40 carries all the information required to:
43 - give the Draw Unit all the details required to accomplish the drawing task.
67 generate the output required by a :ref:`Draw Task <draw tasks>`. This can be a CPU
Dfont.rst15 In LVGL fonts are collections of bitmaps and other information required
358 /* Free the font if not required anymore */
389 /* Free the font if not required anymore */
501 …* The next letter (`unicode_letter_next`) might be used to calculate the width required by this gl…
510 dsc_out->adv_w = 12; /* Horizontal space required by the glyph in [px] */
/lvgl-latest/docs/details/integration/chip/
Dnxp.rst24 additional integration work is required.
53 PXP is enabled as a draw unit or to rotate the screen, no user code is required:
101 available for other operations while the PXP is running. A RTOS is required to
152 be required.
155 No stride alignment is required: set :c:macro:`LV_DRAW_BUF_STRIDE_ALIGN` to
203 RTOS is required to block the LVGL drawing thread and switch to another
253 the VGLite is enabled, no user code is required:
326 is available for other operations while the GPU is running. RTOS is required to
/lvgl-latest/docs/details/libs/
Dtjpgd.rst19 - Only the required portions of the JPEG images are decoded,
Dgif.rst42 required:
Dlodepng.rst20 The whole PNG image is decoded, so ``width x height x 4`` bytes free RAM space is required.
Dbmp.rst38 Use GIMP to save the image in the required format. Both RGB888 and
/lvgl-latest/.github/
Dpull_request_template.md13 …h-pull-requests/reviewing-changes-in-pull-requests/approving-a-pull-request-with-required-reviews).
/lvgl-latest/docs/details/integration/building/
Dcmake.rst57 - lvgl (the actual library, required)
/lvgl-latest/env_support/cmsis-pack/
Dlv_cmsis_pack.txt10 * Unless required by applicable law or agreed to in writing, software *
/lvgl-latest/docs/details/integration/driver/
Dwayland.rst44 - Enable window decorations, only required on GNOME because out of all the available wayland compos…
142 To generate the required files run the following commands:
/lvgl-latest/docs/details/widgets/
Dtabview.rst117 Programmatically add these buttons to a group if required.
Dtable.rst51 New rows and columns are automatically added as required.
/lvgl-latest/docs/details/integration/driver/display/
Drenesas_glcdc.rst75 … rotation is supported in partial mode. It uses the common API, no extra configuration is required:
/lvgl-latest/src/libs/thorvg/rapidjson/
Dschema.h651 const ValueType* required = GetMember(value, GetRequiredString()); in allocator_() local
661 if (required && required->IsArray()) in allocator_()
662 for (ConstValueIterator itr = required->Begin(); itr != required->End(); ++itr) in allocator_()
713 if (required && required->IsArray()) in allocator_()
714 for (ConstValueIterator itr = required->Begin(); itr != required->End(); ++itr) in allocator_()
718 properties_[index].required = true; in allocator_()
1166 if (properties_[index].required && !context.propertyExist[index]) in EndObject()
1674 … : schema(), dependenciesSchema(), dependenciesValidatorIndex(), dependencies(), required(false) {} in Property()
1681 bool required; member
/lvgl-latest/docs/details/other-components/
Dobserver.rst188 There are cases when a subject changes and the value of some other subjects are also required by th…
190 To display the measured value on a label 3 things are required:
Dxml.rst16 Note that, the UI editor is not required to utilize LVGL's XML loading capabilities.
132 This is required to make LVGL recognize the components by name.

123