Home | History | Annotate | Download | only in tinyxml2

Lines Matching full:mult

311         unsigned mult = 1;

329 ucs += mult * (*q - '0');
331 ucs += mult * (*q - 'a' + 10);
333 ucs += mult * (*q - 'A' + 10 );
336 mult *= 16;
356 ucs += mult * (*q - '0');
359 mult *= 10;