Home
last modified time | relevance | path

Searched refs:value2 (Results 1 – 4 of 4) sorted by relevance

/lvgl-latest/src/others/xml/parsers/
Dlv_xml_table_parser.c64 int32_t value2 = lv_xml_atoi_split(&value, ' '); in lv_xml_table_apply() local
65 lv_table_set_selected_cell(item, value1, value2); in lv_xml_table_apply()
Dlv_xml_chart_parser.c67 int32_t value2 = lv_xml_atoi_split(&value, ' '); in lv_xml_chart_apply() local
68 lv_chart_set_div_line_count(item, value1, value2); in lv_xml_chart_apply()
/lvgl-latest/src/libs/thorvg/
DtvgCompressor.cpp461 auto value2 = B64_INDEX[(size_t)encoded[1]]; in b64Decode() local
462 output[idx++] = (value1 << 2) + ((value2 & 0x30) >> 4); in b64Decode()
466 output[idx++] = ((value2 & 0x0f) << 4) + ((value3 & 0x3c) >> 2); in b64Decode()
/lvgl-latest/demos/high_res/
Dlv_demo_high_res_app_thermostat.c392 lv_obj_t * value2 = create_widget2_value(c, values_box, "Home", "7am - 9pm", 23); in create_widget2() local
393 …t_cb(slider_right, widget2_slider_changed_cb, LV_EVENT_VALUE_CHANGED, lv_obj_get_child(value2, 1)); in create_widget2()