• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/gettext-0.17/gettext-tools/gnulib-lib/libxml/

Lines Matching defs:total

92     unsigned int total:8;
106 unsigned int total;
113 unsigned int total;
2355 * Set the total digits to 1 if a zero value.
2360 v->value.decimal.total = 1;
2362 v->value.decimal.total = len;
2922 int total, i = 0;
2961 total = i / 2; /* number of octets */
2971 v->value.hex.total = total;
2994 int total, i = 0, pad = 0;
3041 total = 3 * (i / 4);
3058 total += 2;
3072 total += 1;
3095 v->value.base64.total = total;
3154 v->value.decimal.total = ret;
3227 v->value.decimal.total = ret;
3286 v->value.decimal.total = ret;
3427 integx = x->value.decimal.total - x->value.decimal.frac;
3428 integy = y->value.decimal.total - y->value.decimal.frac;
3430 * NOTE: We changed the "total" for values like "0.1"
3437 * Note that a "0" has a "total" of 1 already.
3469 * look at the total length of each number (length => number of
3473 dlen = x->value.decimal.total - y->value.decimal.total;
3511 if (x->value.decimal.total == y->value.decimal.total) {
3913 * Convert mon and year of @dt to total number of days. Take the
4844 if (x->value.hex.total == y->value.hex.total) {
4851 else if (x->value.hex.total > y->value.hex.total)
4861 if (x->value.base64.total == y->value.base64.total) {
4871 else if (x->value.base64.total > y->value.base64.total)
5131 len = val->value.hex.total;
5133 len = val->value.base64.total;
5381 len = val->value.hex.total;
5383 len = val->value.base64.total;
5463 if (val->value.decimal.total > facet->val->value.decimal.lo)
5702 if ((val->value.decimal.total == 1) &&
5711 bufsize = dec.total + 2;
5715 if ((dec.frac == 0) || (dec.frac == dec.total))
5723 if (dec.frac == dec.total) {
5738 if (dec.frac != dec.total) {
5739 int diff = dec.total - dec.frac;
5752 if (i < dec.total) {
5753 memmove(offs + (dec.total - i), offs, i +1);
5754 memset(offs, '0', dec.total - i);
5782 if ((val->value.decimal.total == 1) &&
5787 int bufsize = dec.total + 1;