Searched refs:total (Results 1 - 15 of 15) sorted by relevance
| /inkscape/share/extensions/Barcode/ |
| H A D | Code128.py | 103 total = 0 128 total = total + num * i 138 total = total + (chars.index(char) * pos) 143 total = total + (int(char) * pos) 147 checksum = total % 103
|
| /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/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/share/extensions/ |
| H A D | merge_styles.py | 32 self.total = [] 57 self.total.append( (c, el) ) 67 if self.weights[attr] < len(self.total) - threshold: 72 for (c, el) in self.total:
|
| H A D | addnodes.py | 48 total = 0 55 total += l 56 return lengths, total 87 #lens, total = csplength(p) 88 #avg = total/numlengths(lens)
|
| H A D | interp.py | 49 total = 0 56 total += l 57 return lengths, total
|
| H A D | measure.py | 95 total = 0 102 total += l 103 return lengths, total
|
| H A D | gcodetools.py | 783 total = 0 789 total += l 790 return lengths, total 5478 displayed, but this helps the user see the total area covered.
|
| /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/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/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/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/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
|
| /inkscape/src/ |
| H A D | file.cpp | 412 size_t const total = strlen(str); local 413 for (unsigned i = 0; i < total; i++) {
|
Completed in 367 milliseconds