Lines Matching defs:total
4827 unsigned int total = c->bytes[0] + c->bytes[1];
4830 /* total can not be zero. but just in case: */
4831 if (total == 0)
4835 if (total >= plain)
4838 /* total < plain. check for overflow, still */
4839 r = (total > UINT_MAX/1000) ? (total / (plain/1000))
4840 : (1000 * total / plain);
4847 "total %u; compression: %u.%u%%\n",
4851 total, r/10, r % 10);