Home
last modified time | relevance | path

Searched refs:lives_10pow (Results 1 – 6 of 6) sorted by relevance

/dports/multimedia/lives/lives-3.2.0/src/
H A Dmachinestate.c667 if (space >= lives_10pow(18)) { in lives_format_storage_space_string()
669 fmt = lives_strdup_printf(_("%.2f EB"), (double)space / (double)lives_10pow(18)); in lives_format_storage_space_string()
670 } else if (space >= lives_10pow(15)) { in lives_format_storage_space_string()
672 fmt = lives_strdup_printf(_("%.2f PB"), (double)space / (double)lives_10pow(15)); in lives_format_storage_space_string()
673 } else if (space >= lives_10pow(12)) { in lives_format_storage_space_string()
675 fmt = lives_strdup_printf(_("%.2f TB"), (double)space / (double)lives_10pow(12)); in lives_format_storage_space_string()
676 } else if (space >= lives_10pow(9)) { in lives_format_storage_space_string()
678 fmt = lives_strdup_printf(_("%.2f GB"), (double)space / (double)lives_10pow(9)); in lives_format_storage_space_string()
679 } else if (space >= lives_10pow(6)) { in lives_format_storage_space_string()
681 fmt = lives_strdup_printf(_("%.2f MB"), (double)space / (double)lives_10pow(6)); in lives_format_storage_space_string()
H A Dmain.h310 uint64_t lives_10pow(int pow) GNU_CONST;
H A Drfx-builder.c2142 …utton_set_range(LIVES_SPIN_BUTTON(rfxbuilder->spinbutton_param_step), 1. / (double)lives_10pow(dp), in after_param_dp_changed()
2185 1. / (double)lives_10pow(dp), lives_spin_button_get_value in after_param_min_changed()
2229 1. / (double)lives_10pow(dp), in after_param_max_changed()
H A Dplugins.c2809 if (cparam->step_size == 0.) cparam->step_size = 1. / (double)lives_10pow(cparam->dp); in render_fx_get_params()
3388 else rpar[i].step_size = 1. / (double)lives_10pow(rpar[i].dp); in weed_params_to_rfx()
H A Dutils.c1438 LIVES_GLOBAL_INLINE uint64_t lives_10pow(int pow) { in lives_10pow() function
1447 double factor = (double)lives_10pow(decimals); in lives_fix()
H A Dwidget-helper.c11557 double tenpow = (double)lives_10pow(digs); in lives_spin_button_get_snapval()