Searched defs:total (Results 1 - 9 of 9) sorted by relevance
/inkscape/src/xml/ |
H A D | rebase-hrefs-test.h | 40 size_t const total = strlen(str); local 41 for (unsigned i = 0; i < total; i++) {
|
/inkscape/src/libcola/ |
H A D | conjugate_gradient.cpp | 47 double total = 0; local 49 total += x[i]*y[i]; 50 return total;// (x*y).sum(); <- this is more concise, but ineff
|
/inkscape/src/2geom/ |
H A D | rect.cpp | 102 Geom::Affine total = Translate(-min()); local 111 total *= scale * Translate(viewport.min()); 124 total *= scale * Translate(viewport.min() + offset); 127 return total;
|
/inkscape/src/ui/dialog/ |
H A D | memory.cpp | 88 Gtk::TreeModelColumn<Glib::ustring> total; member in class:Inkscape::UI::Dialog::Memory::Private::ModelColumns 90 ModelColumns() { add(name); add(used); add(slack); add(total); } 101 view.append_column(_("Total"), columns.total); 117 Debug::Heap::Stats total = { 0, 0 }; local 138 row->set_value(columns.total, format_size(stats.size)); 139 total.size += stats.size; 141 row->set_value(columns.total, Glib::ustring(_("Unknown"))); 145 total.bytes_used += stats.bytes_used; 170 row->set_value(columns.total, format_size(total [all...] |
H A D | export.cpp | 886 gint total = GPOINTER_TO_INT(dlg2->get_data("total")); local 887 if (total > 0) { 889 completed /= static_cast<double>(total); 891 value = completed + (value / static_cast<double>(total)); 1037 prog_dlg->set_data("total", GINT_TO_POINTER(num)); 1159 prog_dlg->set_data("total", GINT_TO_POINTER(0));
|
/inkscape/src/ui/tools/ |
H A D | node-tool.cpp | 665 unsigned total = this->_selected_nodes->allPoints().size(); local 682 nodestring = g_strdup_printf("<b>%u of %u</b> nodes selected, angle: %.2f°.", sz, total, angle); 686 ngettext("<b>%u of %u</b> node selected.", "<b>%u of %u</b> nodes selected.", total), 687 sz, total);
|
/inkscape/src/ |
H A D | file.cpp | 412 size_t const total = strlen(str); local 413 for (unsigned i = 0; i < total; i++) {
|
/inkscape/cxxtest/cxxtest/ |
H A D | Win32Gui.h | 459 unsigned total = (GetTickCount() - start) / 1000; local 460 unsigned hours = total / 3600; 461 unsigned minutes = (total / 60) % 60; 462 unsigned seconds = total % 60;
|
/inkscape/src/util/ |
H A D | ziptool.cpp | 1391 unsigned long total = 0L; local 1396 total += windowPos; 1397 trace("total:%ld", total); 2384 putInt(entries.size()); //number of entries total
|
Completed in 63 milliseconds