Searched defs:reserve (Results 1 - 2 of 2) sorted by relevance

/inkscape/src/svg/
H A Dpath-string.cpp150 size_t const reserve = precision+1+1+1+1+3; // Just large enough to hold the maximum number of digits plus a sign, a period, the letter 'e', another sign and three digits for the exponent local
152 str.append(reserve, (char)0);
154 size_t added = sp_svg_number_write_de(begin_of_num, reserve, v, precision, minexp);
/inkscape/src/2geom/
H A Dpiecewise.h97 inline void reserve(unsigned i) { segs.reserve(i); cuts.reserve(i + 1); } function in class:Geom::Piecewise
249 cuts.reserve(cuts.size() + other.size());
263 reserve(size() + other.size());
368 ret.reserve(c.size() + pw.cuts.size() - 1);
449 ret.reserve(fi - i + 1);
471 ret.reserve(f.size());
491 ret.reserve(f.size());
530 ret.segs.reserve(
[all...]

Completed in 133 milliseconds