Searched refs:buflen (Results 1 - 5 of 5) sorted by relevance
/inkscape/src/svg/ |
H A D | svg-color.h | 9 void sp_svg_write_color(char *buf, unsigned int buflen, unsigned int rgba32);
|
H A D | svg-color.cpp | 484 * \pre buflen \>= 8. 486 void sp_svg_write_color(gchar *buf, unsigned const buflen, guint32 const rgba32) 488 g_assert(8 <= buflen); 495 g_snprintf(buf, buflen, "#%06x", rgb24);
|
/inkscape/src/libcroco/ |
H A D | cr-num.c | 112 size_t const buflen = 35; /* fairly arbitrary. */ local 113 tmp_char1 = (guchar *)g_malloc (buflen); 114 g_ascii_formatd ((gchar *)tmp_char1, buflen, "%.17f", a_this->val);
|
/inkscape/src/ |
H A D | sp-object.cpp | 1330 size_t const buflen = name_len + (sizeof(count) * 10 / 4) + 1; local 1331 gchar *const buf = (gchar *) g_malloc(buflen); 1334 size_t const count_buflen = buflen - name_len;
|
/inkscape/src/2geom/ |
H A D | coord.cpp | 3631 int const buflen = 6; 3633 char expdigits[buflen+1]; 3634 expdigits[buflen] = 0; 3636 for (; exponent && i < buflen; ++i) { 3637 expdigits[buflen - 1 - i] = '0' + (exponent % 10); 3640 ret.append(&expdigits[buflen - i]);
|
Completed in 58 milliseconds