Searched refs:values (Results 1 – 7 of 7) sorted by relevance
/lvgl-2.7.6/src/lv_widgets/ |
D | lv_gauge.c | 84 ext->values = NULL; in lv_gauge_create() 121 ext->values[i] = copy_ext->values[i]; in lv_gauge_create() 152 if(ext->values != NULL) { in lv_gauge_set_needle_count() 153 lv_mem_free(ext->values); in lv_gauge_set_needle_count() 154 ext->values = NULL; in lv_gauge_set_needle_count() 157 ext->values = lv_mem_realloc(ext->values, needle_cnt * sizeof(ext->values[0])); in lv_gauge_set_needle_count() 158 LV_ASSERT_MEM(ext->values); in lv_gauge_set_needle_count() 159 if(ext->values == NULL) return; in lv_gauge_set_needle_count() 164 ext->values[n] = min; in lv_gauge_set_needle_count() 187 if(ext->values[needle_id] == value) return; in lv_gauge_set_value() [all …]
|
D | lv_gauge.h | 44 int32_t * values; /*Array of the set values (for needles) */ member
|
/lvgl-2.7.6/src/lv_font/ |
D | lv_font_loader.c | 139 if(kern_dsc->values) in lv_font_free() 140 lv_mem_free((void *) kern_dsc->values); in lv_font_free() 633 int8_t * values = lv_mem_alloc(glyph_entries); in load_kern() local 638 kern_pair->values = values; in load_kern() 644 if(lv_fs_read(fp, values, glyph_entries, NULL) != LV_FS_RES_OK) { in load_kern()
|
D | lv_font_fmt_txt.h | 126 const int8_t * values; member
|
D | lv_font_fmt_txt.c | 286 value = kdsc->values[ofs]; in get_kern_value() 300 value = kdsc->values[ofs]; in get_kern_value()
|
/lvgl-2.7.6/tests/lv_test_core/ |
D | lv_test_font_loader.c | 177 (uint8_t * ) kern1->values, in compare_fonts() 178 (uint8_t * ) kern2->values, in compare_fonts()
|
/lvgl-2.7.6/scripts/ |
D | Doxyfile | 84 # Possible values are: Afrikaans, Arabic, Armenian, Brazilian, Catalan, Chinese, 117 # following values are used ($name is automatically replaced with the name of 1189 # gradually make the output lighter, whereas values above 100 make the output 1444 # The ENUM_VALUES_PER_LINE tag can be used to set the number of enum values that 1447 # Note that a value of 0 will completely suppress the enum values from appearing 1502 # Possible values are: HTML-CSS (which is slower, but has the best 1668 # Possible values are: a4 (210 x 297 mm), letter (8.5 x 11 inches), legal (8.5 x 1697 # string, for the replacement values of the other commands the user is referred 2332 # Possible values are: png, png:cairo, png:cairo:cairo, png:cairo:gd, png:gd,
|