Home
last modified time | relevance | path

Searched refs:qwtMax (Results 1 – 25 of 73) sorted by relevance

123

/dports/audio/muse-sequencer/muse-4.0.0/src/muse/widgets/
H A Dscldiv.cpp90 double vmax = MusECore::qwtMax(v1, v2); in limRange()
91 double delta_min = MusECore::qwtMax(MusECore::qwtAbs(eps_rel * vmin), MusECore::qwtAbs(eps_abs)); in limRange()
92 double delta_max = MusECore::qwtMax(MusECore::qwtAbs(eps_rel * vmax), MusECore::qwtAbs(eps_abs)); in limRange()
239 d_hBound = MusECore::qwtMax(x1, x2); in rebuild()
303 maxMajSteps = MusECore::qwtMax(1, maxMajSteps); in buildLinDiv()
304 maxMinSteps = MusECore::qwtMax(0, maxMinSteps); in buildLinDiv()
420 maxMajSteps = MusECore::qwtMax(1, MusECore::qwtAbs(maxMajSteps)); in buildLogDiv()
421 maxMinSteps = MusECore::qwtMax(0, MusECore::qwtAbs(maxMinSteps)); in buildLogDiv()
457 d_majStep = MusECore::qwtMax(d_majStep, 1.0); in buildLogDiv()
549 minStep = MusECore::qwtMax(1.0, minStep); in buildLogDiv()
[all …]
H A Ddimap.cpp116 return ( (x >= MusECore::qwtMin(d_x1, d_x1)) && (x <= MusECore::qwtMax(d_x1, d_x2))); in contains()
133 return ( (x >= MusECore::qwtMin(d_y1, d_y1)) && (x <= MusECore::qwtMax(d_y1, d_y2))); in contains()
272 if ( x > MusECore::qwtMax(d_x1, d_x2) ) in limTransform()
273 x = MusECore::qwtMax(d_x1, d_x2); in limTransform()
H A Dmmath.h62 inline const T& qwtMax (const T& x, const T& y) in qwtMax() function
81 xmax = qwtMax(x1, x2); in qwtLim()
H A Dknob.cpp541 rb = double(MusECore::qwtMax(radius - 4 - d_dotWidth / 2, 0)); in drawMarker()
554 rb = MusECore::qwtMax(double((radius - 1) / 3.0), 0.0); in drawMarker()
555 re = MusECore::qwtMax(double(radius - 1), 0.0); in drawMarker()
586 d_knobWidth = MusECore::qwtMax(w,5); in setKnobWidth()
605 d_borderWidth = MusECore::qwtMax(bw, 0); in setBorderWidth()
/dports/math/qtiplot-doc/qtiplot-0.9.8.9/3rdparty/qwt/src/
H A Dqwt_double_rect.cpp199 qwtMax(d_width, other.d_width),
200 qwtMax(d_height, other.d_height)
426 return ( qwtMax(d_left, other.d_left) <= qwtMin(d_right, other.d_right) ) &&
427 ( qwtMax(d_top, other.d_top ) <= qwtMin(d_bottom, other.d_bottom) );
457 const double maxX = qwtMax(d_right, other.d_right); in drawPointer()
459 const double maxY = qwtMax(d_bottom, other.d_bottom); in drawPointer()
476 const double minX = qwtMax(r1.left(), r2.left());
478 const double minY = qwtMax(r1.top(), r2.top());
H A Dqwt_math.h20 #define qwtMax QMAX macro
26 #define qwtMax qMax macro
144 xmax = qwtMax(x1, x2); in qwtLim()
H A Dqwt_double_interval.cpp268 qwtMax(qwtAbs(value - d_maxValue), qwtAbs(value - d_minValue));
287 double minValue = qwtMax(d_minValue, lowerBound);
290 double maxValue = qwtMax(d_maxValue, lowerBound);
313 qwtMax(value, d_maxValue), d_borderFlags ); in gtk_xtbin_unrealize()
H A Dqwt_round_scale_draw.cpp242 const int a2 = qRound(qwtMax(map().p1(), map().p2()) - 90 * 16); in drawBackbone()
292 const double off = qwtMax(sz.width(), sz.height()); in extent()
311 const int pw = qwtMax( 1, pen.width() ); // penwidth can be zero in extent()
322 d = qwtMax(d, minimumExtent()); in extent()
H A Dqwt_knob.cpp430 const double rb = double(qwtMax(radius - 4 - d_data->dotWidth / 2, 0)); in drawMarker()
440 const double rb = qwtMax(double((radius - 4) / 3.0), 0.0); in drawMarker()
441 const double re = qwtMax(double(radius - 4), 0.0); in drawMarker()
459 d_data->knobWidth = qwtMax(w,5); in setKnobWidth()
475 d_data->borderWidth = qwtMax(bw, 0); in setBorderWidth()
H A Dqwt_scale_engine.cpp222 d_data->lowerMargin = qwtMax(lower, 0.0); in setMargins()
223 d_data->upperMargin = qwtMax(upper, 0.0); in setMargins()
418 stepSize = divideInterval(interval.width(), qwtMax(maxNumSteps, 1)); in autoScale()
643 const double delta = qwtMax(interval.maxValue() / logRef, in autoScale()
656 stepSize = divideInterval(log10(interval).width(), qwtMax(maxNumSteps, 1)); in autoScale()
852 const double minFactor = qwtMax(pow(10.0, minStep), 10.0); in buildMinorTicks()
H A Dqwt_curve_fitter.cpp96 d_data->splineSize = qwtMax(splineSize, 10); in setSplineSize()
215 param += qwtMax(delta, 1.0); in fitParametric()
307 d_data->tolerance = qwtMax(tolerance, 0.0); in setTolerance()
H A Dqwt_legend.cpp564 int w = qwtMax(visibleSize.width(), minW);
565 int h = qwtMax(tl->heightForWidth(w), visibleSize.height());
570 w = qwtMax(vpWidth, minW);
571 h = qwtMax(tl->heightForWidth(w), visibleSize.height());
H A Dqwt_math.cpp44 rv = qwtMax(rv, array[i]); in qwtGetMax()
/dports/x11-toolkits/qwt5-qt5/qwt5-qt5-2a9f1ae2/src/
H A Dqwt_double_rect.cpp199 qwtMax(d_width, other.d_width), in expandedTo()
200 qwtMax(d_height, other.d_height) in expandedTo()
426 return ( qwtMax(d_left, other.d_left) <= qwtMin(d_right, other.d_right) ) && in intersects()
427 ( qwtMax(d_top, other.d_top ) <= qwtMin(d_bottom, other.d_bottom) ); in intersects()
457 const double maxX = qwtMax(d_right, other.d_right); in operator |()
459 const double maxY = qwtMax(d_bottom, other.d_bottom); in operator |()
476 const double minX = qwtMax(r1.left(), r2.left()); in operator &()
478 const double minY = qwtMax(r1.top(), r2.top()); in operator &()
H A Dqwt_math.h20 #define qwtMax QMAX macro
26 #define qwtMax qMax macro
144 xmax = qwtMax(x1, x2); in qwtLim()
H A Dqwt_double_interval.cpp268 qwtMax(qwtAbs(value - d_maxValue), qwtAbs(value - d_minValue)); in symmetrize()
287 double minValue = qwtMax(d_minValue, lowerBound); in limited()
290 double maxValue = qwtMax(d_maxValue, lowerBound); in limited()
313 qwtMax(value, d_maxValue), d_borderFlags ); in extend()
H A Dqwt_round_scale_draw.cpp242 const int a2 = qRound(qwtMax(map().p1(), map().p2()) - 90 * 16); in drawBackbone()
292 const double off = qwtMax(sz.width(), sz.height()); in extent()
311 const int pw = qwtMax( 1, pen.width() ); // penwidth can be zero in extent()
322 d = qwtMax(d, minimumExtent()); in extent()
H A Dqwt_knob.cpp430 const double rb = double(qwtMax(radius - 4 - d_data->dotWidth / 2, 0)); in drawMarker()
440 const double rb = qwtMax(double((radius - 4) / 3.0), 0.0); in drawMarker()
441 const double re = qwtMax(double(radius - 4), 0.0); in drawMarker()
459 d_data->knobWidth = qwtMax(w,5); in setKnobWidth()
475 d_data->borderWidth = qwtMax(bw, 0); in setBorderWidth()
H A Dqwt_plot_layout.cpp301 d_data->spacing = qwtMax(0, spacing); in setSpacing()
557 int cw = qwtMax(scaleData[QwtPlot::xBottom].w, scaleData[QwtPlot::xTop].w) in minimumSizeHint()
559 w += qwtMax(cw, minCanvasSize.width()); in minimumSizeHint()
562 int ch = qwtMax(scaleData[QwtPlot::yLeft].h, scaleData[QwtPlot::yRight].h) in minimumSizeHint()
564 h += qwtMax(ch, minCanvasSize.height()); in minimumSizeHint()
676 dim = qwtMax(dim, d_data->layoutData.legend.hScrollBarHeight); in layoutLegend()
907 axisRect.setLeft(qwtMax(left, minLeft)); in alignScales()
913 canvasRect.setLeft(qwtMax(canvasRect.left(), in alignScales()
981 axisRect.setTop(qwtMax(top, minTop)); in alignScales()
987 canvasRect.setTop(qwtMax(canvasRect.top(), in alignScales()
H A Dqwt_scale_engine.cpp221 d_data->lowerMargin = qwtMax(lower, 0.0); in setMargins()
222 d_data->upperMargin = qwtMax(upper, 0.0); in setMargins()
421 stepSize = divideInterval(interval.width(), qwtMax(maxNumSteps, 1)); in autoScale()
686 const double delta = qwtMax(interval.maxValue() / logRef, in autoScale()
699 stepSize = divideInterval(log10(interval).width(), qwtMax(maxNumSteps, 1)); in autoScale()
909 const double minFactor = qwtMax(pow(10.0, minStep), 10.0); in buildMinorTicks()
H A Dqwt_legend.cpp564 int w = qwtMax(visibleSize.width(), minW);
565 int h = qwtMax(tl->heightForWidth(w), visibleSize.height());
570 w = qwtMax(vpWidth, minW);
571 h = qwtMax(tl->heightForWidth(w), visibleSize.height());
H A Dqwt_math.cpp44 rv = qwtMax(rv, array[i]); in qwtGetMax()
/dports/x11-toolkits/qwt6/qwt-6.1.6/src/
H A Dqwt_compat.h25 #define qwtMax qMax macro
/dports/devel/xelfviewer/XELFViewer-0.03/XQwt/3rdparty/qwt/src/
H A Dqwt_compat.h25 #define qwtMax qMax macro
/dports/math/qtiplot-doc/qtiplot-0.9.8.9/qtiplot/src/plot2D/
H A DLog2ScaleEngine.cpp62 const double delta = qwtMax(interval.maxValue() / logRef,
75 stepSize = divideInterval(log2(interval).width(), qwtMax(maxNumSteps, 1));

123