• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/libxml2-2.7.2/

Lines Matching defs:total

92     unsigned int total:8;
106 unsigned int total;
113 unsigned int total;
2358 * Set the total digits to 1 if a zero value.
2363 v->value.decimal.total = 1;
2365 v->value.decimal.total = len;
2925 int total, i = 0;
2964 total = i / 2; /* number of octets */
2974 v->value.hex.total = total;
2997 int total, i = 0, pad = 0;
3044 total = 3 * (i / 4);
3061 total += 2;
3075 total += 1;
3098 v->value.base64.total = total;
3157 v->value.decimal.total = ret;
3230 v->value.decimal.total = ret;
3289 v->value.decimal.total = ret;
3430 integx = x->value.decimal.total - x->value.decimal.frac;
3431 integy = y->value.decimal.total - y->value.decimal.frac;
3433 * NOTE: We changed the "total" for values like "0.1"
3440 * Note that a "0" has a "total" of 1 already.
3472 * look at the total length of each number (length => number of
3476 dlen = x->value.decimal.total - y->value.decimal.total;
3514 if (x->value.decimal.total == y->value.decimal.total) {
3916 * Convert mon and year of @dt to total number of days. Take the
4847 if (x->value.hex.total == y->value.hex.total) {
4854 else if (x->value.hex.total > y->value.hex.total)
4864 if (x->value.base64.total == y->value.base64.total) {
4874 else if (x->value.base64.total > y->value.base64.total)
5134 len = val->value.hex.total;
5136 len = val->value.base64.total;
5384 len = val->value.hex.total;
5386 len = val->value.base64.total;
5466 if (val->value.decimal.total > facet->val->value.decimal.lo)
5705 if ((val->value.decimal.total == 1) &&
5714 bufsize = dec.total + 2;
5718 if ((dec.frac == 0) || (dec.frac == dec.total))
5726 if (dec.frac == dec.total) {
5741 if (dec.frac != dec.total) {
5742 int diff = dec.total - dec.frac;
5755 if (i < dec.total) {
5756 memmove(offs + (dec.total - i), offs, i +1);
5757 memset(offs, '0', dec.total - i);
5785 if ((val->value.decimal.total == 1) &&
5790 int bufsize = dec.total + 1;