Home
last modified time | relevance | path

Searched refs:start_val (Results 1 – 14 of 14) sorted by relevance

/GUIX-v6.2.1/common/src/
Dgx_utility_easing_function_calculate.c238 UINT _gx_utility_easing_function_calculate(USHORT easing_function_type, INT start_val, INT end_val,… in _gx_utility_easing_function_calculate() argument
247 y = (end_val - start_val) * t / d; in _gx_utility_easing_function_calculate()
250 y = y + start_val; in _gx_utility_easing_function_calculate()
254 y = (end_val - start_val) * (t - d) / d; in _gx_utility_easing_function_calculate()
263 y = (end_val - start_val) * t / d; in _gx_utility_easing_function_calculate()
266 y = y + start_val; in _gx_utility_easing_function_calculate()
270 y = (end_val - start_val) * (t - d) / d; in _gx_utility_easing_function_calculate()
281 y = ((end_val - start_val) * tt / dd) + start_val; in _gx_utility_easing_function_calculate()
285 y = ((end_val - start_val) * tt / dd) + start_val; in _gx_utility_easing_function_calculate()
294 y = (end_val - start_val) * tt / dd / 2; in _gx_utility_easing_function_calculate()
[all …]
Dgx_numeric_scroll_wheel_range_set.c74 UINT _gx_numeric_scroll_wheel_range_set(GX_NUMERIC_SCROLL_WHEEL *wheel, INT start_val, INT end_val) in _gx_numeric_scroll_wheel_range_set() argument
82 wheel -> gx_numeric_scroll_wheel_start_val = start_val; in _gx_numeric_scroll_wheel_range_set()
86 …status = _gx_scroll_wheel_total_rows_set((GX_SCROLL_WHEEL *)wheel, GX_ABS(end_val - start_val) + 1… in _gx_numeric_scroll_wheel_range_set()
Dgx_numeric_scroll_wheel_create.c84 GX_WIDGET *parent, INT start_val, INT end_val, in _gx_numeric_scroll_wheel_create() argument
89 …_gx_text_scroll_wheel_create((GX_TEXT_SCROLL_WHEEL *)wheel, name, GX_NULL, GX_ABS(start_val - end_… in _gx_numeric_scroll_wheel_create()
92 wheel -> gx_numeric_scroll_wheel_start_val = start_val; in _gx_numeric_scroll_wheel_create()
Dgxe_numeric_scroll_wheel_range_set.c75 UINT _gxe_numeric_scroll_wheel_range_set(GX_NUMERIC_SCROLL_WHEEL *wheel, INT start_val, INT end_va… in _gxe_numeric_scroll_wheel_range_set() argument
88 status = _gx_numeric_scroll_wheel_range_set(wheel, start_val, end_val); in _gxe_numeric_scroll_wheel_range_set()
Dgxe_numeric_scroll_wheel_create.c85 INT start_val, INT end_val, in _gxe_numeric_scroll_wheel_create() argument
112 …status = _gx_numeric_scroll_wheel_create(wheel, name, parent, start_val, end_val, style, Id, size); in _gxe_numeric_scroll_wheel_create()
/GUIX-v6.2.1/tutorials/demo_guix_scroll_wheel/
Ddemo_guix_scroll_wheel.c219 INT start_val; in day_wheel_range_set() local
226 string_to_int(input_buffer, string_size, &start_val); in day_wheel_range_set()
235 … gx_numeric_scroll_wheel_range_set(&main_screen.main_screen_scroll_wheel_day, start_val, end_val); in day_wheel_range_set()
Ddemo_guix_scroll_wheel_specifications.h159 int start_val; member
Ddemo_guix_scroll_wheel_specifications.c214 …status = gx_numeric_scroll_wheel_create(wheel, info->widget_name, parent, props->start_val, props-… in gx_studio_numeric_scroll_wheel_create()
/GUIX-v6.2.1/common/inc/
Dgx_scroll_wheel.h72 INT start_val, INT end_val,
74 UINT _gx_numeric_scroll_wheel_range_set(GX_NUMERIC_SCROLL_WHEEL *wheel, INT start_val, INT end_v…
159 INT start_val, INT end_val,
161 UINT _gxe_numeric_scroll_wheel_range_set(GX_NUMERIC_SCROLL_WHEEL *wheel, INT start_val, INT end_val…
Dgx_utility.h269 UINT _gx_utility_easing_function_calculate(USHORT easing_function_style, INT start_val, INT end_val…
Dgx_api.h3988 INT start_val, INT end_val,
3990 UINT _gx_numeric_scroll_wheel_range_set(GX_NUMERIC_SCROLL_WHEEL *wheel, INT start_val, INT end_val);
5460 INT start_val, INT end_val,
5463 UINT _gxe_numeric_scroll_wheel_range_set(GX_NUMERIC_SCROLL_WHEEL *wheel, INT start_val, INT end_val…
/GUIX-v6.2.1/samples/demo_guix_industrial/
Dsequence_window.c603 INT start_val; in task_properties_update() local
621 start_val = pinfo->values[TASK_COUNT - 1]; in task_properties_update()
625 start_val = pinfo->values[current_task_id - 1]; in task_properties_update()
628 …value = start_val + (target_val - start_val) * current_task_property_animation_step / TASK_PROPERT… in task_properties_update()
/GUIX-v6.2.1/samples/demo_guix_widget_types/
Dguix_widget_types_specifications.h319 int start_val; member
Dguix_widget_types_specifications.c765 …status = gx_numeric_scroll_wheel_create(wheel, info->widget_name, parent, props->start_val, props-… in gx_studio_numeric_scroll_wheel_create()