Home | History | Annotate | Download | only in tinyxml

Lines Matching full:mult

430 		unsigned mult = 1;
448 ucs += mult * (*q - '0');
450 ucs += mult * (*q - 'a' + 10);
452 ucs += mult * (*q - 'A' + 10 );
455 mult *= 16;
475 ucs += mult * (*q - '0');
478 mult *= 10;