Home
last modified time | relevance | path

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

/lvgl-latest/src/drivers/nuttx/
Dlv_nuttx_entry.c252 struct timespec ts; in millis() local
254 clock_gettime(CLOCK_MONOTONIC, &ts); in millis()
255 uint32_t tick = ts.tv_sec * 1000 + ts.tv_nsec / 1000000; in millis()
/lvgl-latest/src/core/
Dlv_obj.c919 …lv_obj_style_transition_dsc_t * ts = lv_malloc_zeroed(sizeof(lv_obj_style_transition_dsc_t) * STYL… in update_obj_state() local
938 lv_style_selector_t selector = ts[t].selector; in update_obj_state()
941 … if(ts[t].prop == tr->props[j] && part_ts == part_act && state_ts >= state_act) break; in update_obj_state()
946 ts[tsi].time = tr->time; in update_obj_state()
947 ts[tsi].delay = tr->delay; in update_obj_state()
948 ts[tsi].path_cb = tr->path_xcb; in update_obj_state()
949 ts[tsi].prop = tr->props[j]; in update_obj_state()
950 ts[tsi].user_data = tr->user_data; in update_obj_state()
951 ts[tsi].selector = obj_style->selector; in update_obj_state()
958 lv_part_t part_act = lv_obj_style_get_selector_part(ts[i].selector); in update_obj_state()
[all …]
/lvgl-latest/docs/details/debugging/
Dprofiler.rst52 struct timespec ts;
53 clock_gettime(CLOCK_MONOTONIC, &ts);
54 return ts.tv_sec * 1000000000 + ts.tv_nsec;
/lvgl-latest/src/libs/thorvg/
DtvgSvgLoader.cpp721 float th, ts, tb; in _toColor() local
729 if (_parseNumber(&hue, &saturation, &ts) && saturation && *saturation == '%') { in _toColor()
731 ts /= 100.0f; in _toColor()
739 return _hslToRgb(th, ts, tb, r, g, b); in _toColor()