/lvgl-latest/src/libs/barcode/ |
D | code128.c | 303 struct code128_step * step = &base[ix]; in code128_do_a_step() local 310 step->code = code128a_ascii_to_code(value); in code128_do_a_step() 311 if(step->code < 0) in code128_do_a_step() 314 step->prev_ix = prev_ix; in code128_do_a_step() 315 step->next_input = previous_step->next_input + 1; in code128_do_a_step() 316 step->mode = CODE128_MODE_A; in code128_do_a_step() 317 step->len = previous_step->len + CODE128_CHAR_LEN; in code128_do_a_step() 318 if(step->mode != previous_step->mode) in code128_do_a_step() 319 step->len += CODE128_CHAR_LEN; // Need to switch modes in code128_do_a_step() 327 struct code128_step * step = &base[ix]; in code128_do_b_step() local [all …]
|
/lvgl-latest/libs/nema_gfx/include/ |
D | nema_transitions.h | 65 uint32_t blending_mode, float step, int width, int height); 79 uint32_t blending_mode, float step, int width); 92 uint32_t blending_mode, float step, int height); 106 uint32_t blending_mode, float step, int width, int height); 120 uint32_t blending_mode, float step, int width, int height); 134 uint32_t blending_mode, float step, int width, int height); 148 uint32_t blending_mode, float step, int width, int height); 161 void nema_transition_stack_hor(nema_tex_t left, nema_tex_t right, float step, 175 void nema_transition_stack_ver(nema_tex_t up, nema_tex_t down, float step, 190 uint32_t blending_mode, float step, int width, int height); [all …]
|
/lvgl-latest/src/widgets/spinbox/ |
D | lv_spinbox.c | 110 void lv_spinbox_set_step(lv_obj_t * obj, uint32_t step) in lv_spinbox_set_step() argument 115 spinbox->step = step; in lv_spinbox_set_step() 141 if(pos <= 0) spinbox->step = 1; in lv_spinbox_set_cursor_pos() 142 else if(new_step <= step_limit) spinbox->step = new_step; in lv_spinbox_set_cursor_pos() 172 return spinbox->step; in lv_spinbox_get_step() 184 const int32_t new_step = spinbox->step / 10; in lv_spinbox_step_next() 185 spinbox->step = (new_step > 0) ? new_step : 1; in lv_spinbox_step_next() 196 const int32_t new_step = spinbox->step * 10; in lv_spinbox_step_prev() 197 if(new_step <= step_limit) spinbox->step = new_step; in lv_spinbox_step_prev() 218 if((spinbox->value < 0) && (spinbox->value + spinbox->step) > 0) { in lv_spinbox_increment() [all …]
|
D | lv_spinbox_private.h | 37 int32_t step; member
|
D | lv_spinbox.h | 79 void lv_spinbox_set_step(lv_obj_t * obj, uint32_t step);
|
/lvgl-latest/examples/anim/ |
D | lv_example_anim_3.c | 68 int32_t step = lv_bezier3(t, 0, ginfo.p1, ginfo.p2, 1024); in anim_path_bezier3_cb() local 70 new_value = step * (a->end_value - a->start_value); in anim_path_bezier3_cb() 80 int32_t step = lv_bezier3(t, 0, ginfo.p1, ginfo.p2, 1024); in refer_chart_cubic_bezier() local 81 lv_chart_set_value_by_id2(ginfo.chart, ginfo.ser1, i, t, step); in refer_chart_cubic_bezier()
|
/lvgl-latest/tests/src/test_cases/widgets/ |
D | test_spinbox.c | 175 int32_t step = lv_spinbox_get_step(spinbox_events); in test_spinbox_event_key() local 179 TEST_ASSERT_EQUAL(step * 10, lv_spinbox_get_step(spinbox_events)); in test_spinbox_event_key() 182 step = lv_spinbox_get_step(spinbox_events); in test_spinbox_event_key() 186 TEST_ASSERT_EQUAL(step / 10, lv_spinbox_get_step(spinbox_events)); in test_spinbox_event_key()
|
/lvgl-latest/src/libs/thorvg/rapidjson/internal/ |
D | regex.h | 485 int step = 0; in RAPIDJSON_DIAG_OFF() local 502 if (step == 2) { // Add trailing '-' in RAPIDJSON_DIAG_OFF() 523 switch (step) { in RAPIDJSON_DIAG_OFF() 526 step++; in RAPIDJSON_DIAG_OFF() 541 step = 1; in RAPIDJSON_DIAG_OFF() 545 RAPIDJSON_ASSERT(step == 2); in RAPIDJSON_DIAG_OFF() 547 step = 0; in RAPIDJSON_DIAG_OFF()
|
/lvgl-latest/src/libs/thorvg/ |
D | tvgSwStroke.cpp | 152 auto step = total; in _borderArcTo() local 153 if (step > ARC_CUBIC_ANGLE) step = ARC_CUBIC_ANGLE; in _borderArcTo() 154 else if (step < -ARC_CUBIC_ANGLE) step = -ARC_CUBIC_ANGLE; in _borderArcTo() 156 auto next = angle + step; in _borderArcTo() 157 auto theta = step; in _borderArcTo() 186 total -= step; in _borderArcTo()
|
/lvgl-latest/src/misc/ |
D | lv_anim.c | 257 int32_t step = lv_map(a->act_time, 0, a->duration, 0, LV_ANIM_RESOLUTION); in lv_anim_path_linear() local 262 new_value = step * (a->end_value - a->start_value); in lv_anim_path_linear() 334 int32_t step = lv_bezier3(t, 0, 500, 800, LV_BEZIER_VAL_MAX); in lv_anim_path_bounce() local 337 new_value = step * diff; in lv_anim_path_bounce() 696 int32_t step = lv_cubic_bezier(t, x1, y1, x2, y2); in lv_anim_path_cubic_bezier() local 699 new_value = step * (a->end_value - a->start_value); in lv_anim_path_cubic_bezier()
|
/lvgl-latest/docs/details/integration/driver/display/ |
D | ili9341.rst | 72 …You can find a step-by-step guide and the actual implementation of the callbacks on an STM32F746 u…
|
D | st7735.rst | 74 …You can find a step-by-step guide and the actual implementation of the callbacks on an STM32F746 u…
|
D | st7789.rst | 73 …You can find a step-by-step guide and the actual implementation of the callbacks on an STM32F746 u…
|
D | st7796.rst | 74 …You can find a step-by-step guide and the actual implementation of the callbacks on an STM32F746 u…
|
D | lcd_stm32_guide.rst | 4 Step-by-step Guide: How to use the LVGL v9 LCD drivers with STM32 devices 10 This guide is intended to be a step-by-step instruction of how to configure the STM32Cube HAL with … 46 Step-by-step instructions
|
D | renesas_glcdc.rst | 40 - This diver relies on code generated by e² studio. Missing the step while setting up the project w…
|
D | gen_mipi.rst | 89 …You can find a step-by-step guide and the actual implementation of the callbacks on an STM32F746 u…
|
/lvgl-latest/src/libs/tiny_ttf/ |
D | stb_truetype_htcw.h | 3250 stbtt__active_edge ** step = &active; local 3254 while(*step) { 3255 stbtt__active_edge * z = *step; 3257 *step = z->next; // delete from list 3264 step = &((*step)->next); // advance through list 3271 step = &active; 3272 while(*step && (*step)->next) { 3273 if((*step)->x > (*step)->next->x) { 3274 stbtt__active_edge * t = *step; 3279 *step = q; [all …]
|
/lvgl-latest/tests/unity/ |
D | generate_test_runner.rb | 148 (1...type_and_args.length).step(2).each do |i| 160 Range.new(arg_values[0], arg_values[1], arg_values[3]).step(arg_values[2]).to_a
|
/lvgl-latest/docs/details/widgets/ |
D | spinbox.rst | 26 Value, range and step
|
/lvgl-latest/src/libs/expat/ |
D | xmlparse.c | 3667 unsigned char step = 0; in storeAtts() local 3681 if (! step) in storeAtts() 3682 step = PROBE_STEP(uriHash, mask, parser->m_nsAttsPower); in storeAtts() 3683 j < step ? (j += nsAttsSize - step) : (j -= step); in storeAtts() 7207 unsigned char step = 0; in lookup() local 7212 if (! step) in lookup() 7213 step = PROBE_STEP(h, mask, table->power); in lookup() 7214 i < step ? (i += table->size - step) : (i -= step); in lookup() 7245 step = 0; in lookup() 7247 if (! step) in lookup() [all …]
|
/lvgl-latest/docs/details/integration/os/ |
D | torizon_os.rst | 138 # Copy the lvglsim executable compiled in the build step to the $APP_ROOT directory 189 Push the image created in the previous step to the newly created registry:
|
/lvgl-latest/docs/details/integration/chip/ |
D | alif.rst | 111 "install" so you can skip the next step. 194 play icon. It prepares some files as a prior step to flashing.
|
/lvgl-latest/src/libs/lz4/ |
D | lz4.c | 1007 int step = 1; in LZ4_compress_generic_validated() local 1012 forwardIp += step; in LZ4_compress_generic_validated() 1013 step = (searchMatchNb++ >> LZ4_skipTrigger); in LZ4_compress_generic_validated() 1028 int step = 1; in LZ4_compress_generic_validated() local 1037 forwardIp += step; in LZ4_compress_generic_validated() 1038 step = (searchMatchNb++ >> LZ4_skipTrigger); in LZ4_compress_generic_validated()
|
/lvgl-latest/src/libs/qrcode/ |
D | qrcodegen.c | 568 int step = (version == 32) ? 26 : in getAlignmentPatternPositions() local 570 for(int i = numAlign - 1, pos = version * 4 + 10; i >= 1; i--, pos -= step) in getAlignmentPatternPositions()
|