Home | History | Annotate | Download | only in src

Lines Matching refs:total

83   { "totals", 't', NULL, 0, N_("Display the total sizes (bsd only)"), 0 },
113 /* Show total size. */
158 /* True if total sizes should be printed. */
160 /* To print the total sizes in a reasonable format remember the higest
204 /* Print the total sizes but only if the output format is BSD and at
454 GElf_Off total = 0;
468 total += shdr->sh_size;
473 printf ("%-*s %*" PRIx64 "\n\n\n", maxlen, sgettext ("sysv|Total"),
474 digits - 2, total);
476 printf ("%-*s %*" PRId64 "\n\n\n", maxlen, sgettext ("sysv|Total"),
477 digits - 2, total);
479 printf ("%-*s %*" PRIo64 "\n\n\n", maxlen, sgettext ("sysv|Total"),
480 digits - 2, total);
503 GElf_Off total = 0;
522 total += shdr->sh_size;
526 printf (" = %#" PRIx64 "\n", total);
528 printf (" = %" PRId64 "\n", total);
530 printf (" = %" PRIo64 "\n", total);
593 /* Show total size. */
620 GElf_Off total = 0;
647 total += phdr->p_memsz;
651 printf (" = %#" PRIx64 "\n", total);
653 printf (" = %" PRId64 "\n", total);
655 printf (" = %" PRIo64 "\n", total);