Home
last modified time | relevance | path

Searched refs:theSymbol (Results 1 – 1 of 1) sorted by relevance

/external/pdfium/third_party/bigint/
DBigUnsignedInABase.cc95 char theSymbol = s[symbolNumInString]; in BigUnsignedInABase() local
96 if (theSymbol >= '0' && theSymbol <= '9') in BigUnsignedInABase()
97 blk[digitNum] = theSymbol - '0'; in BigUnsignedInABase()
98 else if (theSymbol >= 'A' && theSymbol <= 'Z') in BigUnsignedInABase()
99 blk[digitNum] = theSymbol - 'A' + 10; in BigUnsignedInABase()
100 else if (theSymbol >= 'a' && theSymbol <= 'z') in BigUnsignedInABase()
101 blk[digitNum] = theSymbol - 'a' + 10; in BigUnsignedInABase()