Searched refs:high (Results 1 - 7 of 7) sorted by relevance

/inkscape/src/trace/potrace/
H A Dinkscape-potrace.cpp479 double high = 0.9; //top of range local
480 double delta = (high - low ) / ((double)multiScanNrColors);
487 brightnessThreshold <= high ;
/inkscape/src/2geom/
H A Dpiecewise.h165 * Also takes optional low/high parameters to expedite the search for the segment.
167 inline unsigned segN(double t, int low = 0, int high = -1) const {
168 high = (high == -1) ? size() : high;
171 while(low < high) {
172 int mid = (high + low) / 2; //Lets not plan on having huge (> INT_MAX / 2) cut sequences
177 if(cuts[mid - 1] < t) return mid - 1; else high = mid - 1;
H A Dcoord.cpp769 uint64_t high = factor >> 32;
772 uint64_t product_high = high * bigits_[i];
1814 static bool DigitGen(DiyFp low, DiyFp w, DiyFp high, Vector<char> buffer,
1817 ASSERT(low.e() == w.e() && w.e() == high.e());
1818 ASSERT(low.f() + 1 <= high.f() - 1);
1823 DiyFp too_high = DiyFp(high.f() + unit, high.e());
2039 UInt128(uint64_t high, uint64_t low) : high_bits_(high), low_bits_(low) { }
/inkscape/src/extension/internal/
H A Dcairo-renderer.cpp701 double high = doc->getHeight().value("px"); local
703 high = Inkscape::Util::Quantity::convert(high, "px", "pt");
707 (d.bottom() - high) * (ctx->_vector_based_target ? Inkscape::Util::Quantity::convert(1, "pt", "px") : 1.0)));
/inkscape/src/live_effects/
H A Dlpe-taperstroke.cpp39 inline bool withinRange(T value, T low, T high) { argument
40 return (value > low && value < high);
/inkscape/src/display/
H A Dcairo-templates.h680 pxclamp(gint32 v, gint32 low, gint32 high) { argument
685 if (v > high) return high;
/inkscape/src/libavoid/
H A Dorthogonal.cpp59 ShiftSegment(ConnRef *conn, const size_t low, const size_t high, argument
63 indexHigh(high),
74 ShiftSegment(ConnRef *conn, const size_t low, const size_t high, argument
78 indexHigh(high),

Completed in 1120 milliseconds