Searched refs:low (Results 1 - 6 of 6) sorted by relevance
/inkscape/src/trace/potrace/ |
H A D | inkscape-potrace.cpp | 478 double low = 0.2; //bottom of range local 480 double delta = (high - low ) / ((double)multiScanNrColors); 486 for ( brightnessThreshold = low ;
|
/inkscape/src/2geom/ |
H A D | piecewise.h | 165 * 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 { 171 while(low < high) { 172 int mid = (high + low) / 2; //Lets not plan on having huge (> INT_MAX / 2) cut sequences 175 if(t < cuts[mid + 1]) return mid; else low = mid + 1; 182 return low;
|
H A D | coord.cpp | 768 uint64_t low = factor & 0xFFFFFFFF; 771 uint64_t product_low = low * bigits_[i]; 1421 // estimated_power might be too low by 1. 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); 1822 DiyFp too_low = DiyFp(low.f() - unit, low.e()); 2039 UInt128(uint64_t high, uint64_t low) : high_bits_(high), low_bits_(low) { } [all...] |
/inkscape/src/live_effects/ |
H A D | lpe-taperstroke.cpp | 39 inline bool withinRange(T value, T low, T high) { argument 40 return (value > low && value < high);
|
/inkscape/src/display/ |
H A D | cairo-templates.h | 680 pxclamp(gint32 v, gint32 low, gint32 high) { argument 684 if (v < low) return low;
|
/inkscape/src/libavoid/ |
H A D | orthogonal.cpp | 59 ShiftSegment(ConnRef *conn, const size_t low, const size_t high, argument 62 indexLow(low), 74 ShiftSegment(ConnRef *conn, const size_t low, const size_t high, argument 77 indexLow(low),
|
Completed in 450 milliseconds