HomeSort by relevance Sort by last modified time
    Searched refs:stringToBigUnsigned (Results 1 - 2 of 2) sorted by null

  /external/pdfium/third_party/bigint/
BigIntegerUtils.cc 20 BigUnsigned stringToBigUnsigned(const std::string &s) {
26 return (s[0] == '-') ? BigInteger(stringToBigUnsigned(s.substr(1, s.length() - 1)), BigInteger::negative)
27 : (s[0] == '+') ? BigInteger(stringToBigUnsigned(s.substr(1, s.length() - 1)))
28 : BigInteger(stringToBigUnsigned(s));
BigIntegerUtils.hh 21 BigUnsigned stringToBigUnsigned(const std::string &s);

Completed in 68 milliseconds